/* Mobile‑first responsive container */
.about-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    font-family: sans-serif;
    text-align: justify;
    line-height: 1.6;
}

/* Intro section */
.about-intro h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.about-intro p {
    margin-bottom: 1rem;
    color: #333;
}

/* FAQ section */
.faq {
    margin-top: 2rem;
}

.logo_sm {
    width: auto;
    height: 30px;
    margin-right: 15px;
}

.faq h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Style each <details> element */
.faq details {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: #fafafa;
}

/* Summary (question) */
.faq summary {
    cursor: pointer;
    font-weight: bold;
    list-style: none; /* remove default marker */
}

/* When details are open, add a bit more spacing */
.faq details[open] {
    background: #fff;
}

.faq details p {
    margin-top: 0.5rem;
    color: #444;
}
