/* =========================
   Base Layout
   ========================= */

.staggered-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.staggered-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

/* =========================
   Text Blocks
   ========================= */

.staggered-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.staggered-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.staggered-text ul {
    margin-left: 20px;
    line-height: 1.8;
}

.staggered-text li {
    color: #444;
}

/* =========================
   Image Blocks
   ========================= */

.staggered-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.staggered-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.staggered-image:hover img {
    transform: scale(1.05);
}

/* =========================
   Alternating Layout
   ========================= */

/* Default: Text | Image */
.staggered-row.text-image {
    grid-template-areas: "text image";
}

.staggered-row.text-image .staggered-text {
    grid-area: text;
}

.staggered-row.text-image .staggered-image {
    grid-area: image;
}

/* Image | Text */
.staggered-row.image-text {
    grid-template-areas: "image text";
}

.staggered-row.image-text .staggered-text {
    grid-area: text;
}

.staggered-row.image-text .staggered-image {
    grid-area: image;
}

/* =========================
   CTA Buttons
   ========================= */

.staggered-text .cta-button {
    display: inline-block;
    padding: 12px 26px;
    background-color: #4CAF50;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.staggered-text .cta-button:hover {
    background-color: #43a047;
    transform: translateY(-2px);
}

/* =========================
   Responsive Adjustments
   ========================= */

@media (max-width: 900px) {
    .staggered-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .staggered-row.text-image,
    .staggered-row.image-text {
        grid-template-areas:
            "text"
            "image";
    }

    .staggered-text h2 {
        font-size: 1.8rem;
    }
}

.ErosionBox{
background-color: #f7f7f7;
padding: 25px;;
border-radius:6px;
border-left:4px solid #03a9f4;
width:80%;
margin:auto;
margin-bottom:20px;
}
.ErosionBoxTitle{
    font-size:1.4rem;
    margin-bottom:10px;
    font-weight:600;
}