﻿
.faq-hero {
    background: #FFFFFF;
    padding: 40px 28px;
    border-radius: 20px;
    color: #fff;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}


.faq-hero h1 {
    font-weight: 800;
    margin: 0 0 12px;
}

.faq-hero p {
    color: #3a3a3a;
}

/* FAQ Container */
.faq-card {
    background: var(--card);
    padding: 22px 24px;
    border-radius: 18px;
    box-shadow: 0 0 22px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.05);
}

/* FAQ Items */
details {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 14px;
    padding: 16px 18px;
    border: 1px solid #e8e8e8;
    transition: all .25s ease;
}

    details:hover {
        border-color: #d4a016;
    }

    details[open] {
        border: 2px solid #d4a016;
        background: #fff7e5;
        box-shadow: 0 4px 14px rgba(212,160,22,0.3);
    }

summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 16px;
}

    summary::-webkit-details-marker {
        display: none;
    }

.meta {
    font-size: 13px;
    color: #d4a016;
    background: #fff3d1;
    padding: 4px 10px;
    border-radius: 999px;
}

.a {
    margin-top: 12px;
    color: #4e4e4e;
    line-height: 1.75;
    text-align: justify;
    font-size: 15px;
}

@media (max-width:780px) {
    .faq-hero {
        padding: 28px 20px;
    }

        .faq-hero h1 {
            font-size: 26px;
        }
}
