/* === safety-core.css === */

.sc-section {
    background: linear-gradient(170deg, #507989 20%, #074158 80%);
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* ── Text content ────────────────────────────────────────── */
.sc-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 40px 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sc-heading {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    line-height: 60px;
    margin: 0 0 28px;
}

.sc-body {
    font-size: 20px;
    line-height: 28px;
    color: #f2f2f2;
    margin: 0 0 36px;
    max-width: 1150px;
    text-align: center;
}

/* ── Know More button ────────────────────────────────────── */
.sc-btn {
    display: inline-block;
    background: #0a2e38;
    color: #f2f2f2;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 16px 48px;
    border-radius: 40px;
    text-decoration: none;
    border: none;
    transition:
        background 0.25s,
        transform 0.2s;
    margin-bottom: -130px;
}

.sc-btn:hover {
    background: #e8521a;
    transform: translateY(-2px);
}

/* ── Line-art GIF ────────────────────────────────────────── */
.sc-illustration {
    width: 100%;
    max-width: 1200px;
    padding: 0;
    margin: 0 auto;
    line-height: 0;
    position: relative;
    z-index: 2;
}

.sc-illustration img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* multiply removes the dark/black background from GIF —
       black pixels become transparent on the teal bg */
    mix-blend-mode: lighten;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .sc-content {
        padding: 50px 28px 28px;
    }
    .sc-heading {
        font-size: 1.3rem;
    }
    .sc-body {
        font-size: 0.9rem;
    }
}
