.faq {
    background: rgba(255, 255, 255, 0.15); /* Glassmorphism */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px 8%;
    text-align: left;
    border-radius: 16px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin: 40px auto;
    transition: all 0.3s ease-in-out;
}

/* FAQ Heading */
.faq h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* FAQ Question */
.question {
    font-size: clamp(1.2rem, 2vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    padding: 18px;
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    border-radius: 10px;
    margin: 12px 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.question:hover {
    background: linear-gradient(135deg, #f5f5f5, #ebebeb);
    transform: translateY(-2px);
}

/* Active Question */
.faq-item.active .question {
    background: #007bff;
    color: #fff;
}

/* FAQ Answer */
.answer {
    font-size: clamp(1.1rem, 2vw, 1rem);
    display: none;
    margin-top: 8px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.85);
    border-left: 4px solid #007bff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.07);
    animation: fadeIn 0.3s ease-in-out;
}

/* Smooth Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Active FAQ */
.faq-item.active .answer {
    display: block;
}

/* Plus/Minus Toggle */
.question::after {
    content: "+";
    font-size: 1.6rem;
    color: #007bff;
    transition: transform 0.3s ease-in-out;
}

.faq-item.active .question::after {
    content: "−";
    transform: rotate(180deg);
    color: #fff;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .faq {
        padding: 50px 6%;
    }

    .question {
        font-size: 1rem;
        padding: 14px;
    }

    .answer {
        font-size: 1rem;
    }
}
