/* WHY US SECTION LAYOUT */
.section-why-us {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    /* Match PDR section */
    width: 100%;
    /* max-width removed here as it is handled by global wrapper */
    margin: 0 auto;
    /* Changed from 40px to 0 - spacing handled by sections-spacing.css */
    overflow: hidden;
    /* Contain children */
    border-radius: 20px;
    /* Optional: adds a nice touch if centered */
}

@media (min-width: 1025px) {
    .section-why-us {
        flex-direction: row;
        min-height: 600px;
        /* Reduced specific height constraint */
        align-items: stretch;
    }
}

/* LEFT COLUMN: IMAGE */
.why-us-image {
    width: 100%;
    position: relative;
    min-height: 300px;
}

@media (min-width: 1025px) {
    .why-us-image {
        width: 45%;
        /* Slightly smaller image */
        flex-shrink: 0;
    }
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RIGHT COLUMN: CONTENT */
.why-us-content {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align to top */
}

@media (min-width: 1025px) {
    .why-us-content {
        width: 55%;
        /* More space for text */
        padding: 60px 40px;
        /* Reduced vertical padding to move title up */
    }
}

.why-us-content h2 {
    font-family: "Oswald", sans-serif;
    font-size: 42px;
    /* Slightly smaller to fit better */
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    /* Enhance top position */
    margin-bottom: 10px;
    text-transform: uppercase;
}

.why-us-subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: #e71d36;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 600;
}

/* FEATURE LIST */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* ICON STYLING */
.feature-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    /* Adjusted size */
    height: 50px;
    background-color: #e71d36;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed Border */
}

.feature-icon-wrapper img {
    width: 24px;
    height: 24px;
    /* Force icon to WHITE. Needed because SVGs are red/colored by default */
    filter: brightness(0) invert(1);
}

/* TEXT STYLING */
.feature-text h3 {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.feature-text p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #a8adb7;
    line-height: 1.5;
    margin: 0;
}