body {
    font-family: Arial, sans-serif;
    background-color: #e3f2fd;
    color: #000;
    text-align: center;
    padding: 40px 20px;
    margin: 0;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

p.description {
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    font-size: 1.1em;
    color: #333;
}

.button-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

a.button {
    display: inline-block;
    padding: 15px 25px;
    background-color: #1976d2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
}

a.button:hover {
    background-color: #1565c0;
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

footer {
    margin-top: 50px;
    font-size: 0.9em;
    color: #555;
}

footer a {
    color: #1976d2;
    text-decoration: underline;
}

footer a:hover {
    text-decoration: underline;
}

/* Logo styling */
.site-logo {
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

section {
    margin-top: 60px;
}

.quiz-form, .contact-form {
    max-width: 600px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.quiz-question {
    margin-bottom: 20px;
}

.quiz-question label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.quiz-question select {
    width: 100%;
    padding: 8px;
    font-size: 1em;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 1em;
}

.contact-form button {
    width: 100%;
    padding: 12px;
}

.comment {
    background-color: #ffffff;
    padding: 8px 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: left;
}

.comment button {
    float: right;
    background-color: #d32f2f;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 2px 6px;
    cursor: pointer;
}

.comment button:hover {
    background-color: #b71c1c;
}

@media (max-width: 600px) {
    a.button {
        min-width: 100%;
    }
}
