.elementor-10308 .elementor-element.elementor-element-fb15352{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:479px){.elementor-10308 .elementor-element.elementor-element-fb15352{--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-10308 .elementor-element.elementor-element-95c55ce > .elementor-widget-container{padding:0px 0px 0px 0px;}}@media(min-width:480px){.elementor-10308 .elementor-element.elementor-element-fb15352{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-95c55ce *//* Fix for desktop responsive mode - add to your CSS */
/* Ensures proper centering and prevents excessive whitespace */

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Container fixes for all sections */
.container,
.promo-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero section specific fix */
.hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 80px;
    box-sizing: border-box;
}

.hero .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Fix for responsive mode centering */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 440px;
        margin: 0 auto;
    }
}

/* Ensure the viewport width is respected in emulation mode */
@media screen and (max-width: 480px) {
    .container,
    .promo-container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 30px 0 40px;
        min-height: 100vh;
    }
}

/* Prevents horizontal scroll issues */
* {
    max-width: 100%;
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}/* End custom CSS */