/* Force full width on elementor column if placed inside one */
.elementor-widget-full_width_split_content_1683 {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.fwsc-wrapper {
    display: flex;
    width: 100%;
    min-height: 600px;
    font-family: sans-serif;
}

.fwsc-image-side {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.fwsc-image-side img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fwsc-content-side {
    width: 50%;
    display: flex;
}

.fwsc-content {
    background-color: #1E3A5F;
    width: 100%;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.fwsc-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #EC6F1F;
}

.fwsc-title {
    color: #FFFFFF;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.fwsc-description {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.fwsc-description p {
    margin-bottom: 16px;
}

.fwsc-description p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Reset the full viewport width trick for mobile if needed, or keep it depending on theme setup */
    .elementor-widget-full_width_split_content_1683 {
        width: 100%;
        left: auto;
        right: auto;
        margin-left: 0;
        margin-right: 0;
    }

    .fwsc-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .fwsc-image-side {
        width: 100%;
        height: 400px;
        min-height: 400px;
    }

    .fwsc-image-side img {
        position: relative;
        height: 100%;
    }

    .fwsc-content-side {
        width: 100%;
    }

    .fwsc-content {
        padding: 40px 24px;
    }

    .fwsc-title {
        font-size: 32px;
    }
}