﻿.full-width-breakout-sidebyside {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #fff;
}

.side-by-side-features {
    padding: 5rem 0;
    background-color: #fff;
    
}

.features-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

    .feature-block.reverse {
        flex-direction: row-reverse;
    }

.feature-text {
    flex: 1;
    min-width: 280px;
}

    .feature-text h3 {
        font-size: 2rem;
        font-weight: 700;
        color: #423E3B !important;
        margin-bottom: 1rem;
    }

    .feature-text p {
        font-size: 1.125rem;
        color: #423E3B !important;
        line-height: 1.6;
    }

.feature-image {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

    .feature-image img {
        width: 100%;
        max-width: 500px;
        border-radius: 1rem;
        object-fit: cover;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
.features-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #423E3B !important;
    margin-bottom: 3rem;
    text-align:center;
}