.elementor-kit-7{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Main Container */
.fw-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F8F9FD;
    padding: 80px 5%;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden; 
    min-height: 600px;
    box-sizing: border-box;
    position: relative;
}

/* Left Side - Content */
.fw-content {
    flex: 1;
    max-width: 500px;
    z-index: 2; 
    padding-right: 40px;
}

.fw-icon {
    display: inline-block;
    background-color: #E6F7F4;
    padding: 12px;
    border-radius: 50%;
    margin-bottom: 24px;
}

.fw-icon svg {
    width: 24px;
    height: 24px;
    color: #00Cca7;
    display: block;
}

.fw-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #1A1A2E;
    margin: 0 0 24px 0;
    font-weight: 700;
}

.fw-paragraph {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6B7280;
    margin: 0 0 40px 0;
}

/* Blue Button */
.fw-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2563EB;
    color: white !important;
    
    /* NUCLEAR OPTION FOR UNDERLINES */
    text-decoration: none !important; 
    border: none !important; 
    border-bottom: none !important;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
    background-image: none !important;
    
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fw-button:hover, 
.fw-button:focus, 
.fw-button:active,
.fw-button:visited {
    background-color: #1d4ed8;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
    text-decoration: none !important; 
    border-bottom: none !important;
}

.fw-button::after, 
.fw-button::before {
    display: none !important; 
    content: none !important;
}

/* Right Side - Images */
.fw-visuals {
    flex: 1.2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* Shared Phone Styles */
.fw-phone-mockup {
    position: relative;
    width: 260px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 8px solid #ffffff;
    background-color: #fff;
    transition: transform 0.5s ease;
    overflow: hidden;
}

.fw-phone-mockup img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
}

/* Specific Positioning */
.fw-phone-back {
    transform: translateY(-20px);
    z-index: 1;
}

.fw-phone-front {
    transform: translateY(20px);
    z-index: 1;
}

/* Hover Effect */
.fw-visuals:hover .fw-phone-back {
    transform: translateY(-25px);
}

.fw-visuals:hover .fw-phone-front {
    transform: translateY(25px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .fw-container {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
        height: auto;
    }

    .fw-content {
        margin-bottom: 60px;
        padding-right: 0;
    }

    .fw-headline {
        font-size: 2.5rem;
    }

    .fw-visuals {
        width: 100%;
        flex-direction: row;
        gap: 20px;
    }
    
    .fw-phone-mockup {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .fw-visuals {
        flex-direction: column;
        gap: 30px;
    }
    
    .fw-phone-mockup {
        width: 240px;
    }

    .fw-phone-back, .fw-phone-front {
        transform: none !important;
    }
}/* End custom CSS */