/* MAIN WRAPPER */
#engagement-page {
    width: 100%;
    overflow-x: hidden;
}

/* MAIN SECTION */
.engagement-hero {
    position: relative;
    padding: 80px 0 120px;
    text-align: center;
}

/* Decorative background */
.eng-left-img,
.eng-right-img {
    position: absolute;
    top: 18%;
    opacity: 0.12;
    width: 320px;
    z-index: 0;
}

.eng-left-img { left: 0; }
.eng-right-img { right: 0; }

/* Title + Subtitle */
.eng-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 18px;
}

.eng-subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* Number section */
.eng-number {
    margin-top: 10px;
}
.eng-number h2 {
    font-size: 70px;
    color: #C40000;
    margin: 0;
}
.eng-number p {
    margin-top: -8px;
    font-size: 20px;
    color: #C40000;
}

/* BLOCKS SECTION:
   Make the width similar to the title (≈700px).
*/
.eng-blocks {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 70px;
    position: relative;
    z-index: 10;

    max-width: 800px;   /* ⬅️ new: same width feel as the title section */
    margin-left: auto;  /* center it */
    margin-right: auto; /* center it */

    padding: 0 20px;
}

/* Feature row */
.eng-item {
    display: flex;
    align-items: center;
    gap: 40px;

    width: 100%;       /* ⬅️ new: full width inside the smaller container */
    max-width: none;   /* ⬅️ remove the old 1100px limit */

    text-align: left;
}


/* Reverse (image right, text left) */
.eng-item.reverse {
    flex-direction: row-reverse;
}

/* Icon circle */
.eng-icon {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 180px;
    background: #c40000; /* fallback if image has transparent background */
    padding: 14px; /* keep icon centered if it's not full-bleed */
    box-sizing: border-box;
}

/* Text block */
.eng-text {
    flex: 1 1 auto;
    text-align: left;
}

.eng-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 500;
}

.eng-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Small screens: stack vertically, keep alternate order as image above text */
@media (max-width: 900px) {
    .eng-item,
    .eng-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .eng-item.reverse .eng-text,
    .eng-item .eng-text {
        text-align: center;
    }

    .eng-icon {
        width: 140px;
        height: 140px;
        flex: 0 0 140px;
        margin-bottom: 18px;
    }

    .eng-blocks {
        gap: 40px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .eng-icon {
        width: 120px;
        height: 120px;
        flex: 0 0 120px;
    }

    .eng-title {
        font-size: 36px;
    }

    .eng-number h2 {
        font-size: 48px;
    }
}
