/* GLOBAL STYLING */
        :root {
            --primary: #00128b;
            --secondary: #006ae7;
            --accent: #5ce0ff;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #28a745;
            --text-on-primary: #ffffff;
            --text-on-dark: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            color: var(--dark);
            background-color: white;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
        }

        section {
            padding: 80px 0;
        }

        h1{
            padding: 0 0.7%;
        },
        h2,
        h3,
        h4 {
            margin-bottom: 20px;
            color: var(--primary);
        }

        h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            font-weight: 700;
        }

        h2 {
            font-size: 2.2rem;
            border-bottom: 4px solid var(--secondary);
            display: inline-block;
            padding-bottom: 10px;
            font-weight: 600;
        }

        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
            color: var(--dark);
        }

        .btn {
            display: inline-block;
            background: var(--secondary);
            color: var(--text-on-primary);
            padding: 15px 35px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-top: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .btn:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-accent {
            background: var(--accent);
            color: var(--dark);
            font-weight: 600;
        }

        .btn-accent:hover {
            background: #4ad0f0;
            color: var(--dark);
        }

        .text-center {
            text-align: center;
        }

        /* Header Styles */
        header {
            background: var(--primary);
            color: var(--text-on-primary);
            padding: 25px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

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

        .logo {
            width: 200px;
            height: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary), var(--secondary)), url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
            color: var(--text-on-primary);
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero h1 {
            color: var(--text-on-primary);
            font-size: 3.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 2;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: var(--text-on-primary);
            position: relative;
            z-index: 2;
        }

        .hero-content {
            background: rgba(255, 255, 255, 0.15);
            padding: 40px;
            border-radius: 15px;
            max-width: 900px;
            margin: 50px auto 0;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 2;
        }

        .hero-content h3 {
            color: var(--accent);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .hero-content ul {
            text-align: left;
            margin-left: 20px;
            margin-top: 20px;
            color: var(--text-on-primary);
            list-style-type: none;
        }

        .hero-content li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            font-size: 1.1rem;
        }

        .hero-content li:before {
            content: "✓";
            color: var(--accent);
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .responsive-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            margin-bottom: 1.5rem;
        }

        /* Benefits Section */
        .benefits {
            background: var(--light);
            position: relative;
        }

        .benefits:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, rgba(0, 18, 139, 0.1), transparent);
        }

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

        .benefit-item {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border-top: 5px solid var(--secondary);
            position: relative;
            overflow: hidden;
        }

        .benefit-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 106, 231, 0.15);
        }

        .benefit-item:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 25px;
            color: var(--secondary);
        }

        .benefit-item h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        /* Call Process Section */
        .call-process {
            background: white;
            position: relative;
        }

        .call-process:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.03), transparent);
        }

        .process-steps {
            margin-top: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .step {
            display: flex;
            margin-bottom: 40px;
            align-items: flex-start;
            background: rgba(0, 106, 231, 0.05);
            padding: 30px;
            border-radius: 12px;
            border-left: 5px solid var(--secondary);
            transition: transform 0.3s ease;
        }

        .step:hover {
            transform: translateX(10px);
        }

        .step-number {
            background: var(--accent);
            color: var(--dark);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 25px;
            flex-shrink: 0;
            font-weight: bold;
            font-size: 1.4rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .step-content {
            flex: 1;
        }

        .step-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        /* Video Section */
        .video-section {
            background: linear-gradient(135deg, rgba(0, 18, 139, 0.03), rgba(0, 106, 231, 0.03));
            padding: 20px 0;
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            max-width: 900px;
            margin: 50px auto;
            background: #ddd;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            font-size: 1.8rem;
            flex-direction: column;
        }


        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--text-on-primary);
            padding: 30px 0;
            text-align: center;
        }

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

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--accent);
        }

        .stat-label {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Calendar Section Styling */
    .calendar-section {
        padding: 3rem 1rem;
        background-color: #f9fafb;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .calendar-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .calendar-header h2 {
        font-size: 2rem;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
        color: #7f8c8d;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .calendar-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .calendar-info {
        flex: 1;
    }
    
    .calendar-info h3 {
        font-size: 1.5rem;
        color: #1933f4;
        margin-bottom: 1rem;
    }
    
    .calendar-info p {
        font-size: 1rem;
        color: #34495e;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .benefits-box {
        background-color: white;
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-top: 1.5rem;
    }
    
    .benefits-box h4 {
        font-size: 1.2rem;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    
    .benefits-box ul {
        list-style-type: none;
        padding-left: 0;
    }
    
    .benefits-box li {
        padding: 0.5rem 0;
        font-size: 1rem;
        color: #34495e;
        position: relative;
        padding-left: 1.5rem;
    }
    
    .benefits-box li:before {
        content: "✓";
        color: #27ae60;
        position: absolute;
        left: 0;
    }
    
    .calendar-embed {
        flex: 1;
    }
    
    .cal-embed-container {
        width: 100%;
        min-height: 600px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        background: white;
        overflow: hidden;
    }
    
    /* Responsive adjustments */
    @media (min-width: 768px) {
        .calendar-content {
            flex-direction: row;
        }
        
        .calendar-info {
            max-width: 400px;
        }
        
        .calendar-header h2 {
            font-size: 2.5rem;
        }
    }
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--text-on-primary);
            padding: 100px 0;
            text-align: center;
        }

        .cta-box {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cta-box h2 {
            color: var(--text-on-primary);
            border-bottom: none;
            font-size: 2.5rem;
            margin-bottom: 30px;
        }

        .cta-box p {
            color: var(--text-on-primary);
            opacity: 0.9;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        


        
        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            section {
                padding: 70px 0;
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .hero {
                padding: 100px 0;
            }

            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 0px 0;
            }

            h1 {
                font-size: 2.2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .hero {
                padding: 40px 0;
            }

            .hero-image {
                flex: 1;
                min-width: 300px;
            }

            .hero h1 {
                font-size: 2.3rem;
            }

            .hero-content {
                padding: 20px;
            }

            .header-container {
                flex-direction: column;
                gap: 20px;
            }

            .benefit-item,
            .testimonial-card {
                padding: 30px 20px;
            }

            .step {
                flex-direction: column;
            }

            .step-number {
                margin-right: 0;
                margin-bottom: 20px;
            }

            .cta-box {
                padding: 40px 30px;
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 50px 0;
            }

            h1 {
                font-size: 1.8rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p,
            .hero-content li {
                font-size: 1rem;
            }

            .btn {
                padding: 12px 25px;
                font-size: 1rem;
            }

            .benefits-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .calendar-container {
                padding: 30px 20px;
            }

        }

