/* Start custom CSS for html, class: .elementor-element-7fa201f */:root {
            --primary: #2a5d8a;
            --secondary: #e59a2b;
            --accent: #3c7ab5;
            --light: #f8f9fa;
            --dark: #2d3a4a;
            --text: #333333;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: #f5f5f5;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        h1 {
            font-size: 3.5rem;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
            margin-top: 2rem;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }
        
        h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-top: 1.5rem;
        }
        
        h4 {
            font-size: 1.4rem;
            color: var(--accent);
            margin-top: 1.2rem;
        }
        
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 30px;
            background: var(--secondary);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow);
        }
        
        .btn:hover {
            background: #d48a20;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }
        
        .btn-outline:hover {
            background: var(--secondary);
            color: white;
        }
        
       
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(42, 93, 138, 0.8), rgba(42, 93, 138, 0.8)), url('https://images.unsplash.com/photo-1566669437686-9c5e7c85d96f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
            color: white;
            padding: 160px 0 100px;
            text-align: center;
        }
        
        .hero h1 {
            color: white;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* Content Sections */
        .content-section {
            padding: 80px 0;
            background: white;
        }
        
        .content-section.alternate {
            background: var(--light);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Process Section */
        .process {
            padding: 100px 0;
            background: var(--light);
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 0 20px;
            position: relative;
            margin-bottom: 30px;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .step h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(rgba(42, 93, 138, 0.9), rgba(42, 93, 138, 0.9)), url('https://images.unsplash.com/photo-1631685200082-9f7862d4bd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
            padding: 100px 0;
            text-align: center;
            color: white;
        }
        
        .cta h2 {
            color: white;
        }
        
        .cta h2:after {
            left: 50%;
            transform: translateX(-50%);
            background: var(--secondary);
        }
        
        .cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }/* End custom CSS */