.faq-topic {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fffa;
}
.topic-toggle {
    width: 100%;
    border: none;
    background: #358464;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    padding: 12px;
    cursor: pointer;
    border-radius: .375rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topic-toggle:after {
    content: '▾';
    font-size: 1rem;
    transition: transform 0.2s ease;
}
.topic-toggle[aria-expanded="true"]:after {
    transform: rotate(-180deg);
}
.topic-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
    border-top: 1px solid #e6f3eb;
    background: #fff;
    padding: 0 12px;
}
.topic-content.open {
    max-height: 3000px;
    padding: 12px;
}
.question-item {
    border-bottom: 1px solid #ececec;
}
.question-toggle {
    width: 100%;
    border: 1px solid #358464;
    background: #fff;
    color: #111;
    font-size: .95rem;
    text-align: left;
    padding: 10px 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    margin-top: 4px;
}
.question-toggle:after {
    content: '+';
    font-size: 1rem;
    margin-left: 8px;
    transition: transform 0.2s ease;
}
.question-toggle[aria-expanded="true"]:after {
    content: '-';
}
.question-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
    background: #f8fffa;
    padding: 0 12px;
}
.question-content.open {
    max-height: 1200px;
    padding: 12px;
}
.question-content p {
    margin: 0;
    color: #222;
    line-height: 1.4;
}

.question-content ul {
    color: #222;
}

.question-content ul li {
    color: #222;
}


.faq-action-buttons {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.faq-action-buttons .button {
    background: #358464;
    color: #fff;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.8rem;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
}

.faq-action-buttons .button:hover {
    background: rgb(102 204 154);
}

.email-link {
    color: #358464;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
}

.email-link:hover {
    color: #234d40;
}
