
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(30, 58, 138, 0.7), rgba(30, 58, 138, 0.7)), 
                        url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkyMCIgaGVpZ2h0PSIxMDgwIiB2aWV3Qm94PSIwIDAgMTkyMCAxMDgwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cmVjdCB3aWR0aD0iMTkyMCIgaGVpZ2h0PSIxMDgwIiBmaWxsPSIjMWUzYThhIi8+CjxyZWN0IHg9IjEwMCIgeT0iMjAwIiB3aWR0aD0iMTUwIiBoZWlnaHQ9IjQwMCIgZmlsbD0iIzM3NDE1MSIvPgo8cmVjdCB4PSIzMDAiIHk9IjE1MCIgd2lkdGg9IjEyMCIgaGVpZ2h0PSI1MDAiIGZpbGw9IiM0YjU1NjMiLz4KPHN2ZyB3aWR0aD0iMTkyMCIgaGVpZ2h0PSIxMDgwIiB2aWV3Qm94PSIwIDAgMTkyMCAxMDgwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L3N2Zz4K');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 80px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .hero-cta {
            font-size: 1.2rem;
            padding: 15px 40px;
        }

        /* Offers Section */
        .offers-section {
            background: #f8fafc;
        }

        .offer-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }

        .offer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .offer-card h4 {
            color: #1e3a8a;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .offer-details {
            margin-bottom: 20px;
        }

        .offer-detail {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            color: #6b7280;
        }

        .offer-detail i {
            margin-right: 10px;
            width: 16px;
            color: #e63946;
        }

        .offer-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #e63946;
            margin-bottom: 15px;
        }

        /* About Section */
        .about-section {
            background: white;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .about-feature {
            text-align: center;
            padding: 30px 20px;
        }

        .about-feature i {
            font-size: 3rem;
            color: #e63946;
            margin-bottom: 20px;
        }

        .about-feature h4 {
            color: #1e3a8a;
            margin-bottom: 15px;
        }

        /* Districts Section */
        .districts-section {
            background: #f8fafc;
        }

        .districts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .district-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            cursor: pointer;
        }

        .district-card:hover {
            transform: translateY(-3px);
        }

        .district-image {
            height: 150px;
            background: linear-gradient(45deg, #1e3a8a, #3b82f6);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }

        .district-name {
            padding: 15px;
            text-align: center;
            font-weight: 600;
            color: #1e3a8a;
        }

        /* Contact Section */
        .contact-section {
            background: white;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: #f8fafc;
            padding: 40px;
            border-radius: 15px;
        }

        .contact-form h3 {
            text-align: center;
            color: #1e3a8a;
            font-size: 2rem;
            margin-bottom: 30px;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #374151;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #e63946;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-submit {
            width: 100%;
            background: #e63946;
            color: white;
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .form-submit:hover {
            background: #d62c36;
        }

        .success-message {
            background: #10b981;
            color: white;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            margin-top: 20px;
            display: none;
        }

        .error-message {
            color: #e63946;
            font-size: 0.9rem;
            margin-top: 5px;
        }

        /* FAQ Section */
        .faq-section {
            background: #f8fafc;
        }

        .faq-item {
            background: white;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .faq-question {
            padding: 20px;
            background: #1e3a8a;
            color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }

        .faq-answer {
            padding: 20px;
            display: none;
            border-top: 1px solid #e5e7eb;
        }

        .faq-icon {
            transition: transform 0.3s;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .districts-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-form {
                padding: 20px;
            }
        }
    