/* =========================================
   GLOBAL RESET - Version 3
========================================= */
html body {
    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================
   HEADER FIX
========================================= */
.navbar-brand {
    font-size: 15px !important;
    font-weight: 600 !important;
    max-width: 60% !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.navbar {
    padding: 6px 10px !important;
}

/* =========================================
   HERO SECTION
========================================= */
.sectionBlockLayout {
    position: relative;
    margin: 10px !important;
}

.sectionBlockLayout img {
    height: 160px !important;
    object-fit: cover !important;
    border-radius: 14px !important;
}

/* HERO TEXT */
.sectionBlockLayout h1,
.sectionBlockLayout h2 {
    font-size: 16px !important;
    line-height: 1.3 !important;
    text-align: center !important;
    padding: 0 10px !important;
    color: white !important;
}

.sectionBlockLayout p {
    font-size: 12px !important;
    text-align: center !important;
    color: white !important;
}

/* OVERLAY FOR READABILITY */
.sectionBlockLayout::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    border-radius: 14px;
}

/* =========================================
   CONTENT (SAFE — DOES NOT BREAK GRID)
========================================= */
.container {
    padding-left: 12px !important;
    padding-right: 12px !important;
}

/* =========================================
   MISSION SECTION
========================================= */
h2, .h2 {
    font-size: 18px !important;
    text-align: center !important;
    margin-top: 15px !important;
}

p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    text-align: left !important;
}

li {
    font-size: 14px !important;
    margin-bottom: 8px !important;
}

/* =========================================
   MOBILE ONLY
========================================= */
@media (max-width: 768px) {

    .navbar-brand {
        font-size: 14px !important;
        max-width: 55% !important;
    }

    .sectionBlockLayout img {
        height: 150px !important;
    }

    .sectionBlockLayout h1,
    .sectionBlockLayout h2 {
        font-size: 15px !important;
    }

    p {
        font-size: 13px !important;
    }

    li {
        font-size: 13px !important;
    }
}