 :root {
            --primary: #003a70;
            --primary-2: #35b6b4;
            --primary-light: #c2ddff;
            --secondary: #00C9A7;
            --accent: #FF6B6B;
            --light: #FFFFFF;
            --light-gray: #dfefff;
            --medium-gray: #E2E8F0;
            --dark-gray: #64748B;
            --dark: #0F172A;
            --transition: all 0.3s ease;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
            --rounded-sm: 4px;
            --rounded-md: 8px;
            --rounded-lg: 12px;
            --rounded-xl: 16px;
            --rounded-full: 9999px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
            font-weight: 400;
        }
        
        .container {
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        section {
            padding: 5rem 0;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            line-height: 1.2;
            color: var(--dark);
        }
        
        h1 {
            font-size: 3.5rem;
        }
        
        h2 {
            font-size: 2.4rem;
            margin-bottom: 20px;
        }
        
        h3 {
            font-size: 1.6rem;
            margin-bottom: 10px;
        }
        
        p {
            color: var(--dark-gray);
            font-size: 1rem;
        }
        
        a {
            text-decoration: none;
            transition: var(--transition);
        }
        
        img {
            max-width: 100%;
            height: auto;
        }

        /* Procedure Hero Section */
       
        
        .procedure-hero .container {
            position: relative;
            z-index: 1;
        }
        
        .procedure-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: white;
            line-height: 1.2;
        }
        
        .procedure-hero p {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(5px);
            padding: 0.5rem 1.5rem;
            border-radius: var(--rounded-full);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        /* Procedure Overview */
        .procedure-overview {
            padding: 5rem 0;
        }
        
        .overview-container {
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        
        .overview-content {
            flex: 1;
        }
        
        .overview-image {
            flex: 1;
            position: relative;
        }
        
        .overview-image img {
            border-radius: var(--rounded-xl);
            box-shadow: var(--shadow-lg);
        }
        
        .overview-features {
            margin-top: 2rem;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .feature-icon {
            color: var(--primary);
            font-size: 1.25rem;
            margin-top: 0.2rem;
        }

        /* Benefits Section */
        .benefits {
            background: var(--light-gray);
            padding: 5rem 0;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }
        
        .benefit-card {
            transition: var(--transition);
            text-align: center;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
        }
        
        .benefit-icon {
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }

        /* Process Section */
        .process {
            padding: 5rem 0;
        }
        
        .steps-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .steps-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 20px;
            height: 100%;
            width: 2px;
            background: var(--primary-light);
            z-index: 0;
        }
        
        .step {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }
        
        .step-content {
            flex: 1;
        }
        
        .step-content h3 {
            margin-bottom: 1rem;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--primary), var(--primary-2));
            color: white;
            text-align: center;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta h2 {
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .cta p {
            color: rgba(255,255,255,0.9);
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }
        
        
        .cta .cta-button {
            background: white;
            color: var(--primary);
            border-color: white;
        }
        
        .cta .cta-button:hover {
            background: transparent;
            color: white;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.25rem;
            }
        }
        
        @media (max-width: 992px) {
            .overview-container {
                flex-direction: column;
            }
            
            .overview-image {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            section {
                padding: 4rem 0;
            }
            
            .procedure-hero {
                padding: 5rem 0 3rem;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.75rem;
            }
            
            .steps-container::before {
                left: 15px;
            }
            
            .step {
                gap: 1rem;
            }
        }