
    /* ========== CSS RESET & MODERN VARIABLES ========== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: #f5f7fb;
        color: #1e293b;
        line-height: 1.5;
    }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ========== NAVBAR ========== */
    .navbar {
        background: white;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: 16px 0;
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 48px;
        width: auto;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 28px;
        align-items: center;
    }

    .nav-menu li a {
        text-decoration: none;
        color: #334155;
        font-weight: 500;
        transition: color 0.2s ease;
        font-size: 15px;
    }

    .nav-menu li a:hover {
        color: #f59e0b;
    }

    .rate-btn {
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: white !important;
        padding: 8px 18px;
        border-radius: 40px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .rate-btn:hover {
        background: linear-gradient(135deg, #d97706, #b45309);
        transform: translateY(-1px);
    }

    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
    }

    .hamburger span {
        width: 25px;
        height: 2px;
        background: #1e293b;
        transition: 0.2s;
    }

    /* ========== HERO SECTION WITH FORM ========== */
    .hero {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        padding: 60px 0 80px;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="rgba(245,158,11,0.03)" d="M0 0h200v200H0z"/><circle cx="100" cy="100" r="80" fill="none" stroke="rgba(245,158,11,0.05)" stroke-width="2"/><circle cx="100" cy="100" r="50" fill="none" stroke="rgba(245,158,11,0.05)" stroke-width="2"/></svg>') repeat;
        opacity: 0.4;
    }

    .hero .container {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 3rem;
        font-weight: 800;
        color: white;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-content h1 span {
        color: #f59e0b;
    }

    .hero-content p {
        color: #cbd5e1;
        font-size: 1.1rem;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .hero-stats {
        display: flex;
        gap: 32px;
        margin-top: 24px;
    }

    .stat-item {
        text-align: left;
    }

    .stat-number {
        font-size: 1.8rem;
        font-weight: 700;
        color: #f59e0b;
    }

    .stat-label {
        font-size: 0.85rem;
        color: #94a3b8;
    }

    /* Government Trust Badges */
    .govt-trust-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .trust-badge-govt {
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(4px);
        padding: 8px 16px;
        border-radius: 40px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 0.8rem;
        font-weight: 500;
        color: #fef3c7;
        border: 1px solid rgba(245,158,11,0.3);
    }

    .trust-badge-govt i {
        color: #f59e0b;
        font-size: 1rem;
    }

    .trust-badge-govt.green {
        background: rgba(34,197,94,0.15);
        border-color: rgba(34,197,94,0.3);
    }

    .trust-badge-govt.green i {
        color: #22c55e;
    }

    .customer-count {
        background: linear-gradient(135deg, #f59e0b20, #d9770620);
        border-radius: 60px;
        padding: 12px 24px;
        display: inline-flex;
        align-items: center;
        gap: 16px;
        margin-top: 20px;
        border: 1px solid rgba(245,158,11,0.3);
    }

    .customer-count .count-number {
        font-size: 2rem;
        font-weight: 800;
        color: #f59e0b;
        line-height: 1;
    }

    .customer-count .count-text {
        font-size: 0.9rem;
        color: #cbd5e1;
        font-weight: 500;
    }

    /* Hero Buttons Container */
    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 24px;
    }

    /* Download App Button */
    .download-app-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        padding: 12px 28px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
        border: none;
        cursor: pointer;
    }

    .download-app-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(16, 185, 129, 0.4);
        background: linear-gradient(135deg, #059669, #047857);
    }

    .download-app-btn i {
        font-size: 1.4rem;
    }

    .download-app-btn .btn-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.2;
    }

    .download-app-btn .btn-text small {
        font-size: 0.7rem;
        opacity: 0.9;
    }

    .download-app-btn .btn-text span {
        font-size: 1rem;
        font-weight: 700;
    }

    /* Professional Button */
    .professional-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        color: white;
        padding: 12px 28px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid rgba(245,158,11,0.6);
        cursor: pointer;
    }

    .professional-btn:hover {
        background: rgba(245,158,11,0.1);
        border-color: #f59e0b;
        transform: translateY(-2px);
    }

    .professional-btn i {
        font-size: 1.2rem;
        color: #f59e0b;
    }

    /* Form Container */
    .form-container-hero {
        background: white;
    
        border-radius: 10px;
        padding: 32px;
        box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
        transition: transform 0.3s ease;
    }

    .form-container-hero:hover {
        transform: translateY(-5px);
    }

    .form-header {
        text-align: center;
        margin-bottom: 24px;
    }

    .form-header h3 {
        font-size: 1.5rem;
        color: #1e293b;
        margin-bottom: 8px;
    }

    .form-header p {
        color: #64748b;
        font-size: 0.9rem;
    }

    .form-group {
        margin-bottom: 18px;
        text-align: justify;
    }

    .form-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        color: #334155;
        margin-bottom: 6px;
    }

    .form-input {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        font-size: 0.95rem;
        transition: all 0.2s ease;
        font-family: 'Inter', sans-serif;
    }

    .form-input:focus {
        outline: none;
        border-color: #f59e0b;
        box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
    }

    textarea.form-input {
        resize: vertical;
        min-height: 80px;
    }

    select.form-input {
        cursor: pointer;
        background-color: white;
    }

    .submit-btn {
        width: 100%;
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: white;
        border: none;
        padding: 14px;
        border-radius: 14px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .submit-btn:hover {
        background: linear-gradient(135deg, #d97706, #b45309);
        transform: translateY(-2px);
    }

    .submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .btn-loader {
        display: inline-flex;
        align-items: center;
    }

    /* T&C Section */
    .terms-conditions {
        margin-top: 20px;
        padding-top: 16px;
        border-top: 1px solid #e2e8f0;
        text-align: center;
    }

    .terms-text {
        font-size: 0.7rem;
        color: #94a3b8;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        flex-wrap: wrap;
    }

    .terms-text a {
        color: #f59e0b;
        text-decoration: none;
    }

    .terms-text a:hover {
        text-decoration: underline;
    }

    .terms-text i {
        color: #22c55e;
        font-size: 0.65rem;
    }

    /* Trust Badge */
    .trust-badge {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-top: 16px;
        padding-top: 12px;
    }

    .trust-badge span {
        font-size: 0.7rem;
        color: #94a3b8;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .trust-badge i {
        color: #22c55e;
    }

    /* ========== FEATURES SECTION ========== */
    .features {
        padding: 80px 0;
        background: white;
    }

    .section-title {
        text-align: center;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 48px;
        color: #1e293b;
    }

    .section-title span {
        color: #f59e0b;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 32px;
    }

    .feature-card {
        text-align: center;
        padding: 32px 20px;
        background: #f8fafc;
        border-radius: 24px;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #fef3c7, #fed7aa);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .feature-icon i {
        font-size: 32px;
        color: #f59e0b;
    }

    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .feature-card p {
        color: #64748b;
        font-size: 0.9rem;
    }

    /* ========== PRICE LIST SECTION ========== */
    .prices {
        padding: 80px 0;
        background: #f8fafc;
    }

    .price-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .price-item {
        background: white;
        padding: 20px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        transition: all 0.2s ease;
    }

    .price-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    }

    .price-item h4 {
        font-size: 1rem;
        color: #334155;
        margin-bottom: 8px;
    }

    .price-amount {
        font-size: 1.5rem;
        font-weight: 700;
        color: #f59e0b;
    }

    .price-unit {
        font-size: 0.75rem;
        color: #94a3b8;
    }

    /* ========== DYNAMIC CONTENT SECTIONS ========== */
    .dynamic-section {
        padding: 60px 0;
        background: white;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .dynamic-section:nth-child(even) {
        background: #f8fafc;
    }
    
    .dynamic-section h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #1e293b;
    }
    
    .dynamic-section h2 i {
        color: #f59e0b;
        margin-right: 12px;
    }
    
    .dynamic-section h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin: 25px 0 15px 0;
        color: #334155;
    }
    
    .dynamic-section p {
        font-size: 1rem;
        line-height: 1.7;
        color: #334155;
        margin-bottom: 20px;
    }
    
    .dynamic-section .content-divider {
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #f59e0b, #d97706);
        margin: 20px 0 30px 0;
        border-radius: 2px;
    }
    
    /* Main Content HTML Styling */
    .main-content {
        font-size: 1rem;
        line-height: 1.8;
        color: #334155;
    }
    
    .main-content h2, .main-content h3, .main-content h4 {
        margin-top: 1.5em;
        margin-bottom: 0.5em;
        color: #1e293b;
    }
    
    .main-content h2 {
        font-size: 1.8rem;
    }
    
    .main-content h3 {
        font-size: 1.4rem;
    }
    
    .main-content h4 {
        font-size: 1.2rem;
    }
    
    .main-content p {
        margin-bottom: 1.2em;
    }
    
    .main-content ul, .main-content ol {
        margin: 1em 0;
        padding-left: 2em;
    }
    
    .main-content li {
        margin-bottom: 0.5em;
    }
    
    .main-content img {
        max-width: 100%;
        height: auto;
        border-radius: 16px;
        margin: 1.5em 0;
    }
    
    .main-content a {
        color: #f59e0b;
        text-decoration: none;
    }
    
    .main-content a:hover {
        text-decoration: underline;
    }
    
    .main-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.5em 0;
    }
    
    .main-content th, .main-content td {
        border: 1px solid #e2e8f0;
        padding: 12px;
        text-align: left;
    }
    
    .main-content th {
        background: #f8fafc;
        font-weight: 600;
    }
    
    .info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }
    
    .info-card {
        background: white;
        border-radius: 20px;
        padding: 25px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border: 1px solid #e2e8f0;
    }
    
    .info-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    }
    
    .info-card h4 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 12px;
        color: #1e293b;
    }
    
    .info-card h4 i {
        color: #f59e0b;
        margin-right: 10px;
    }
    
    .info-card p {
        margin-bottom: 0;
        color: #64748b;
    }
    
    .working-locations {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 20px;
    }
    
    .location-tag {
        background: #fef3c7;
        color: #d97706;
        padding: 6px 14px;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    .service-badge {
        display: inline-block;
        background: #dcfce7;
        color: #15803d;
        padding: 8px 16px;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 500;
        margin: 5px 8px 5px 0;
    }
    
    /* ========== FAQ SECTION STYLES ========== */
    .faq-section {
        background: white;
        padding: 60px 0;
    }
    
    .faq-section .section-title {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .faq-grid {
        max-width: 900px;
        margin: 0 auto;
    }
    
    .faq-item {
        background: #f8fafc;
        border-radius: 16px;
        margin-bottom: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid #e2e8f0;
    }
    
    .faq-item:hover {
        border-color: #f59e0b;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    
    .faq-question {
        padding: 20px 24px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        font-size: 1.05rem;
        color: #1e293b;
        transition: all 0.2s ease;
    }
    
    .faq-question:hover {
        background: #f1f5f9;
    }
    
    .faq-question i {
        color: #f59e0b;
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }
    
    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }
    
    .faq-answer {
        padding: 0 24px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        color: #64748b;
        line-height: 1.6;
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 24px 20px 24px;
        max-height: 500px;
    }
    
    .faq-answer p {
        margin: 0;
    }
    
    .no-faq {
        text-align: center;
        padding: 40px;
        background: #f8fafc;
        border-radius: 16px;
        color: #64748b;
    }
    
    .no-faq i {
        font-size: 3rem;
        color: #cbd5e1;
        margin-bottom: 16px;
    }
    
    .image-container {
        margin: 30px 0;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    }
    
    .image-container img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* App Download Popup */
    .app-popup {
        position: fixed;
        bottom: 30px;
        left: 30px;
        background: white;
        border-radius: 20px;
        padding: 16px 24px;
        box-shadow: 0 20px 40px -12px rgba(0,0,0,0.2);
        z-index: 1000;
        display: flex;
        align-items: center;
        gap: 16px;
        border-left: 5px solid #10b981;
        max-width: 380px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .app-popup:hover {
        transform: translateX(5px);
    }

    .app-popup .app-icon {
        background: linear-gradient(135deg, #10b981, #059669);
        width: 50px;
        height: 50px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.8rem;
    }

    .app-popup .app-text h4 {
        font-size: 1rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 4px;
    }

    .app-popup .app-text p {
        font-size: 0.8rem;
        color: #64748b;
    }

    .app-popup .close-popup {
        background: none;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        color: #94a3b8;
        margin-left: auto;
    }

    /* ========== FOOTER ========== */
    .footer {
        background: #0f172a;
        color: #94a3b8;
        padding: 40px 0;
        text-align: center;
    }

    .footer a {
        color: #94a3b8;
        text-decoration: none;
    }

    .footer a:hover {
        color: #f59e0b;
    }

    /* ========== CUSTOM POPUP STYLES ========== */
    .custom-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Inter', sans-serif;
    }

    .popup-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
    }

    .popup-content {
        position: relative;
        background: white;
        border-radius: 24px;
        padding: 32px 28px;
        max-width: 450px;
        width: 90%;
        text-align: center;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        z-index: 10000;
    }

    .popup-content.success {
        border-top: 5px solid #22c55e;
    }

    .popup-content.error {
        border-top: 5px solid #ef4444;
    }

    .popup-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 36px;
    }

    .popup-content.success .popup-icon {
        background: #f0fdf4;
        color: #22c55e;
    }

    .popup-content.error .popup-icon {
        background: #fef2f2;
        color: #ef4444;
    }

    .popup-content h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        color: #1e293b;
    }
    
    

    .popup-content p {
        color: #64748b;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .app-download-section {
        background: #f0fdf4;
        border-radius: 16px;
        padding: 20px;
        margin: 20px 0;
        text-align: center;
    }

    .app-download-section h4 {
        color: #059669;
        margin-bottom: 12px;
        font-size: 1.1rem;
    }

    .app-download-link {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        padding: 10px 24px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .app-download-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    }

    .popup-close-btn {
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: white;
        border: none;
        padding: 12px 28px;
        border-radius: 40px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        font-size: 0.9rem;
    }

    .popup-close-btn:hover {
        background: linear-gradient(135deg, #d97706, #b45309);
        transform: translateY(-1px);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 992px) {
        .hero .container {
            grid-template-columns: 1fr;
            text-align: center;
        }
        
        .hero-content h1 {
            font-size: 2rem;
        }
        
        .hero-stats {
            justify-content: center;
        }

        .hero-buttons {
            justify-content: center;
        }

        .govt-trust-badges {
            justify-content: center;
        }

        .customer-count {
            justify-content: center;
        }
        
        .form-container-hero {
            max-width: 500px;
            margin: 0 auto;
        }
    }

    @media (max-width: 768px) {
        .hamburger {
            display: flex;
        }
        
        .nav-menu {
            position: fixed;
            left: -100%;
            top: 80px;
            flex-direction: column;
            background: white;
            width: 100%;
            text-align: center;
            transition: 0.3s;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            padding: 30px 0;
            gap: 20px;
        }
        
        .nav-menu.active {
            left: 0;
        }
        
        .features-grid {
            grid-template-columns: 1fr;
        }
        
        .price-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .info-grid {
            grid-template-columns: 1fr;
        }

        .app-popup {
            left: 16px;
            right: 16px;
            max-width: calc(100% - 32px);
            padding: 12px 16px;
        }
        
        .faq-question {
            font-size: 0.95rem;
            padding: 16px 20px;
        }
    }
