/* ================================
   FAQ / ACCORDION STYLES ONLY
================================ */

/* Accordion wrapper */
.faq-accordion {
    width: 100%;
    margin-top: 25px;
}

/* Each accordion item */
.faq-accordion details {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    margin-bottom: 16px;
    padding: 18px 22px;
    transition: 0.3s;
}

/* Summary (accordion header) */
.faq-accordion summary {
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

/* Remove default arrow */
.faq-accordion summary::-webkit-details-marker {
    display: none;
}

/* Custom + / - icon */
.faq-accordion summary::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 1.4rem;
    color: var(--primary);
    transition: 0.3s;
}

/* Open state */
.faq-accordion details[open] summary::after {
    content: "–";
}

/* Hover effect */
.faq-accordion details:hover {
    background: rgba(255,255,255,0.12);
}

/* Accordion inner content */
.faq-content {
    margin-top: 18px;
}

/* Inner questions */
.faq-content h6 {
    font-weight: 700;
    margin-top: 18px;
    margin-bottom: 6px;
    color: var(--primary);
}

/* First question spacing fix */
.faq-content h6:first-child {
    margin-top: 0;
}

/* Answers */
.faq-content p {
    margin-bottom: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Divider between Q&A */
.faq-content p:not(:last-child) {
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(255,255,255,0.15);
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .faq-accordion summary {
        font-size: 1rem;
    }
}
