/* ===================================
   BANNER STYLES (Same as About Page)
   =================================== */
.section.top {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
    padding: 60px 20px;
    position: relative;
}

.section.top h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.section.top .section-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: white;
}

        .faq-section {
            background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
            padding-bottom: 80px;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
            transform: translateY(-2px);
        }

        .faq-item.active {
            border-color: #3b82f6;
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
        }

        .faq-question {
            width: 100%;
            padding: 24px 28px;
            background: white;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            color: #1e293b;
        }

        .faq-question:hover {
            background: linear-gradient(to right, #f8fafc, #ffffff);
            color: #2563eb;
        }

        .faq-item.active .faq-question {
            color: #2563eb;
            background: linear-gradient(to right, #eff6ff, #ffffff);
        }

        .faq-toggle {
            color: #3b82f6;
            font-size: 1.4rem;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: #eff6ff;
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* Arrow pointing down when collapsed */
        .faq-item .faq-toggle {
            transform: rotate(0deg);
        }

        /* Arrow pointing up when expanded */
        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
            background: #2563eb;
            color: white;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            border-top: 1px solid #e2e8f0;
        }

        .faq-item.active .faq-answer {
            max-height: 600px;
        }

        .faq-answer-content {
            padding: 24px 28px;
            color: #475569;
            line-height: 1.9;
            font-size: 1.05rem;
            background: linear-gradient(to bottom, #f8fafc, #ffffff);
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            margin-bottom: 16px;
            text-align: center;
            padding-top: 20px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 48px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* FAQ Header Section */
        .faq-header {
            text-align: center;
            padding: 100px 20px 60px;
            background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        .faq-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.4;
        }

        .faq-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 16px;
            color: white;
            letter-spacing: -0.5px;
            position: relative;
            z-index: 1;
        }

        .faq-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.95);
            max-width: 700px;
            margin: 0 auto 32px;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .faq-divider {
            width: 100px;
            height: 5px;
            background: white;
            margin: 0 auto;
            border-radius: 3px;
            position: relative;
            z-index: 1;
            box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
        }

        /* FAQ Page Header */
        .faq-header-banner {
            background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
        }

        .faq-container-wrapper {
            padding-top: 30px;
            padding-bottom: 30px;
        }
