.elementor-1417 .elementor-element.elementor-element-2955b07d{padding:0px 0px 0px 0px;}.elementor-bc-flex-widget .elementor-1417 .elementor-element.elementor-element-56004694.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-1417 .elementor-element.elementor-element-56004694.elementor-column.elementor-element[data-element_type="column"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}@media(max-width:767px){.elementor-1417 .elementor-element.elementor-element-56004694{width:100%;}.elementor-bc-flex-widget .elementor-1417 .elementor-element.elementor-element-56004694.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-1417 .elementor-element.elementor-element-56004694.elementor-column.elementor-element[data-element_type="column"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}}/* Start custom CSS for html, class: .elementor-element-2229909 */:root {
            --primary-blue: #1a5f9c;
            --dark-blue: #1a2542;
            --light-blue: #4a7fb5;
            --very-light-blue: #e5eef7;
            --white: #ffffff;
            --off-white: #f5f8fb;
            --text-dark: #333333;
            --text-light: #666666;
        }
        
 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.6;
        }
        
        /* Hero container */
        .hero-container {
            width: 100%;
            padding: 5rem 2rem;
            background-color: var(--off-white);
        }
        
        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
        }
        
        /* Hero content */
        .hero-content {
            flex: 1;
            padding-right: 40px;
        }
        
        .hero-subtitle {
            font-size: 18px;
            margin-bottom: 10px;
            font-weight: 400;
            color: var(--primary-blue);
        }
        
        .hero-title {
            font-size: 60px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--dark-blue);
        }
        
        .hero-description {
            font-size: 18px;
            line-height: 1.5;
            margin-bottom: 30px;
            color: var(--text-light);
        }
        
        /* Image container */
        .hero-image-container {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }
        
        .hero-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            object-fit: cover;
        }
        
        /* Button styles */
        .button-container {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            column-gap: 0.5em;
            font-weight: 700;
            text-align: center;
            padding: 15px 24px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(26, 37, 66, 0.15);
            white-space: nowrap;
        }
        
        .button-primary {
            background-color: var(--primary-blue);
            color: var(--white);
        }
        
        .button-primary:hover {
            background-color: var(--dark-blue);
            color: var(--white);
            box-shadow: 0 3px 10px rgba(26, 95, 156, 0.3);
            transform: translateY(-1px);
        }
        
        .button-secondary {
            background-color: var(--very-light-blue);
            color: var(--dark-blue);
            border: 1px solid var(--light-blue);
        }
        
        .button-secondary:hover {
            background-color: var(--light-blue);
            color: var(--white);
            box-shadow: 0 3px 8px rgba(74, 127, 181, 0.25);
            transform: translateY(-1px);
        }
        
        /* Features list */
        .features-list {
            list-style-type: none;
            padding: 0;
        }
        
        .features-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
        }
        
        .features-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: bold;
        }
        
        /* Responsive styles */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 48px;
            }
            
            .hero-content {
                padding-right: 20px;
            }
        }
        
        @media (max-width: 900px) {
            .hero-inner {
                flex-direction: column;
                gap: 2rem;
            }
            
            .hero-content {
                padding-right: 0;
                order: 2;
                text-align: center;
            }
            
            .hero-image-container {
                order: 1;
                justify-content: center;
                width: 100%;
            }
            
            .hero-image {
                max-width: 100%;
                height: auto;
            }
            
            .button-container {
                justify-content: center;
            }
            
            .features-list {
                display: inline-block;
                text-align: left;
            }
        }
        
        @media (max-width: 768px) {
            .hero-container {
                padding: 4rem 1.5rem;
            }
            
            .hero-title {
                font-size: 42px;
            }
            
            .button-container {
                flex-direction: column;
                align-items: center;
                width: 100%;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .button {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero-container {
                padding: 3rem 1rem;
            }
            
            .hero-title {
                font-size: 32px;
                font-weight: 800;
                margin-bottom: 20px;
            }
            
            .hero-subtitle {
                font-size: 15px;
                font-weight: 400;
            }
            
            .hero-description {
                font-size: 15px;
            }
            
            .features-list li {
                font-size: 15px;
                font-weight: 500;
                margin-bottom: 12px;
                padding-left: 25px;
            }
            
            .features-list li:before {
                font-size: 14px;
            }
            
            .button {
                padding: 14px 20px;
                font-size: 0.9rem;
                white-space: normal;
                text-align: center;
                line-height: 1.4;
                font-weight: 600;
            }
            
            .button-container {
                margin-bottom: 30px;
            }
        }/* End custom CSS */