:root {
            --primary-color: #1a4f8c;
            --primary-dark: #0d3c6e;
            --secondary-color: #ff6b35;
            --accent-color: #00a8a8;
            --light-bg: #f8f9fa;
            --dark-text: #2c3e50;
            --medium-text: #5a6c7d;
            --light-text: #7f8c9a;
            --border-color: #e1e5eb;
            --success-color: #28a745;
            --shadow-light: 0 2px 12px rgba(0, 0, 0, 0.06);
            --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-strong: 0 8px 30px rgba(0, 0, 0, 0.12);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
          /* ===== Hero Section ===== */
        .hero-section {
            background: linear-gradient(135deg, #f5f9ff 0%, #eef4ff 100%);
            padding: 0px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content h1 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .hero-content p {
            font-size: 1.1rem;
            color: var(--medium-text);
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .feature-icon {
            background-color: rgba(26, 79, 140, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: var(--primary-color);
        }
        
        .hero-form {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow-strong);
            height: 100%;
        }
        
        .form-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--primary-dark);
        }
        
        .form-subtitle {
            color: var(--medium-text);
            margin-bottom: 1.5rem;
        }
        
        .form-control, .form-select {
            padding: 0.75rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(26, 79, 140, 0.1);
        }


           /* ===== Packages Section ===== */
        .packages-section {
            background-color: var(--light-bg);
            padding: 5rem 0;
        }
        
        .package-card {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            border: 1px solid var(--border-color);
            height: 100%;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-medium);
        }
        
        .package-header {
            padding: 2rem 1.5rem 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .package-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .package-price span {
            font-size: 1rem;
            color: var(--light-text);
            font-weight: 400;
        }
        
        .package-features {
            padding: 1.5rem;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .feature-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: flex-start;
        }
        
        .feature-list li i {
            color: var(--success-color);
            margin-right: 10px;
            margin-top: 3px;
            flex-shrink: 0;
        }
        
        .feature-list li.disabled {
            color: var(--light-text);
        }
        
        .feature-list li.disabled i {
            color: var(--light-text);
        }
        
        .package-footer {
            padding: 0 1.5rem 1.5rem;
        }
        
        .package-popular {
            border: 2px solid var(--secondary-color);
            position: relative;
        }
        
        .popular-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        /* ===== Services Section ===== */
        .services-section {
            padding: 5rem 0;
        }
        
        .service-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 1rem 1.5rem;
            text-align: center;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            border: 1px solid var(--border-color);
            height: 100%;
            border-color: var(--primary-color);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
            border-color: var(--primary-color);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #eef4ff 0%, #e0ebff 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.5rem;
            color: var(--primary-color);
            font-size: 1.875rem;
        }
        


        /* ===== Process Section ===== */
        .process-section {
            background-color: #f8fafc;
            padding: 5rem 0;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 0 1rem;
        }
        
        .step-number {
            width: 70px;
            height: 70px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-color);
            border: 3px solid var(--border-color);
            box-shadow: var(--shadow-light);
        }
        
        .process-step h4 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }
        
        .process-step p {
            color: var(--medium-text);
        }
        
        /* ===== FAQ Section ===== */
        .faq-section {
            padding: 5rem 0;
        }
        
        .accordion-button {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 1.25rem 1.5rem;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: rgba(26, 79, 140, 0.05);
            color: var(--primary-dark);
        }
        
        .accordion-button:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(26, 79, 140, 0.25);
        }
        
        /* ===== CTA Section ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 5rem 0;
            text-align: center;
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }