/* Custom FAQ styles */
.faq-list h3 {
    font-size: 1.25rem;
    color: #70137D; /* Purple (main brand color) */
    font-weight: 600;
    margin-top: 1.5rem;
}

.faq-list p, .faq-list ul {
    font-size: 1rem;
    color: #222;
    font-weight: 400;
}

.faq-list ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.faq-list li {
    margin-bottom: 0.5rem;
}

.faq-list .card-header {
    background: #fff9e6; /* Light yellow background */
    border-bottom: 1px solid #ffe680; /* Yellow border */
    width: 100%;
}

.faq-list .btn-link {
    color: #70137D; /* Purple text */
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    text-align: left;
    padding: 1rem;
    display: block;
    word-break: break-word;
    white-space: normal;
    line-height: 1.4;
    background-color: #fff9e6; /* Light yellow background */
}

.faq-list .btn-link:hover {
    background-color: #ffe680; /* Medium yellow on hover */
}

.faq-list .btn-link:focus {
    text-decoration: none;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 230, 128, 0.5); /* Yellow focus ring */
}

.faq-list .card {
    margin-bottom: 0.5rem;
    border: 1px solid #ffe680; /* Yellow border */
    border-radius: 0.25rem;
    overflow: hidden;
    width: 100%;
}

.faq-list .card-body {
    background: #fffaf0; /* Very light yellow background */
    color: #222;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #ffe680; /* Yellow border */
    word-break: break-word;
}

/* Active state when expanded */
.faq-list .card-header.active {
    background-color: #ffe680; /* Medium yellow for active state */
}

/* Responsive fixes */
@media (max-width: 767.98px) {
    .faq-list .card-header, .faq-list .btn-link {
        font-size: 1rem;
        padding: 0.75rem 0.5rem;
        word-break: break-word;
    }

    .fa-list .card-body {
        font-size: 0.95rem;
        padding: 0.75rem;
        word-break: break-word;
    }

    .faq-list .btn-link {
        white-space: normal;
        line-height: 1.4;
        display: block;
    }

    .faq-list .card {
        display: block;
        width: 100%;
    }
}

/* Yellow color palette used:
   #fffaf0 - Very light yellow (background)
   #fff9e6 - Light yellow
   #ffe680 - Medium yellow
*/
