/* FAQ container */
.accordion-container {
    background-color: var(--bg-light);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 5rem 2rem;
}

.accordion-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.accordion-title {
    text-align: left;
    margin-bottom: 4rem;
    color: var(--nhc-dark-blue);
    font-size: 2.5rem;
    font-weight: bold;
}

.accordion-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accordion-section-title {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--nhc-dark-blue);
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.25rem;
}

.accordion-entry {
    background-color: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.accordion-button {
    background-color: transparent !important;
    color: var(--nhc-dark-blue);
    font-weight: 600;
    font-size: 1.3rem;
    padding: 0;
    border: none;
    box-shadow: none !important;
    transition: color 0.3s ease, text-decoration 0.3s ease;
    text-align: left;
}

.accordion-button:hover {
    text-decoration: underline;
    color: var(--nhc-dark-blue);
}

.accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-button::after {
    transition: transform 0.3s ease;
}

.accordion-body {
    padding-top: 1rem;
    font-size: 1rem;
    color: var(--text-color);
    background-color: transparent;
    line-height: 1.7;
}

.accordion-footer-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #d7e0ea;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

.accordion-footer-note a {
    color: var(--nhc-link-blue, #0077b6);
    font-weight: 600;
    text-decoration: underline;
}

.accordion-footer-note a:hover {
    text-decoration: none;
}
