.snet-fullwidth .coverage-intro .container  {
    background: linear-gradient(135deg, #f9fff9 0%, #eaf4ff 100%);
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
    padding: clamp(3rem, 6vw, 6rem) 0;
    padding-left: clamp(15px, 4vw, 60px);
    padding-right: clamp(15px, 4vw, 60px);
}

/* ROW */
.coverage-intro .row {
    align-items: center;
}

/* LEFT TEXT COLUMN */
.coverage-texts {
    text-align: left;
}

/* HEADINGS */
.coverage-heading {
    position: relative;
    display: inline-block;
    color: #000248;
    font-size: clamp(1.75rem, 4vw, 3.5rem);
    line-height: 1.1;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.coverage-heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: clamp(40px, 6vw, 60px);
    height: 3px;
    background: #00e291;
    border-radius: 3px;
}

.coverage-subheading {
    font-size: clamp(1.1rem, 2.8vw, 2rem);
    line-height: 1.3;
    font-weight: 500;
    color: #00aff0;
    margin-top: 0.75rem;
}

/* DESCRIPTION */
.coverage-description {
    color: #494e9f;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    font-weight: 400;
    margin-top: 1.25rem;
    max-width: 600px;
}

/* BUTTON */
a.coverage-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: clamp(1.25rem, 3vw, 2rem);
    min-height: 52px;
    padding: 0.9rem 2rem;
    background-color: #00aff0;
    color: #fff;
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,175,240,0.25);
    animation: pulseGlowCoverage 3s infinite;
    white-space: normal;
}

a.coverage-btn:hover,
a.coverage-btn:focus,
a.coverage-btn:active {
    background: #0088c2;
    box-shadow: 0 0 15px rgba(0,175,240,0.4);
    transform: translateY(-2px);
    color: #fff;
}

/* GLOW ANIMATION */
@keyframes pulseGlowCoverage {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0,175,240,0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0,175,240,0.6);
    }
}

/* IMAGE */
.coverage-img {
    text-align: center;
}

.coverage-img img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.coverage-img img:hover {
    transform: scale(1.03);
}

/* LARGE DESKTOPS */
@media (min-width: 1400px) {
    .coverage-description {
        max-width: 650px;
    }

    .coverage-img img {
        max-width: 650px;
    }
}

/* TABLETS */
@media (max-width: 991.98px) {

    .coverage-texts {
        text-align: center;
    }

    .coverage-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .coverage-description {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .coverage-img {
        margin-bottom: 2rem;
    }

    .coverage-img img {
        max-width: 500px;
    }
}

/* MOBILE */
@media (max-width: 767.98px) {

    [data-aos] {
        transition-delay: 0ms !important;
    }

    .coverage-description {
        font-size: 0.95rem;
    }

    .coverage-btn {
        width: 100%;
        max-width: 320px;
    }

    .coverage-img img {
        max-width: 100%;
    }
}