    :root {
            --primary: #005EB8;
            --secondary: #0071BC;
            --accent: #00A3E0;
            --light: #E6F7FF;
            --dark: #003A5D;
            --success: #4CAF50;
            --gray: #F5F7FA;
            --text: #333333;
            --text-light: #666666;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23005EB8" opacity="0.03"/><circle cx="20" cy="20" r="3" fill="%2300A3E0" opacity="0.1"/><circle cx="80" cy="80" r="5" fill="%2300A3E0" opacity="0.1"/><circle cx="50" cy="50" r="2" fill="%23005EB8" opacity="0.1"/></svg>');
            z-index: -1;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 16px;
            box-shadow: var(--shadow);
            overflow: hidden;
            position: relative;
            animation: fadeInScale 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes fadeInScale {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header-content {
            position: relative;
            z-index: 2;
        }

        .logo {
            display: flex;
            align-items: start;
            justify-content: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .logo-icon {
            font-size: 32px;
            color: white;
            background: var(--accent);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .logo-text {
            font-size: 28px;
    font-weight: 700;
   
    line-height: normal;
        }

        .disclaimer {
            font-size: 14px;
            opacity: 0.9;
            display: block;
        }

        .contact-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .phone-link {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            background:var(--success);
            padding: 8px 16px;
            border-radius: 50px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            transition: var(--transition);
        }

        .phone-link:hover {
            background: var(--accent);
            transform: translateY(-2px);
        }

        /* Progress Bar */
        .progress-container {
            padding: 25px 30px 15px;
            background: var(--gray);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: none;
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-weight: 500;
            color: var(--text-light);
        }

        .progress-bar {
            height: 10px;
            background: #e0e0e0;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--accent), var(--primary));
            border-radius: 5px;
            width: 0%;
            transition: width 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
        }

        .step-marker {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: var(--text-light);
            position: relative;
            transition: var(--transition);
        }

        .step-marker.active {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 4px 8px rgba(0, 94, 184, 0.3);
        }

        .step-marker.completed {
            background: var(--success);
            color: white;
        }

        /* Landing Page */
        .landing-page {
            padding: 50px 30px;
            text-align: center;
            display: block;
        }

        .landing-icon {
            font-size: 80px;
            color: var(--primary);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-20px);}
            60% {transform: translateY(-10px);}
        }

        .landing-title {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .landing-subtitle {
            font-size: 22px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .benefit-card {
            background: var(--gray);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--accent);
        }

        .benefit-icon {
            font-size: 36px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .benefit-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .benefit-description {
            color: var(--text-light);
            font-size: 15px;
        }

        .btn-start {
            padding: 18px 45px;
            border: none;
            border-radius: 50px;
            font-size: 20px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
            color: white;
            box-shadow: 0 6px 20px rgba(0, 94, 184, 0.4);
            margin: 30px 0;
        }

        .btn-start:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 94, 184, 0.5);
        }

        /* Form Steps */
        .step {
            padding: 30px;
            display: none;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .step.active {
            display: block;
        }

        .step-header {
            margin-bottom: 25px;
            text-align: center;
        }

        .step-icon {
            font-size: 48px;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .step-title {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .step-subtitle {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    line-height: 150%;
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary);
    padding: 15px;
    font-size: 0.8rem;
        }

        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .option-card {
            background: var(--gray);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .option-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--accent);
        }

        .option-card.selected {
            background: linear-gradient(135deg, var(--light) 0%, white 100%);
            border-color: var(--primary);
            box-shadow: 0 6px 16px rgba(0, 94, 184, 0.15);
        }

        .option-icon {
            font-size: 36px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .option-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .option-description {
            color: var(--text-light);
            font-size: 15px;
        }

        .input-group {
            margin: 25px 0;
        }

        .input-row {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .input-container {
            flex: 1;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }

        input, select {
            width: 100%;
            padding: 16px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 16px;
            transition: var(--transition);
        }

        input:focus, select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 163, 224, 0.2);
        }

        .optional {
            font-size: 14px;
            color: var(--text-light);
            font-style: italic;
            margin-left: 5px;
            font-weight: normal;
        }

        /* Button Styles */
        .btn-container {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }

        .btn {
            padding: 16px 32px;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-prev {
            background: #f0f0f0;
            color: var(--text);
        }

        .btn-prev:hover {
            background: #e0e0e0;
        }

        .btn-next {
            background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 94, 184, 0.3);
        }

        .btn-next:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 94, 184, 0.4);
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--success) 0%, #2E7D32 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
            width: 100%;
            padding: 18px;
            font-size: 20px;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
        }

        /* Consent Step */
        .consent-box {
            background: var(--gray);
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            max-height: 300px;
            overflow-y: auto;
            border: 1px solid #ddd;
        }

        .consent-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .consent-text {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-light);
        }

        /* Final Step */
        .final-step {
            text-align: center;
            padding: 40px 20px;
        }

        .success-icon {
            font-size: 80px;
            color: var(--success);
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }

        .call-to-action {
            font-size: 24px;
            margin: 30px 0;
            color: var(--dark);
            line-height: 1.4;
        }

        .highlight {
            color: var(--primary);
            font-weight: 700;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 30px;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }

        .copyright {
            margin-top: 20px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            text-align: left;
        }

        .fixed-contact {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 100;
        }

        .contact-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .step {
                padding: 20px;
            }

            .options-grid {
                grid-template-columns: 1fr;
            }

            .input-row {
                flex-direction: column;
                gap: 10px;
            }

            .btn-container {
                flex-direction: column;
                gap: 10px;
            }

            .btn {
                width: 100%;
            }

            .step-title {
                font-size: 24px;
            }

            .step-subtitle {
                font-size: 16px;
            }

            .call-to-action {
                font-size: 20px;
            }

            .landing-title {
                font-size: 30px;
            }

            .landing-subtitle {
                font-size: 18px;
            }
            .btn-start {
    padding: 18px;
    font-size: 18px;
    border-radius: 30px;
            }
            .logo-icon {
    width: 50px;
    height: 50px;
            }
        }

        @media (max-width: 480px) {
            .header-content {
                padding: 0 10px;
            }

            .logo-text {
                font-size: 20px;
            }

            .contact-info {
                flex-direction: column;
            }

            .progress-steps {
                display: none;
            }

            .landing-icon {
                font-size: 60px;
            }

            .landing-title {
                font-size: 26px;
            }
        }