/* General page setup */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f6fc;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Container for the main content */
main {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

/* Headings */
h1, h2, h3 {
    color: #4a2d6c;
}

h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

/* Images */
img {
    display: block;
    margin: 15px auto;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Sections and articles */
section, article {
    background: white;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Inline code */
code {
    background: #eee;
    padding: 3px 6px;
    border-radius: 4px;
    font-family: monospace;
}

/* Code blocks */
pre {
    background: #eee;
    padding: 10px;
    border-radius: 4px;
    overflow-x: auto;
}

/* Lists */
ul {
    padding-left: 20px;
}

/* Links */
a {
    color: #7b3fe4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #4a2d6c;
    color: white;
    margin-top: 20px;
}
/* Feedback form */
#feedback-form {
    background: white;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

#feedback-form h2 {
    color: #4a2d6c;
    margin-bottom: 10px;
}

#feedback-form p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

#feedback-form label {
    font-weight: bold;
    display: block;
    margin: 10px 0 5px;
}

#feedback-form input,
#feedback-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

#feedback-form input:focus,
#feedback-form textarea:focus {
    outline: none;
    border-color: #7b3fe4;
    box-shadow: 0 0 4px rgba(123, 63, 228, 0.3);
}

#feedback-form button {
    display: inline-block;
    background-color: #7b3fe4;
    color: white;
    border: none;
    padding: 10px 18px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

#feedback-form button:hover {
    background-color: #6a2fca;
}
