/* ============================================= */
/* === Measurable Results Section            === */
/* ============================================= */
.measurable-results {
    background-color: #3E593C; /* Dark green background */
    color: #fff;
    padding: 60px 0;
    text-align: center; /* Center align section title */
}

.measurable-results h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: 600;
}

.results-grid-container { /* Wrapper for the grid and the timeline-like line */
    position: relative;
    padding: 0 5%; /* Horizontal padding to not let line touch edges */
}

.results-grid-container::before { /* The horizontal line */
    content: '';
    position: absolute;
    left: 5%;
    right: 5%;
    top: 40px; /* Positioned to align with the center of icon containers */
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white line */
    z-index: 1; /* Behind icon containers */
}

.results-grid { /* Grid layout for the 4 result items */
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns on desktop */
    gap: 30px;
    position: relative;
    z-index: 2; /* Above the line */
}

.result-item { /* Each individual result item */
    text-align: center;
    position: relative;
}

.icon-wrapper { /* Optional wrapper for icon container if more complex styling needed */
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.icon-container { /* The circular container for each icon in this section */
    background-color: #fff;       /* White background */
    border: 2px solid #3E593C;  /* Border color matching section background */
    border-radius: 50%;         /* Makes it circular */
    padding: 15px;
    display: inline-flex;       /* Allows centering of content (the icon) */
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    position: relative;
    z-index: 3;                 /* Above the line */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.icon-container img { /* The SVG icon itself */
    width: 36px;
    height: 36px;
    /* color: #3E593C; /* Target color for SVGs if they use currentColor (Not needed if SVG has its own fill) */
}

.result-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.result-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* --- Measurable Results Section (Tablet: max-width: 992px) --- */
@media (max-width: 992px) {
    .measurable-results h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .results-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        gap: 40px 30px; /* row-gap column-gap */
    }
    .results-grid-container::before {
        display: none; /* Hide line for 2-column layout as it might not align well */
    }
    .icon-container {
        width: 70px;
        height: 70px;
        padding: 12px;
    }
    .icon-container img {
        width: 32px; /* Slightly smaller icon for smaller container */
        height: 32px;
    }
}

/* --- Measurable Results Section (Mobile: max-width: 768px) --- */
@media (max-width: 768px) {
    .measurable-results h2 {
        font-size: 1.8rem;
    }
    .results-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 35px;
    }
    .icon-wrapper {
      margin-bottom: 15px;
    }
    .icon-container { /* Adjust if needed for mobile, current tablet size might be okay */
        width: 65px;
        height: 65px;
    }
    .icon-container img {
        width: 30px;
        height: 30px;
    }
    .result-item h3 {
        font-size: 1.2rem;
    }
     .result-item p {
        font-size: 0.9rem;
    }
}