        /* Hero — contact page uses background-image on .hero directly (no .hero-bg-image) */
        .hero {
            background-image: url('images/backgrounds/contact-us.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 51, 102, 0.7);
            z-index: 1;
        }

        .hero-content {
            justify-content: flex-start;
            padding-top: 20px;
        }

        .section-header p {
            font-weight: 400;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 40px;
            max-width: 1440px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        /* Contact Container */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            margin-bottom: 80px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Contact Form Section */
        .contact-form-section {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .contact-form-section h3 {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-error-msg {
            display: none;
            background: #fff3cd;
            border: 1px solid #ffc107;
            color: #856404;
            padding: 15px 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group label {
            display: block;
            color: var(--text-dark);
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 16px;
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #E9ECEF;
            border-radius: 10px;
            font-size: 16px;
            color: var(--text-dark);
            background: white;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .required {
            color: var(--secondary-color);
        }

        .submit-btn {
            background: var(--secondary-color);
            color: var(--primary-color);
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 19px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        /* Contact Info Section */
        .contact-info-section {
            padding: 0 20px;
        }

        .info-item {
            margin-bottom: 20px;
            display: flex;
            align-items: start;
            gap: 20px;
            background: rgba(0, 51, 102, 0.08);
            padding: 25px 35px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 51, 102, 0.15);
            margin-left: -20px;
            margin-right: -20px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            flex-shrink: 0;
        }

        .info-content h4 {
            color: var(--text-dark);
            font-size: 24px;
            margin-bottom: 10px;
        }

        .info-content p {
            color: #6C757D;
            line-height: 1.8;
            font-size: 19px;
        }

        .info-content a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
        }

        .info-content a:hover {
            color: var(--primary-color);
        }

        /* Status Notice */
        .status-notice {
            background: var(--primary-color);
            color: white;
            padding: 25px 35px;
            border-radius: 15px;
            margin-top: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-left: 4px solid var(--secondary-color);
            margin-left: -20px;
            margin-right: -20px;
        }

        .status-notice h4 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .status-notice p {
            opacity: 0.95;
            font-size: 19px;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 40px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            margin: 40px auto;
            max-width: 1440px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .faq-section h3 {
            text-align: center;
            font-size: 43px;
            color: var(--primary-color);
            margin-bottom: 50px;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }

        .faq-item h4 {
            color: var(--text-dark);
            font-size: 24px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .faq-item h4::before {
            content: '?';
            width: 30px;
            height: 30px;
            background: var(--secondary-color);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
            font-weight: 700;
        }

        .faq-item p {
            color: #6C757D;
            line-height: 1.8;
            padding-left: 40px;
            font-size: 19px;
        }

        /* Quick Links Grid */
        .quick-links-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .links-column {
            display: flex;
            flex-direction: column;
        }

        /* Mobile Sticky CTA */
        .mobile-sticky-cta {
            display: none;
        }

        @media (max-width: 768px) {
            .mobile-sticky-cta {
                display: block;
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                background: var(--primary-color);
                padding: 14px 20px;
                text-align: center;
                z-index: 998;
                box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
            }

            .mobile-sticky-cta a {
                display: block;
                color: var(--primary-color);
                background: var(--secondary-color);
                font-weight: 700;
                font-size: 16px;
                text-decoration: none;
                padding: 12px 0;
                border-radius: 8px;
                letter-spacing: 0.02em;
            }
        }

        /* Mobile media queries specific to contact */
        @media (max-width: 1024px) {
            .contact-container {
                grid-template-columns: 1fr;
            }

            .contact-form-section {
                padding: 40px 30px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 32px;
            }
        }
