/* =========================================================
   SUSTAINABLE CITIZENRY INITIATIVES
   HERO / FIRST BODY SECTION
   ========================================================= */

:root {
    --sci-sky: #6ec6e8;
    --sci-sky-light: #eaf8fd;
    --sci-blue: #238db5;
    --sci-blue-dark: #12617e;

    --sci-green: #078C03;

    --sci-white: #ffffff;
    --sci-text: #173b48;
    --sci-muted: #5e737b;
    --sci-border: rgba(35, 141, 181, 0.15);
}

```css
/* =========================================================
   GLOBAL WEBSITE RESET
   Prevents sections and elements from overlapping
========================================================= */

html {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;

    overflow-x: hidden;
    overflow-y: auto;

    position: relative;

    box-sizing: border-box;

    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;

    background: #ffffff;
    color: #294b57;
}

/* Apply box sizing everywhere */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Prevent images from pushing outside containers */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent long text from breaking layouts */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* =========================================================
   SECTIONS
========================================================= */

section {
    position: relative;
    width: 100%;
    clear: both;
    display: block;
}

/* Prevent normal sections from collapsing */
section::after {
    content: "";
    display: table;
    clear: both;
}

/* =========================================================
   CONTAINERS
========================================================= */

.container,
.sci-container,
.sci-header-container,
.sci-impact-container,
.sci-clean-footer-container {
    max-width: 100%;
}

/* =========================================================
   FLEX / GRID SAFETY
========================================================= */

.flex,
[class*="container"],
[class*="grid"] {
    min-width: 0;
}

[class*="grid"] > *,
[class*="container"] > * {
    min-width: 0;
}

/* =========================================================
   ABSOLUTE ELEMENT SAFETY
========================================================= */

/*
   Absolute elements remain inside their section when
   the parent section has position: relative.
*/

section {
    isolation: isolate;
}

/* =========================================================
   LINKS / BUTTONS
========================================================= */

a,
button {
    max-width: 100%;
}

button {
    font-family: inherit;
}

/* =========================================================
   FOOTER SAFETY
========================================================= */

footer {
    position: relative;
    width: 100%;
    clear: both;
    display: block;
    z-index: 10;
}

/* Make sure footer starts after previous content */
.sci-clean-footer {
    clear: both;
    position: relative;
}

/* =========================================================
   MOBILE OVERFLOW PROTECTION
========================================================= */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    section,
    header,
    footer {
        max-width: 100%;
    }
}


/* Hero wrapper */
.sci-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--sci-white);
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

/* Decorative sky-blue background */
.sci-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -150px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: var(--sci-sky-light);
    z-index: 0;
}

.sci-hero::after {
    content: "";
    position: absolute;
    bottom: -240px;
    left: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(110, 198, 232, 0.10);
    z-index: 0;
}

/* Main container */
.sci-hero-container {
    width: min(1180px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
    padding: 70px 0;
}

/* LEFT CONTENT */
.sci-hero-content {
    position: relative;
    z-index: 3;
}

.sci-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--sci-blue-dark);
    background: var(--sci-sky-light);
    border: 1px solid rgba(35, 141, 181, 0.15);
    padding: 9px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.sci-hero-label::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--sci-sky);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(110, 198, 232, 0.18);
}

.sci-hero-title {
    margin: 0 0 22px;
    color: var(--sci-text);
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
}

.sci-hero-title span {
    color: var(--sci-blue);
}

.sci-hero-description {
    max-width: 600px;
    margin: 0 0 30px;
    color: var(--sci-muted);
    font-size: 17px;
    line-height: 1.85;
}

/* Location */
.sci-hero-location {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 32px;
    color: var(--sci-blue-dark);
    font-size: 14px;
    font-weight: 600;
}

.sci-hero-location-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sci-sky-light);
    color: var(--sci-blue);
    border-radius: 50%;
}

/* Buttons */
.sci-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.sci-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 25px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.sci-btn-primary {
    color: var(--sci-white);
    background: var(--sci-blue);
    box-shadow: 0 10px 25px rgba(35, 141, 181, 0.22);
}

.sci-btn-primary:hover {
    color: var(--sci-white);
    background: var(--sci-blue-dark);
    transform: translateY(-3px);
}

.sci-btn-secondary {
    color: var(--sci-blue-dark);
    background: var(--sci-white);
    border: 1px solid var(--sci-border);
}

.sci-btn-secondary:hover {
    color: var(--sci-white);
    background: var(--sci-sky);
    border-color: var(--sci-sky);
    transform: translateY(-3px);
}

/* =========================================================
   RIGHT IMAGE AREA
   ========================================================= */

.sci-hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sci-hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 540px;
    height: 500px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(22, 91, 116, 0.18);
    border: 8px solid var(--sci-white);
}

.sci-hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Image overlay */
.sci-hero-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(18, 97, 126, 0.02) 40%,
        rgba(18, 97, 126, 0.55) 100%
    );
}

/* Floating impact card */
.sci-impact-card {
    position: absolute;
    left: -35px;
    bottom: 35px;
    width: 225px;
    padding: 20px;
    background: var(--sci-white);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(20, 70, 85, 0.17);
    border-left: 4px solid var(--sci-sky);
    z-index: 4;
}

.sci-impact-card small {
    display: block;
    color: var(--sci-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.sci-impact-card strong {
    display: block;
    color: var(--sci-text);
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 6px;
}

.sci-impact-card p {
    margin: 0;
    color: var(--sci-muted);
    font-size: 12px;
    line-height: 1.5;
}

/* Floating circle */
.sci-hero-circle {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--sci-sky);
    border: 8px solid var(--sci-white);
    box-shadow: 0 12px 30px rgba(35, 141, 181, 0.20);
    z-index: 4;
}

.sci-hero-circle::before {
    content: "🌱";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* =========================================================
   BOTTOM IMPACT STRIP
   ========================================================= */

.sci-hero-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--sci-blue-dark);
    z-index: 5;
}

.sci-hero-strip-inner {
    width: min(1180px, 92%);
    margin: auto;
    min-height: 75px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.sci-strip-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: var(--sci-white);
    font-size: 13px;
    font-weight: 600;
    border-right: 1px solid rgba(255,255,255,0.16);
}

.sci-strip-item:last-child {
    border-right: none;
}

.sci-strip-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {

    .sci-hero {
        min-height: auto;
    }

    .sci-hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 65px 0 110px;
    }

    .sci-hero-content {
        text-align: center;
    }

    .sci-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .sci-hero-location {
        justify-content: center;
    }

    .sci-hero-buttons {
        justify-content: center;
    }

    .sci-hero-visual {
        min-height: 450px;
    }

    .sci-hero-image-frame {
        height: 430px;
    }

    .sci-impact-card {
        left: 10px;
    }

    .sci-hero-circle {
        right: 5px;
    }
}

@media (max-width: 650px) {

    .sci-hero-container {
        width: 90%;
        padding-top: 45px;
    }

    .sci-hero-title {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .sci-hero-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .sci-hero-image-frame {
        height: 350px;
        border-width: 5px;
        border-radius: 20px;
    }

    .sci-impact-card {
        left: 5px;
        bottom: 15px;
        width: 190px;
        padding: 15px;
    }

    .sci-impact-card strong {
        font-size: 17px;
    }

    .sci-hero-circle {
        width: 65px;
        height: 65px;
        border-width: 5px;
    }

    .sci-hero-circle::before {
        font-size: 23px;
    }

    .sci-hero-strip-inner {
        grid-template-columns: 1fr 1fr;
        padding: 8px 0;
    }

    .sci-strip-item {
        min-height: 52px;
        font-size: 11px;
        padding: 5px;
        border-right: none;
    }

    .sci-btn {
        width: 100%;
    }
}

/* =========================================================
   SUSTAINABLE CITIZENRY INITIATIVES
   NGO HEADER + NAVIGATION
   ========================================================= */

:root {
    --sci-sky: #6ec6e8;
    --sci-sky-light: #eaf8fd;
    --sci-blue: #238db5;
    --sci-blue-dark: #12617e;
    --sci-white: #ffffff;
    --sci-text: #173b48;
    --sci-muted: #607982;
}

/* =========================
   HEADER WRAPPER
   ========================= */

.sci-header {
    position: relative;
    width: 100%;
    z-index: 1000;
    background: var(--sci-white);
    box-shadow: 0 3px 20px rgba(18, 97, 126, 0.08);
}

/* =========================
   TOP INFORMATION BAR
   ========================= */

.sci-topbar {
    background: var(--sci-blue-dark);
    color: rgba(255,255,255,0.9);
    min-height: 38px;
}

.sci-topbar-inner {
    width: min(1180px, 92%);
    margin: auto;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sci-topbar-left,
.sci-topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.sci-topbar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 500;
}

.sci-topbar-item i {
    color: var(--sci-sky);
}

.sci-social {
    display: flex;
    align-items: center;
    gap: 13px;
}

.sci-social a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s ease;
}

.sci-social a:hover {
    color: var(--sci-sky);
}

/* =========================
   MAIN NAVIGATION
   ========================= */

.sci-navbar {
    width: min(1180px, 92%);
    min-height: 86px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =========================
   LOGO / ORGANISATION NAME
   ========================= */

.sci-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    min-width: 250px;
}

.sci-brand-mark {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sci-sky-light);
    border: 2px solid rgba(110, 198, 232, 0.35);
    border-radius: 50%;
    color: var(--sci-blue);
    font-size: 23px;
}

.sci-brand-text {
    display: flex;
    flex-direction: column;
}

.sci-brand-name {
    color: var(--sci-text);
    font-size: 17px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.sci-brand-subtitle {
    color: var(--sci-blue);
    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* =========================
   NAVIGATION LINKS
   ========================= */

.sci-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sci-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 32px 13px;
    color: var(--sci-text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sci-nav a::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 20px;
    height: 2px;
    background: var(--sci-sky);
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.3s ease;
}

.sci-nav a:hover,
.sci-nav a.active {
    color: var(--sci-blue);
}

.sci-nav a:hover::after,
.sci-nav a.active::after {
    transform: scaleX(1);
}

/* =========================
   DONATE BUTTON
   ========================= */

.sci-donate-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 13px 18px !important;
    margin-left: 12px;
    color: var(--sci-white) !important;
    background: var(--sci-blue);
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(35, 141, 181, 0.20);
}

.sci-donate-btn::after {
    display: none !important;
}

.sci-donate-btn:hover {
    color: var(--sci-white) !important;
    background: var(--sci-blue-dark);
    transform: translateY(-2px);
}

.sci-donate-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sci-white);
    color: var(--sci-blue);
    border-radius: 50%;
    font-size: 11px;
}

/* =========================
   MOBILE BUTTON
   ========================= */

.sci-mobile-toggle {
    display: none;
    width: 43px;
    height: 43px;
    border: 1px solid rgba(35,141,181,0.2);
    background: var(--sci-sky-light);
    border-radius: 6px;
    color: var(--sci-blue);
    font-size: 20px;
    cursor: pointer;
}

/* =========================
   MOBILE MENU
   ========================= */

@media (max-width: 1050px) {

    .sci-navbar {
        min-height: 75px;
    }

    .sci-nav {
        gap: 0;
    }

    .sci-nav a {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 12px;
    }

    .sci-donate-btn {
        margin-left: 6px;
    }
}

@media (max-width: 850px) {

    .sci-topbar {
        display: none;
    }

    .sci-navbar {
        min-height: 72px;
    }

    .sci-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sci-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 12px 5%;
        background: var(--sci-white);
        box-shadow: 0 15px 30px rgba(18, 97, 126, 0.12);
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .sci-nav.show {
        display: flex;
    }

    .sci-nav a {
        padding: 15px 10px;
        border-bottom: 1px solid rgba(35,141,181,0.08);
    }

    .sci-nav a::after {
        display: none;
    }

    .sci-donate-btn {
        margin: 12px 0 5px;
        justify-content: center;
    }
}

@media (max-width: 500px) {

    .sci-navbar {
        width: 90%;
    }

    .sci-brand-mark {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .sci-brand-name {
        font-size: 14px;
    }

    .sci-brand-subtitle {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .sci-brand {
        min-width: 0;
    }
}



/* =========================================================
   SUSTAINABLE CITIZENRY INITIATIVES
   ELEGANT NGO HEADER
========================================================= */

:root {
    --sci-sky: #69c6e8;
    --sci-sky-dark: #319dbf;
    --sci-pale: #eefaff;
    --sci-navy: #163c4b;
    --sci-text: #294b57;
    --sci-muted: #70868e;
    --sci-white: #ffffff;
}


/* =========================================================
   HEADER
========================================================= */

.sci-main-header {
    width: 100%;
    position: relative;
    z-index: 9999;
    background: var(--sci-white);
}


/* =========================================================
   THIN TOP BAR
========================================================= */

.sci-utility-bar {
    height: 36px;
    background: var(--sci-navy);
    color: rgba(255,255,255,0.88);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 11px;
}

.sci-header-container {
    width: min(1240px, 92%);
    margin: 0 auto;
}

.sci-utility-bar .sci-header-container {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sci-utility-left,
.sci-utility-right {
    display: flex;
    align-items: center;
}

.sci-utility-left {
    gap: 15px;
}

.sci-utility-left i {
    color: var(--sci-sky);
    margin-right: 5px;
}

.sci-utility-divider {
    width: 1px;
    height: 13px;
    background: rgba(255,255,255,0.2);
}

.sci-utility-right {
    gap: 13px;
}

.sci-utility-right span {
    opacity: .65;
    margin-right: 4px;
}

.sci-utility-right a {
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: .25s ease;
}

.sci-utility-right a:hover {
    color: var(--sci-sky);
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.sci-navigation {
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid #e8f2f5;
}

.sci-nav-inner {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.sci-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
}

.sci-logo-symbol {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--sci-pale);
    border: 1px solid #d5f0f8;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 10px;
    gap: 3px;
}

/* Simple abstract leaf symbol */

.sci-logo-symbol span {
    display: block;
    width: 6px;
    background: var(--sci-sky);
    border-radius: 8px 8px 2px 2px;
    transform: rotate(-18deg);
}

.sci-logo-symbol span:nth-child(1) {
    height: 13px;
}

.sci-logo-symbol span:nth-child(2) {
    height: 20px;
    background: var(--sci-sky-dark);
    transform: rotate(0deg);
}

.sci-logo-symbol span:nth-child(3) {
    height: 15px;
    transform: rotate(18deg);
}


.sci-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.sci-logo-text strong {
    color: var(--sci-navy);
    font-family: "Georgia", serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.2px;
}

.sci-logo-text strong + strong {
    margin-top: 3px;
}

.sci-logo-text small {
    color: var(--sci-sky-dark);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: 7px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.sci-menu {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sci-menu > a {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: var(--sci-text);
    text-decoration: none;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    transition: .25s ease;
}


/* elegant underline */

.sci-menu > a:not(.sci-donate)::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 22px;
    height: 2px;
    background: var(--sci-sky);
    transform: scaleX(0);
    transform-origin: center;
    transition: .25s ease;
}

.sci-menu > a:not(.sci-donate):hover,
.sci-menu > a.active {
    color: var(--sci-sky-dark);
}

.sci-menu > a:not(.sci-donate):hover::after,
.sci-menu > a.active::after {
    transform: scaleX(1);
}


/* =========================================================
   DONATE BUTTON
========================================================= */

.sci-donate {
    margin-left: 17px;
    height: 43px !important;
    padding: 0 21px !important;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--sci-sky-dark);
    color: white !important;
    border-radius: 4px;
    transition: .25s ease;
}

.sci-donate:hover {
    background: var(--sci-navy);
    transform: translateY(-1px);
}

.sci-donate i {
    font-size: 10px;
    transition: .25s ease;
}

.sci-donate:hover i {
    transform: translateX(3px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.sci-menu-toggle {
    display: none;
    width: 43px;
    height: 40px;
    padding: 9px;
    border: 1px solid #dceef3;
    background: var(--sci-pale);
    border-radius: 4px;
    cursor: pointer;
}

.sci-menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--sci-navy);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.sci-mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #edf4f6;
    padding: 10px 5%;
}

.sci-mobile-menu.open {
    display: block;
}

.sci-mobile-menu a {
    display: block;
    padding: 14px 5px;
    color: var(--sci-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #edf4f6;
}

.sci-mobile-menu a.active {
    color: var(--sci-sky-dark);
}

.sci-mobile-donate {
    margin-top: 12px;
    text-align: center;
    color: white !important;
    background: var(--sci-sky-dark);
    border-radius: 4px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .sci-menu > a {
        padding: 0 9px;
        font-size: 12px;
    }

    .sci-donate {
        margin-left: 8px;
        padding: 0 15px !important;
    }
}


@media (max-width: 850px) {

    .sci-utility-bar {
        display: none;
    }

    .sci-nav-inner {
        height: 75px;
    }

    .sci-menu {
        display: none;
    }

    .sci-menu-toggle {
        display: block;
    }
}


@media (max-width: 480px) {

    .sci-header-container {
        width: 90%;
    }

    .sci-logo-symbol {
        width: 41px;
        height: 41px;
    }

    .sci-logo-text strong {
        font-size: 14px;
    }

    .sci-logo-text small {
        font-size: 7px;
        letter-spacing: 2px;
    }
}

```css
/* =========================================
   SCI INTRODUCTION SECTION
========================================= */

.sci-intro-section {
    position: relative;
    background: #ffffff;
    padding: 115px 0 95px;
    overflow: hidden;
    font-family: "Segoe UI", Arial, sans-serif;
}

.sci-intro-container {
    width: min(1180px, 90%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.92fr 1.08fr;

    gap: 95px;
    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.sci-intro-content {
    position: relative;
    z-index: 2;
}

.sci-section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;

    color: #319dbf;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.8px;
}

.sci-section-eyebrow span {
    width: 32px;
    height: 2px;

    display: inline-block;

    background: #69c6e8;
}


.sci-intro-content h2 {
    max-width: 520px;

    margin: 0 0 25px;

    color: #163c4b;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(40px, 4vw, 58px);

    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -1.8px;
}

.sci-intro-content h2 em {
    color: #319dbf;

    font-style: italic;

    font-weight: 400;
}


.sci-intro-lead {
    max-width: 535px;

    margin: 0 0 18px;

    color: #294b57;

    font-size: 18px;

    line-height: 1.75;

    font-weight: 500;
}


.sci-intro-text {
    max-width: 535px;

    margin: 0 0 32px;

    color: #70868e;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================
   BUTTON
========================================= */

.sci-outline-btn {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 14px 21px;

    border: 1px solid #b9dfe9;

    border-radius: 3px;

    color: #163c4b;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .5px;

    transition: all .3s ease;
}

.sci-outline-btn span {
    color: #319dbf;

    font-size: 20px;

    line-height: 0;

    transition: transform .3s ease;
}

.sci-outline-btn:hover {
    color: #ffffff;

    background: #319dbf;

    border-color: #319dbf;

    transform: translateY(-2px);
}

.sci-outline-btn:hover span {
    color: #ffffff;

    transform: translateX(5px);
}


/* =========================================
   IMAGE AREA
========================================= */

.sci-intro-visual {
    position: relative;

    min-height: 520px;

    padding: 0 18px 25px 0;
}


.sci-image-frame {
    position: relative;

    width: 100%;

    height: 500px;

    overflow: hidden;

    border-radius: 2px;

    background: #eaf8fd;
}


.sci-image-frame img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .7s ease;
}

.sci-image-frame:hover img {
    transform: scale(1.04);
}


.sci-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(18, 97, 126, 0.02) 45%,
            rgba(18, 97, 126, 0.22) 100%
        );
}


/* =========================================
   FLOATING IMPACT CARD
========================================= */

.sci-impact-card {
    position: absolute;

    left: -45px;

    bottom: 52px;

    width: 275px;

    padding: 20px 22px;

    display: flex;

    align-items: center;

    gap: 15px;

    background: #ffffff;

    border-left: 3px solid #69c6e8;

    box-shadow:
        0 15px 45px rgba(22, 60, 75, .12);
}


.sci-impact-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eefaff;

    color: #319dbf;

    font-size: 17px;
}


.sci-impact-card strong {
    display: block;

    margin-bottom: 4px;

    color: #163c4b;

    font-family: Georgia, serif;

    font-size: 15px;

    font-weight: 600;
}


.sci-impact-card span {
    display: block;

    color: #70868e;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================
   IMAGE DECORATION
========================================= */

.sci-visual-decoration {
    position: absolute;

    right: 0;

    bottom: 0;

    width: 105px;

    height: 105px;

    border-right: 2px solid #69c6e8;

    border-bottom: 2px solid #69c6e8;

    z-index: 3;
}


/* =========================================
   VALUES STRIP
========================================= */

.sci-intro-values {
    width: min(1180px, 90%);

    margin: 90px auto 0;

    padding-top: 30px;

    border-top: 1px solid #e4f0f3;

    display: grid;

    grid-template-columns: repeat(3, 1fr);
}


.sci-value {
    display: flex;

    align-items: center;

    gap: 17px;

    padding: 0 30px;

    border-right: 1px solid #e4f0f3;
}


.sci-value:first-child {
    padding-left: 0;
}


.sci-value:last-child {
    border-right: none;
}


.sci-value-number {
    color: #69c6e8;

    font-family: Georgia, serif;

    font-size: 15px;

    font-style: italic;
}


.sci-value strong {
    display: block;

    margin-bottom: 4px;

    color: #163c4b;

    font-family: Georgia, serif;

    font-size: 15px;

    font-weight: 600;
}


.sci-value small {
    color: #80939a;

    font-size: 10px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .sci-intro-section {
        padding: 85px 0 75px;
    }

    .sci-intro-container {
        grid-template-columns: 1fr 1fr;

        gap: 55px;
    }

    .sci-intro-content h2 {
        font-size: 42px;
    }

    .sci-intro-visual {
        min-height: 430px;
    }

    .sci-image-frame {
        height: 410px;
    }

    .sci-impact-card {
        left: -20px;

        bottom: 30px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .sci-intro-section {
        padding: 70px 0 60px;
    }

    .sci-intro-container {
        width: 90%;

        display: flex;

        flex-direction: column;

        gap: 55px;
    }

    .sci-intro-content h2 {
        font-size: 40px;

        letter-spacing: -1px;
    }

    .sci-intro-lead {
        font-size: 16px;
    }

    .sci-intro-visual {
        width: 100%;

        min-height: 390px;

        padding-right: 10px;
    }

    .sci-image-frame {
        height: 380px;
    }

    .sci-impact-card {
        left: 10px;

        bottom: 18px;

        width: calc(100% - 45px);
    }

    .sci-visual-decoration {
        width: 70px;

        height: 70px;
    }

    .sci-intro-values {
        width: 90%;

        margin-top: 65px;

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .sci-value,
    .sci-value:first-child {
        padding: 0 0 20px;

        border-right: none;

        border-bottom: 1px solid #e4f0f3;
    }

    .sci-value:last-child {
        border-bottom: none;
    }
}
```
```css
/* =========================================
   SCI IMPACT COUNTERS
========================================= */

.sci-counter-section {
    width: 100%;
    background: #f7fcfe;
    padding: 70px 0;
    border-top: 1px solid #e5f2f6;
    border-bottom: 1px solid #e5f2f6;
    box-sizing: border-box;
}

.sci-counter-container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.sci-counter-item {
    position: relative;
    text-align: center;
    padding: 10px 30px;
    box-sizing: border-box;

    border-right: 1px solid #dceef3;
}

.sci-counter-item:last-child {
    border-right: none;
}


/* ICON */

.sci-counter-icon {
    width: 50px;
    height: 50px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border: 1px solid #d9eef4;

    color: #319dbf;

    font-size: 18px;

    transition: all 0.3s ease;
}

.sci-counter-item:hover .sci-counter-icon {
    background: #319dbf;
    color: #ffffff;
    border-color: #319dbf;
    transform: translateY(-4px);
}


/* NUMBERS */

.sci-counter-number {
    display: flex;
    align-items: baseline;
    justify-content: center;

    margin-bottom: 8px;

    color: #163c4b;

    font-family: Georgia, "Times New Roman", serif;

    line-height: 1;
}

.sci-count {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: -1px;
}

.sci-plus {
    margin-left: 3px;

    color: #69c6e8;

    font-size: 24px;
    font-weight: 400;
}


/* TITLE */

.sci-counter-item h3 {
    margin: 0 0 8px;

    color: #294b57;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 16px;
    font-weight: 600;
}


/* DESCRIPTION */

.sci-counter-item p {
    max-width: 200px;

    margin: 0 auto;

    color: #80939a;

    font-family: "Segoe UI", Arial, sans-serif;

    font-size: 11px;

    line-height: 1.6;
}


/* TOP DECORATIVE LINE */

.sci-counter-item::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 25px;
    height: 2px;

    background: #69c6e8;

    transform: translateX(-50%);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .sci-counter-container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 45px;
    }

    .sci-counter-item:nth-child(2) {
        border-right: none;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .sci-counter-section {
        padding: 55px 0;
    }

    .sci-counter-container {
        width: 88%;
        grid-template-columns: 1fr;
    }

    .sci-counter-item {
        padding: 30px 10px;

        border-right: none;
        border-bottom: 1px solid #dceef3;
    }

    .sci-counter-item:last-child {
        border-bottom: none;
    }

    .sci-count {
        font-size: 42px;
    }
}
```
/* =========================================================
   SCI — OUR PEOPLE / TEAM SECTION
========================================================= */

.sci-people-section {
    position: relative;
    overflow: hidden;

    background: #ffffff;

    padding: 125px 0 120px;

    font-family: "Segoe UI", Arial, sans-serif;
}


/* =========================================================
   SUBTLE BACKGROUND
========================================================= */

.sci-people-section::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -250px;
    top: 80px;

    border-radius: 50%;

    background: #eefaff;

    pointer-events: none;
}

.sci-people-section::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -90px;
    bottom: 120px;

    border-radius: 50%;

    border: 1px solid #dff2f8;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.sci-people-container {
    width: min(1200px, 90%);
    margin: 0 auto;

    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADER
========================================================= */

.sci-people-header {
    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 65px;
}

.sci-people-heading {
    position: relative;
}

.sci-people-eyebrow {
    display: block;

    margin-bottom: 18px;

    color: #319dbf;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}

.sci-people-heading h2 {
    margin: 0;

    color: #163c4b;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 5vw, 67px);

    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -2.5px;
}

.sci-people-heading h2 em {
    color: #319dbf;

    font-style: italic;
}

.sci-people-intro {
    padding-bottom: 5px;
}

.sci-people-intro p {
    max-width: 420px;

    margin: 0 0 22px;

    color: #71878f;

    font-size: 14px;

    line-height: 1.9;
}

.sci-people-link {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: #163c4b;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .3px;

    transition: .3s ease;
}

.sci-people-link i {
    color: #319dbf;

    transition: .3s ease;
}

.sci-people-link:hover {
    color: #319dbf;
}

.sci-people-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   TEAM LAYOUT
========================================================= */

.sci-team-layout {
    display: grid;

    grid-template-columns: 1.05fr .95fr;

    gap: 25px;

    align-items: stretch;
}


/* =========================================================
   FEATURE PERSON
========================================================= */

.sci-person-feature {
    min-height: 620px;

    position: relative;

    overflow: hidden;

    background: #163c4b;
}

.sci-person-image {
    position: absolute;

    inset: 0;

    overflow: hidden;
}

.sci-person-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 1s cubic-bezier(.2,.8,.2,1);
}

.sci-person-feature:hover .sci-person-image img {
    transform: scale(1.045);
}


/* IMAGE OVERLAY */

.sci-person-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(10,35,44,.95) 0%,
            rgba(10,35,44,.40) 45%,
            rgba(10,35,44,.02) 80%
        );
}


/* NUMBER */

.sci-person-number {
    position: absolute;

    top: 28px;
    right: 30px;

    color: rgba(255,255,255,.8);

    font-family: Georgia, serif;

    font-size: 12px;

    letter-spacing: 2px;
}


/* FEATURE CONTENT */

.sci-person-feature-content {
    position: absolute;

    left: 45px;
    right: 45px;
    bottom: 40px;

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 40px;

    color: white;
}

.sci-person-role {
    display: block;

    margin-bottom: 10px;

    color: #8bd9ee;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2.5px;
}

.sci-person-feature-content h3 {
    margin: 0;

    color: white;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 40px;

    font-weight: 400;

    line-height: 1;
}

.sci-person-feature-content h3 strong {
    display: block;

    font-weight: 600;
}

.sci-person-feature-content p {
    width: 260px;

    margin: 0;

    color: rgba(255,255,255,.75);

    font-size: 11px;

    line-height: 1.75;
}


/* =========================================================
   TEAM GRID
========================================================= */

.sci-team-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}


/* =========================================================
   SMALL PERSON CARD
========================================================= */

.sci-person-card {
    position: relative;

    overflow: hidden;

    background: #f5fbfd;

    border: 1px solid #e3f0f4;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.sci-person-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(22,60,75,.10);
}


/* IMAGE */

.sci-person-card-image {
    position: relative;

    height: 220px;

    overflow: hidden;

    background: #e8f7fb;
}

.sci-person-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .7s ease;
}

.sci-person-card:hover img {
    transform: scale(1.06);
}


/* NUMBER */

.sci-person-card-image span {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 29px;
    height: 29px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.9);

    color: #319dbf;

    font-size: 9px;

    font-weight: 700;
}


/* CARD CONTENT */

.sci-person-card-content {
    padding: 19px 21px 22px;
}

.sci-person-card-content span {
    display: block;

    margin-bottom: 7px;

    color: #69c6e8;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;
}

.sci-person-card-content h3 {
    margin: 0;

    color: #163c4b;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 19px;

    font-weight: 600;
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.sci-people-bottom {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 25px;

    margin-top: 70px;
}

.sci-people-bottom-line {
    width: 70px;
    height: 1px;

    background: #b9e5f1;
}

.sci-people-bottom p {
    margin: 0;

    color: #81939a;

    font-size: 11px;

    letter-spacing: .5px;

    text-align: center;
}

.sci-people-bottom strong {
    color: #294b57;
}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

.sci-person-reveal {
    opacity: 0;

    transform: translateY(55px);

    transition:
        opacity .9s ease,
        transform 1s cubic-bezier(.2,.8,.2,1);
}

.sci-person-reveal.sci-person-visible {
    opacity: 1;

    transform: translateY(0);
}


/* STAGGER */

.sci-team-grid .sci-person-card:nth-child(1) {
    transition-delay: .10s;
}

.sci-team-grid .sci-person-card:nth-child(2) {
    transition-delay: .22s;
}

.sci-team-grid .sci-person-card:nth-child(3) {
    transition-delay: .34s;
}

.sci-team-grid .sci-person-card:nth-child(4) {
    transition-delay: .46s;
}

.sci-people-bottom {
    transition-delay: .60s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .sci-people-section {
        padding: 95px 0;
    }

    .sci-people-header {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 45px;
    }

    .sci-team-layout {
        grid-template-columns: 1fr;
    }

    .sci-person-feature {
        min-height: 580px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .sci-people-section {
        padding: 75px 0;
    }

    .sci-people-container {
        width: 90%;
    }

    .sci-people-heading h2 {
        font-size: 42px;

        letter-spacing: -1.5px;
    }

    .sci-team-grid {
        grid-template-columns: 1fr;
    }

    .sci-person-feature {
        min-height: 520px;
    }

    .sci-person-feature-content {
        left: 25px;
        right: 25px;
        bottom: 28px;

        display: block;
    }

    .sci-person-feature-content h3 {
        font-size: 34px;
    }

    .sci-person-feature-content p {
        width: auto;

        margin-top: 18px;
    }

    .sci-person-card-image {
        height: 300px;
    }

    .sci-people-bottom {
        gap: 12px;
        margin-top: 50px;
    }

    .sci-people-bottom-line {
        width: 25px;
    }

}

/* =========================================================
   SCI — REUSABLE FINAL CTA
========================================================= */

.sci-final-cta {
    position: relative;
    width: 100%;
    min-height: 620px;

    overflow: hidden;

    background: #163c4b;

    color: #ffffff;

    font-family: "Segoe UI", Arial, sans-serif;

    display: flex;
    flex-direction: column;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.sci-final-bg {
    position: absolute;
    inset: 0;

    z-index: 0;
}

.sci-final-bg img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transform: scale(1.04);

    transition: transform 8s ease;
}

.sci-final-cta:hover .sci-final-bg img {
    transform: scale(1.08);
}


/* =========================================================
   OVERLAY
========================================================= */

.sci-final-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(9,39,49,.97) 0%,
            rgba(12,48,61,.93) 38%,
            rgba(16,65,80,.72) 68%,
            rgba(16,65,80,.40) 100%
        );
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.sci-final-container {
    position: relative;

    z-index: 3;

    width: min(1180px, 90%);

    margin: auto;

    padding: 105px 0 95px;

    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 100px;

    align-items: center;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.sci-final-main {
    max-width: 650px;
}

.sci-final-eyebrow {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 22px;

    color: #8bd9ee;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;
}

.sci-final-eyebrow::before {
    content: "";

    width: 34px;
    height: 1px;

    background: #69c6e8;
}


.sci-final-main h2 {
    margin: 0 0 25px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(48px, 5.5vw, 74px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -3px;
}

.sci-final-main h2 span {
    display: block;

    color: #69c6e8;

    font-style: italic;
}


.sci-final-main > p {
    max-width: 570px;

    margin: 0;

    color: rgba(255,255,255,.75);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   BUTTONS
========================================================= */

.sci-final-actions {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 32px;
}


.sci-final-btn-primary,
.sci-final-btn-secondary {
    min-height: 48px;

    padding: 0 23px;

    box-sizing: border-box;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    transition: all .3s ease;
}


/* PRIMARY */

.sci-final-btn-primary {
    color: #123b4a;

    background: #69c6e8;

    border: 1px solid #69c6e8;
}

.sci-final-btn-primary:hover {
    color: #163c4b;

    background: #ffffff;

    border-color: #ffffff;

    transform: translateY(-3px);
}

.sci-final-btn-primary i {
    transition: .3s ease;
}

.sci-final-btn-primary:hover i {
    transform: translateX(5px);
}


/* SECONDARY */

.sci-final-btn-secondary {
    color: #ffffff;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.35);
}

.sci-final-btn-secondary:hover {
    background: rgba(255,255,255,.13);

    border-color: rgba(255,255,255,.75);

    transform: translateY(-3px);
}


/* =========================================================
   RIGHT MESSAGE
========================================================= */

.sci-final-message {
    max-width: 390px;

    padding: 35px 0 35px 45px;

    border-left: 1px solid rgba(139,217,238,.35);
}


.sci-final-symbol {
    width: 50px;
    height: 50px;

    margin-bottom: 23px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(105,198,232,.12);

    border: 1px solid rgba(105,198,232,.28);

    color: #69c6e8;

    font-size: 17px;
}


.sci-final-message p {
    margin: 0;

    color: rgba(255,255,255,.82);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;

    font-style: italic;

    line-height: 1.5;
}


.sci-final-rule {
    width: 45px;

    height: 1px;

    margin: 27px 0 15px;

    background: #69c6e8;
}


.sci-final-message > span {
    color: rgba(255,255,255,.48);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================================
   BOTTOM NAVIGATION
========================================================= */

.sci-final-bottom {
    position: relative;

    z-index: 5;

    width: 100%;

    background: rgba(7,34,43,.78);

    border-top: 1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(12px);
}


.sci-final-bottom-inner {
    width: min(1180px, 90%);

    min-height: 76px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    align-items: center;
}


.sci-final-bottom a {
    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    color: rgba(255,255,255,.62);

    text-decoration: none;

    font-size: 10px;

    font-weight: 600;

    border-right: 1px solid rgba(255,255,255,.12);

    transition: .3s ease;
}


.sci-final-bottom a:last-child {
    border-right: none;
}


.sci-final-bottom a i {
    color: #69c6e8;

    font-size: 8px;

    transition: .3s ease;
}


.sci-final-bottom a:hover {
    color: #ffffff;
}


.sci-final-bottom a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

.sci-final-reveal {
    opacity: 0;

    transform: translateY(40px);

    transition:
        opacity .9s ease,
        transform 1s cubic-bezier(.2,.8,.2,1);
}


.sci-final-message.sci-final-reveal {
    transform: translateX(45px);
}


.sci-final-reveal.sci-final-visible {
    opacity: 1;

    transform: translate(0);
}


.sci-final-message.sci-final-visible {
    transition-delay: .2s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .sci-final-container {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 90px 0 80px;
    }

    .sci-final-message {
        max-width: 600px;

        padding: 25px 0 15px 30px;
    }

    .sci-final-bottom-inner {
        grid-template-columns: repeat(3, 1fr);

        padding: 12px 0;
    }

    .sci-final-bottom a:nth-child(3) {
        border-right: none;
    }

    .sci-final-bottom a:nth-child(4),
    .sci-final-bottom a:nth-child(5) {
        margin-top: 12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .sci-final-cta {
        min-height: auto;
    }


    .sci-final-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(9,39,49,.97),
                rgba(13,54,67,.92)
            );
    }


    .sci-final-container {
        width: 88%;

        padding: 75px 0 65px;

        gap: 45px;
    }


    .sci-final-main h2 {
        font-size: 47px;

        letter-spacing: -2px;
    }


    .sci-final-main > p {
        font-size: 13px;
    }


    .sci-final-actions {
        flex-direction: column;

        align-items: stretch;

        width: 100%;
    }


    .sci-final-btn-primary,
    .sci-final-btn-secondary {
        width: 100%;
    }


    .sci-final-message {
        padding-left: 22px;
    }


    .sci-final-message p {
        font-size: 20px;
    }


    .sci-final-bottom-inner {
        width: 88%;

        grid-template-columns: 1fr;

        padding: 8px 0;
    }


    .sci-final-bottom a {
        height: 45px;

        justify-content: flex-start;

        border-right: none;

        border-bottom: 1px solid rgba(255,255,255,.10);
    }


    .sci-final-bottom a:last-child {
        border-bottom: none;
    }

}


```css
/* =========================================================
   SCI — ELEGANT BLUE FOOTER
   REPLACE THE PREVIOUS FOOTER CSS WITH THIS
========================================================= */

.sci-clean-footer {
    width: 100%;
    margin: 0;
    padding: 0;

    background: #dceff5;
    color: #163c4b;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    box-sizing: border-box;
}


.sci-clean-footer *,
.sci-clean-footer *::before,
.sci-clean-footer *::after {
    box-sizing: border-box;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.sci-clean-footer-main {
    width: 100%;

    padding: 78px 0 70px;

    background:
        linear-gradient(
            135deg,
            #dceff5 0%,
            #e8f6fa 48%,
            #d4ebf2 100%
        );
}


.sci-clean-footer-container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* =========================================================
   MAIN GRID
========================================================= */

.sci-clean-footer-main
.sci-clean-footer-container {

    display: grid;

    grid-template-columns:
        1.5fr
        .75fr
        .95fr
        1fr;

    gap: 65px;

    align-items: start;
}


/* =========================================================
   BRAND
========================================================= */

.sci-clean-footer-brand {
    max-width: 360px;
}


/* =========================================================
   BRAND TITLE
========================================================= */

.sci-clean-footer-title {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 24px;
}


.sci-clean-footer-mark {

    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border: 1px solid #b9dfe9;

    color: #238db5;

    font-size: 18px;

    box-shadow:
        0 8px 25px rgba(22,60,75,.08);
}


.sci-clean-footer-title > span:last-child {

    display: flex;

    flex-direction: column;

    line-height: 1.05;
}


.sci-clean-footer-title strong {

    color: #163c4b;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;

    font-weight: 600;
}


.sci-clean-footer-title strong + strong {

    margin-top: 3px;
}


/* =========================================================
   BRAND DESCRIPTION
========================================================= */

.sci-clean-footer-brand > p {

    max-width: 345px;

    margin: 0;

    color: #526f79;

    font-size: 12px;

    line-height: 1.9;
}


/* =========================================================
   ABOUT LINK
========================================================= */

.sci-clean-footer-about {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 22px;

    color: #238db5;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .3px;

    transition: .25s ease;
}


.sci-clean-footer-about i {

    font-size: 8px;

    transition: .25s ease;
}


.sci-clean-footer-about:hover {

    color: #12617e;
}


.sci-clean-footer-about:hover i {

    transform: translateX(5px);
}


/* =========================================================
   COLUMN HEADINGS
========================================================= */

.sci-clean-footer-column h3 {

    position: relative;

    margin: 2px 0 26px;

    padding-bottom: 13px;

    color: #163c4b;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    font-weight: 400;
}


.sci-clean-footer-column h3::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 32px;
    height: 2px;

    background: #238db5;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.sci-clean-footer-column > a {

    position: relative;

    display: block;

    width: fit-content;

    margin-bottom: 14px;

    color: #5c7882;

    text-decoration: none;

    font-size: 11px;

    transition:
        color .25s ease,
        padding-left .25s ease;
}


.sci-clean-footer-column > a::before {

    content: "";

    position: absolute;

    left: -13px;
    top: 50%;

    width: 0;
    height: 1px;

    background: #238db5;

    transition: width .25s ease;
}


.sci-clean-footer-column > a:hover {

    color: #12617e;

    padding-left: 9px;
}


.sci-clean-footer-column > a:hover::before {

    width: 6px;
}


/* =========================================================
   CONTACT
========================================================= */

.sci-clean-contact-row {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 20px;
}


.sci-clean-contact-icon {

    width: 33px;
    height: 33px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.75);

    border: 1px solid #bddfe8;

    color: #238db5;

    font-size: 10px;

    box-shadow:
        0 5px 15px rgba(22,60,75,.05);
}


.sci-clean-contact-row span {

    display: block;

    margin-bottom: 4px;

    color: #78939c;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.sci-clean-contact-row p {

    margin: 0;

    color: #526f79;

    font-size: 10px;

    line-height: 1.7;
}


.sci-clean-contact-row a {

    color: #526f79;

    text-decoration: none;

    font-size: 11px;

    transition: color .25s ease;
}


.sci-clean-contact-row a:hover {

    color: #238db5;
}


/* =========================================================
   MISSION / HIGHLIGHT BAR
========================================================= */

.sci-clean-footer-highlight {

    width: 100%;

    background: #238db5;

    border-top: 1px solid rgba(255,255,255,.15);

    border-bottom: 1px solid rgba(0,0,0,.08);
}


.sci-clean-footer-highlight
.sci-clean-footer-container {

    min-height: 88px;

    display: flex;

    align-items: center;

    gap: 28px;
}


/* PEOPLE / PLANET / FUTURE */

.sci-clean-highlight-left {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #ffffff;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    white-space: nowrap;
}


.sci-clean-highlight-left b {

    color: #a9e6f5;

    font-weight: 400;
}


/* MESSAGE */

.sci-clean-footer-highlight p {

    margin: 0;

    color: rgba(255,255,255,.9);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    font-style: italic;
}


/* SUPPORT BUTTON */

.sci-clean-footer-highlight a {

    margin-left: auto;

    min-height: 42px;

    padding: 0 20px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    background: #ffffff;

    color: #163c4b;

    text-decoration: none;

    font-size: 9px;

    font-weight: 700;

    transition: .25s ease;
}


.sci-clean-footer-highlight a:hover {

    background: #163c4b;

    color: #ffffff;

    transform: translateY(-2px);
}


.sci-clean-footer-highlight a i {

    font-size: 8px;

    transition: .25s ease;
}


.sci-clean-footer-highlight a:hover i {

    transform: translateX(4px);
}


/* =========================================================
   COPYRIGHT BAR
========================================================= */

.sci-clean-footer-bottom {

    width: 100%;

    background: #163c4b;
}


.sci-clean-footer-bottom
.sci-clean-footer-container {

    min-height: 68px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.sci-clean-footer-bottom p {

    margin: 0;

    color: rgba(255,255,255,.55);

    font-size: 9px;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.sci-clean-footer-social {

    display: flex;

    align-items: center;

    gap: 7px;
}


.sci-clean-footer-social a {

    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.18);

    color: rgba(255,255,255,.65);

    text-decoration: none;

    font-size: 9px;

    transition: .25s ease;
}


.sci-clean-footer-social a:hover {

    background: #69c6e8;

    border-color: #69c6e8;

    color: #163c4b;

    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .sci-clean-footer-main
    .sci-clean-footer-container {

        grid-template-columns:
            1.2fr
            1fr
            1fr;

        gap: 45px;
    }


    .sci-clean-footer-brand {

        grid-column: 1 / -1;

        max-width: 600px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .sci-clean-footer-main {

        padding: 55px 0 45px;
    }


    .sci-clean-footer-container {

        width: 88%;
    }


    .sci-clean-footer-main
    .sci-clean-footer-container {

        grid-template-columns: 1fr;

        gap: 38px;
    }


    .sci-clean-footer-brand {

        grid-column: auto;

        max-width: 100%;
    }


    .sci-clean-footer-highlight
    .sci-clean-footer-container {

        min-height: auto;

        padding: 28px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 13px;
    }


    .sci-clean-footer-highlight p {

        font-size: 16px;
    }


    .sci-clean-footer-highlight a {

        width: 100%;

        margin-left: 0;
    }


    .sci-clean-footer-bottom
    .sci-clean-footer-container {

        min-height: auto;

        padding: 22px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

}
```
```css
/* =========================================================
   SCI — GET INVOLVED / IMPACT SECTION
   Bright Elegant Section Above Footer
========================================================= */

.sci-impact-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f4fbfd 48%,
            #e7f7fb 100%
        );
    padding: 105px 0 100px;
    font-family: "Segoe UI", Arial, sans-serif;
    box-sizing: border-box;
}

.sci-impact-section *,
.sci-impact-section *::before,
.sci-impact-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.sci-impact-container {
    position: relative;
    width: min(1180px, 90%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 90px;
    z-index: 2;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.sci-impact-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.sci-impact-circle-one {
    width: 360px;
    height: 360px;
    right: -190px;
    top: -190px;
    border: 1px solid rgba(105,198,232,.18);
}

.sci-impact-circle-two {
    width: 250px;
    height: 250px;
    left: -170px;
    bottom: -150px;
    background: rgba(105,198,232,.07);
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.sci-impact-content {
    position: relative;
    z-index: 3;
}

.sci-impact-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 21px;

    color: #238db5;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.4px;
}

.sci-impact-label span {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: #69c6e8;
}


.sci-impact-content h2 {
    max-width: 650px;
    margin: 0 0 25px;

    color: #163c4b;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.04;
    font-weight: 400;
    letter-spacing: -2px;
}

.sci-impact-content h2 em {
    display: block;

    color: #238db5;

    font-weight: 400;
    font-style: italic;
}


.sci-impact-content > p {
    max-width: 600px;
    margin: 0;

    color: #607983;

    font-size: 13px;
    line-height: 1.9;
}


/* =========================================================
   BUTTONS
========================================================= */

.sci-impact-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}


.sci-impact-btn-primary {
    min-height: 48px;
    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    background: #238db5;
    color: #ffffff;

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .4px;

    border-radius: 3px;

    box-shadow: 0 10px 25px rgba(35,141,181,.16);

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.sci-impact-btn-primary:hover {
    background: #163c4b;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(22,60,75,.16);
}

.sci-impact-btn-primary i {
    font-size: 9px;
    transition: transform .25s ease;
}

.sci-impact-btn-primary:hover i {
    transform: translateX(4px);
}


.sci-impact-btn-secondary {
    min-height: 48px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #238db5;

    text-decoration: none;

    border: 1px solid #c8e7ef;
    border-radius: 3px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .3px;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.sci-impact-btn-secondary:hover {
    background: #eaf8fc;
    color: #163c4b;
    border-color: #9dd7e7;
    transform: translateY(-3px);
}


/* =========================================================
   IMPACT CARDS
========================================================= */

.sci-impact-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}


.sci-impact-card {
    min-height: 92px;
    padding: 18px 22px;

    display: flex;
    align-items: center;
    gap: 18px;

    background: rgba(255,255,255,.82);

    border: 1px solid #d9edf2;

    box-shadow:
        0 15px 40px rgba(30,90,110,.07);

    border-radius: 5px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.sci-impact-card:hover {
    transform: translateX(-7px);
    border-color: #a9dce9;

    box-shadow:
        0 20px 45px rgba(30,90,110,.11);
}


.sci-impact-card-icon {
    width: 51px;
    height: 51px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e9f8fc;
    color: #238db5;

    font-size: 17px;

    border: 1px solid #ccebf2;
}


.sci-impact-card strong {
    display: block;

    color: #163c4b;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 500;
}


.sci-impact-card span {
    display: block;
    margin-top: 4px;

    color: #789099;

    font-size: 10px;
    letter-spacing: .4px;
}


/* =========================================================
   FEATURED CARD
========================================================= */

.sci-impact-card-featured {
    margin-left: 38px;

    background:
        linear-gradient(
            135deg,
            #238db5,
            #55b6d5
        );

    border-color: transparent;

    box-shadow:
        0 20px 45px rgba(35,141,181,.18);
}

.sci-impact-card-featured:hover {
    border-color: transparent;
    box-shadow:
        0 25px 50px rgba(35,141,181,.24);
}


.sci-impact-card-featured .sci-impact-card-icon {
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.25);
    color: #ffffff;
}

.sci-impact-card-featured strong {
    color: #ffffff;
}

.sci-impact-card-featured span {
    color: rgba(255,255,255,.78);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 950px) {

    .sci-impact-section {
        padding: 80px 0;
    }

    .sci-impact-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .sci-impact-content h2 {
        max-width: 700px;
    }

    .sci-impact-content > p {
        max-width: 680px;
    }

    .sci-impact-cards {
        max-width: 650px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 600px) {

    .sci-impact-section {
        padding: 70px 0;
    }

    .sci-impact-container {
        width: 88%;
        gap: 42px;
    }

    .sci-impact-content h2 {
        font-size: 42px;
        letter-spacing: -1.3px;
    }

    .sci-impact-content > p {
        font-size: 12px;
        line-height: 1.85;
    }

    .sci-impact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sci-impact-btn-primary,
    .sci-impact-btn-secondary {
        width: 100%;
    }

    .sci-impact-card {
        min-height: 82px;
        padding: 15px;
    }

    .sci-impact-card-featured {
        margin-left: 0;
    }

    .sci-impact-card-icon {
        width: 46px;
        height: 46px;
    }

}
```
```css
/* =========================================================
   SCI — ELEGANT NGO HERO
========================================================= */

.sci-hero-new {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
    background: #163c4b;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.sci-hero-new-image {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.sci-hero-new-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* =========================================================
   OVERLAY
========================================================= */

.sci-hero-new-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(9, 42, 55, .88) 0%,
            rgba(9, 42, 55, .68) 42%,
            rgba(9, 42, 55, .24) 75%,
            rgba(9, 42, 55, .10) 100%
        );
}

/* =========================================================
   MAIN CONTAINER
========================================================= */

.sci-hero-new-container {
    position: relative;
    z-index: 2;

    width: min(1180px, 90%);
    min-height: calc(100vh - 110px);

    margin: 0 auto;

    display: flex;
    align-items: center;

    padding: 145px 0 190px;
}

/* =========================================================
   CONTENT
========================================================= */

.sci-hero-new-content {
    max-width: 780px;
    color: #ffffff;
}

.sci-hero-new-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;

    color: #bdeaf7;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.8px;
}

.sci-hero-new-eyebrow span {
    width: 35px;
    height: 2px;
    background: #69c6e8;
}

/* =========================================================
   HEADING
========================================================= */

.sci-hero-new h1 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6.3vw, 88px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -2.5px;

    color: #ffffff;
}

.sci-hero-new h1 em {
    color: #9de1f5;
    font-style: italic;
}

.sci-hero-new h1 strong {
    font-weight: 400;
    color: #ffffff;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.sci-hero-new-content > p {
    max-width: 620px;

    margin: 30px 0 0;

    color: rgba(255, 255, 255, .82);

    font-size: 15px;
    line-height: 1.9;
}

/* =========================================================
   BUTTONS
========================================================= */

.sci-hero-new-actions {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 35px;
}

.sci-hero-new-primary,
.sci-hero-new-secondary {
    min-height: 50px;
    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .4px;

    transition: all .3s ease;
}

.sci-hero-new-primary {
    background: #69c6e8;
    color: #123542;
}

.sci-hero-new-primary:hover {
    background: #ffffff;
    color: #163c4b;
    transform: translateY(-3px);
}

.sci-hero-new-primary i {
    font-size: 9px;
    transition: transform .3s ease;
}

.sci-hero-new-primary:hover i {
    transform: translateX(5px);
}

.sci-hero-new-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .38);
}

.sci-hero-new-secondary:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #ffffff;
    color: #ffffff;
}

/* =========================================================
   BOTTOM INFORMATION PANEL
========================================================= */

.sci-hero-new-bottom {
    position: absolute;
    z-index: 4;

    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(255, 255, 255, .96);

    border-top: 1px solid rgba(255, 255, 255, .3);
}

.sci-hero-new-bottom-container {
    width: min(1180px, 90%);
    min-height: 108px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.sci-hero-new-statement {
    max-width: 440px;
}

.sci-hero-new-small-label {
    display: block;

    margin-bottom: 7px;

    color: #238db5;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.sci-hero-new-statement p {
    margin: 0;

    color: #163c4b;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.35;
}

/* =========================================================
   FOCUS ITEMS
========================================================= */

.sci-hero-new-focus {
    display: flex;
    align-items: center;
    gap: 42px;
}

.sci-hero-new-focus-item {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #45616b;
    font-size: 10px;
    font-weight: 700;
}

.sci-hero-new-focus-item i {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e6f7fb;
    color: #238db5;

    font-size: 13px;
}

/* =========================================================
   SCROLL INDICATOR
========================================================= */

.sci-hero-new-scroll {
    position: absolute;
    z-index: 5;

    right: 5%;
    bottom: 135px;

    display: flex;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, .8);

    text-decoration: none;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;

    transform: rotate(-90deg);
    transform-origin: right center;
}

.sci-hero-new-scroll span {
    width: 35px;
    height: 1px;
    background: #69c6e8;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .sci-hero-new-container {
        padding-bottom: 220px;
    }

    .sci-hero-new-bottom-container {
        min-height: 150px;
        padding: 25px 0;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .sci-hero-new-focus {
        gap: 30px;
    }

    .sci-hero-new-scroll {
        display: none;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .sci-hero-new {
        min-height: 850px;
    }

    .sci-hero-new-container {
        width: 88%;
        min-height: 700px;
        padding: 130px 0 280px;
    }

    .sci-hero-new h1 {
        font-size: 52px;
        line-height: 1.02;
        letter-spacing: -1.5px;
    }

    .sci-hero-new-content > p {
        font-size: 13px;
    }

    .sci-hero-new-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sci-hero-new-primary,
    .sci-hero-new-secondary {
        width: 100%;
    }

    .sci-hero-new-bottom-container {
        width: 88%;
    }

    .sci-hero-new-focus {
        width: 100%;
        gap: 12px;
        justify-content: space-between;
    }

    .sci-hero-new-focus-item {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        font-size: 8px;
    }

    .sci-hero-new-focus-item i {
        width: 34px;
        height: 34px;
    }

}
```css
/* =========================================================
   MOVE ENTIRE HERO CONTENT HIGHER
   Includes:
   - Organisation name
   - Main heading
   - Description
   - Buttons
========================================================= */

.sci-hero-new-container {
    align-items: flex-start !important;
    padding-top: 210px !important;
}

/* Keep the complete text group together */
.sci-hero-new-content {
    transform: translateY(-70px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .sci-hero-new-container {
        padding-top: 180px !important;
    }

    .sci-hero-new-content {
        transform: translateY(-45px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .sci-hero-new-container {
        padding-top: 145px !important;
    }

    .sci-hero-new-content {
        transform: translateY(-35px);
    }

}
```css
/* =========================================================
   SCI ELEGANT HEADER
   UNIQUE CLASS NAMES
========================================================= */

.sci-elegant-header {
    position: fixed;
    top: 0;
    z-index: 99999;

    width: 100%;

    background: #ffffff;

    font-family: "Segoe UI", Arial, sans-serif;

    box-shadow: 0 8px 30px rgba(20, 65, 80, .10);
}


/* =========================================================
   CONTAINER
========================================================= */

.sci-elegant-container {
    width: min(1280px, 92%);
    margin: 0 auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.sci-elegant-topbar {
    height: 42px;

    background: #123f50;

    color: #ffffff;
}

.sci-elegant-topbar .sci-elegant-container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sci-elegant-top-info {
    display: flex;
    align-items: center;
    gap: 18px;

    font-size: 11px;
}

.sci-elegant-top-info span,
.sci-elegant-top-info a {
    display: flex;
    align-items: center;
    gap: 8px;

    color: rgba(255,255,255,.85);

    text-decoration: none;
}

.sci-elegant-top-info i {
    color: #69c6e8;

    font-size: 10px;
}

.sci-elegant-top-separator {
    width: 1px;
    height: 16px;

    background: rgba(255,255,255,.20);
}

.sci-elegant-top-message {
    color: #8edcf3;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.sci-elegant-top-message b {
    color: rgba(255,255,255,.4);

    margin: 0 5px;
}


/* =========================================================
   MAIN HEADER
========================================================= */

.sci-elegant-main {
    background: #ffffff;

    border-bottom: 1px solid #e3f0f4;
}

.sci-elegant-main-inner {
    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;
}


/* =========================================================
   BRAND
========================================================= */

.sci-elegant-brand {
    display: flex;
    align-items: center;

    gap: 15px;

    text-decoration: none;

    flex-shrink: 0;
}

.sci-elegant-logo {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e8f8fc;

    border: 1px solid #c9eaf3;

    color: #238db5;

    font-size: 25px;

    transition: all .3s ease;
}

.sci-elegant-brand:hover .sci-elegant-logo {
    background: #69c6e8;

    color: #123f50;

    transform: rotate(-5deg);
}

.sci-elegant-brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.sci-elegant-brand-title {
    color: #123f50;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;

    font-weight: 600;

    letter-spacing: -.5px;
}

.sci-elegant-brand-title + .sci-elegant-brand-title {
    margin-top: 4px;
}

.sci-elegant-brand-text small {
    margin-top: 9px;

    color: #238db5;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 4px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.sci-elegant-navigation {
    display: flex;
    align-items: center;

    gap: 24px;

    margin-left: auto;
}


/* =========================================================
   NAVIGATION GROUP
   ALL LINKS ARE VISUALLY CONNECTED
========================================================= */

.sci-elegant-nav-group {
    display: flex;
    align-items: center;

    background: #f0f9fc;

    border: 1px solid #d9edf3;

    border-radius: 8px;

    padding: 4px;
}

.sci-elegant-nav-link {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 48px;

    padding: 0 17px;

    color: #294b57;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    border-radius: 5px;

    transition:
        color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


/* subtle separator between links */

.sci-elegant-nav-link + .sci-elegant-nav-link::before {
    content: "";

    position: absolute;

    left: 0;
    top: 14px;

    width: 1px;
    height: 20px;

    background: #d5e9ef;

    transition: opacity .2s ease;
}


/* hover */

.sci-elegant-nav-link:hover {
    color: #238db5;

    background: #ffffff;

    box-shadow: 0 3px 12px rgba(35,141,181,.08);
}

.sci-elegant-nav-link:hover::before {
    opacity: 0;
}


/* active */

.sci-elegant-nav-link.active {
    color: #ffffff;

    background: #238db5;

    box-shadow:
        0 5px 15px rgba(35,141,181,.25);
}

.sci-elegant-nav-link.active::before {
    opacity: 0;
}


/* =========================================================
   SUPPORT BUTTON
========================================================= */

.sci-elegant-support {
    height: 52px;

    padding: 0 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    color: #ffffff;

    background: #238db5;

    text-decoration: none;

    border-radius: 5px;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    box-shadow:
        0 6px 18px rgba(35,141,181,.20);

    transition: all .3s ease;
}

.sci-elegant-support:hover {
    color: #ffffff;

    background: #123f50;

    transform: translateY(-2px);

    box-shadow:
        0 9px 24px rgba(18,63,80,.20);
}

.sci-elegant-support i {
    font-size: 10px;

    transition: transform .3s ease;
}

.sci-elegant-support:hover i {
    transform: translateX(5px);
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.sci-elegant-toggle {
    display: none;

    width: 48px;
    height: 46px;

    border: 1px solid #d5ebf1;

    border-radius: 6px;

    background: #eefaff;

    padding: 9px;

    cursor: pointer;
}

.sci-elegant-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: #123f50;

    transition: all .25s ease;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.sci-elegant-mobile {
    display: none;

    background: #ffffff;

    border-top: 1px solid #e3f0f4;
}

.sci-elegant-mobile-inner {
    width: 92%;

    margin: 0 auto;

    padding: 12px 0 20px;
}

.sci-elegant-mobile-inner > a {
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 16px;

    color: #294b57;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    border-bottom: 1px solid #e7f1f4;

    transition: all .25s ease;
}

.sci-elegant-mobile-inner > a:hover {
    color: #238db5;

    padding-left: 22px;
}

.sci-elegant-mobile-inner > a.active {
    color: #ffffff;

    background: #238db5;

    border-radius: 5px;

    border-bottom: none;

    margin: 3px 0;
}

.sci-elegant-mobile-inner > a i {
    font-size: 10px;

    color: #238db5;
}

.sci-elegant-mobile-inner > a.active i {
    color: #ffffff;
}

.sci-elegant-mobile-inner
.sci-elegant-mobile-support {
    margin-top: 15px;

    justify-content: center;

    color: #ffffff;

    background: #123f50;

    border: none;

    border-radius: 5px;

    gap: 12px;
}

.sci-elegant-mobile-inner
.sci-elegant-mobile-support:hover {
    color: #ffffff;

    background: #238db5;

    padding-left: 16px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .sci-elegant-navigation {
        gap: 12px;
    }

    .sci-elegant-nav-link {
        padding: 0 11px;

        font-size: 11px;
    }

    .sci-elegant-support {
        padding: 0 15px;

        font-size: 10px;
    }

    .sci-elegant-brand-title {
        font-size: 18px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .sci-elegant-topbar {
        display: none;
    }

    .sci-elegant-main-inner {
        min-height: 82px;
    }

    .sci-elegant-navigation {
        display: none;
    }

    .sci-elegant-toggle {
        display: block;
    }

    .sci-elegant-mobile.sci-elegant-mobile-open {
        display: block;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .sci-elegant-container {
        width: 90%;
    }

    .sci-elegant-logo {
        width: 46px;
        height: 46px;

        font-size: 20px;
    }

    .sci-elegant-brand-title {
        font-size: 15px;

        letter-spacing: -.3px;
    }

    .sci-elegant-brand-text small {
        margin-top: 7px;

        font-size: 6px;

        letter-spacing: 3px;
    }

}
/* =========================================================
   SCI — TRUE FIXED / STICKY HEADER
========================================================= */

.sci-elegant-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 999999 !important;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(20, 65, 80, 0.12);
}

/* Prevent the fixed header from covering the first section */
body {
    padding-top: 142px;
}

/* Desktop header height adjustment */
.sci-elegant-main {
    position: relative;
    z-index: 2;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    body {
        padding-top: 82px;
    }

    .sci-elegant-header {
        position: fixed !important;
        top: 0 !important;
    }

    .sci-elegant-mobile {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 999998;
    }
}

```css
/* =========================================================
   SCI HEADER — LARGE & HIGH-VISIBILITY TYPOGRAPHY
========================================================= */

/* Top bar text */
.sci-elegant-top-info span,
.sci-elegant-top-info a,
.sci-elegant-top-message {
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.2px;
}

/* Company name */
.sci-elegant-brand-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    color: #123f50 !important;
}

.sci-elegant-brand-text small {
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 4px !important;
    color: #238db5 !important;
}

/* Navigation */
.sci-elegant-nav-link {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #173f4d !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.sci-elegant-nav-link:hover {
    color: #12617e !important;
}

/* Active navigation */
.sci-elegant-nav-link.active {
    color: #ffffff !important;
    background: #238db5 !important;
    font-weight: 800 !important;
}

/* Support button */
.sci-elegant-support {
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: 0.1px;
}

/* Mobile navigation */
.sci-elegant-mobile a {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #173f4d !important;
}

.sci-elegant-mobile a.active {
    color: #238db5 !important;
    font-weight: 800 !important;
}

.sci-elegant-mobile-support {
    font-size: 17px !important;
    font-weight: 800 !important;
}

/* Better visibility on smaller desktop screens */
@media (max-width: 1150px) {

    .sci-elegant-main-inner {
        gap: 25px !important;
    }

    .sci-elegant-brand-title {
        font-size: 20px !important;
    }

    .sci-elegant-nav-link {
        font-size: 14px !important;
        padding-left: 13px !important;
        padding-right: 13px !important;
    }

    .sci-elegant-support {
        font-size: 13px !important;
        padding-left: 17px !important;
        padding-right: 17px !important;
    }
}

/* Mobile */
@media (max-width: 900px) {

    .sci-elegant-brand-title {
        font-size: 20px !important;
    }

    .sci-elegant-brand-text small {
        font-size: 9px !important;
    }

    .sci-elegant-mobile a {
        font-size: 18px !important;
    }
}


/* =========================================================
   SCI — ELEGANT EDITORIAL FOOTER
========================================================= */

.sci-editorial-footer {
    width: 100%;
    background: #ffffff;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #173b48;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.sci-editorial-footer-main {
    background: #f7fbfc;
    border-top: 1px solid #dceef3;
    border-bottom: 1px solid #dceef3;
}

.sci-editorial-footer-container {
    width: min(1240px, 90%);
    margin: 0 auto;
}


.sci-editorial-footer-main
.sci-editorial-footer-container {
    display: grid;
    grid-template-columns:
        1.5fr
        0.8fr
        1fr
        1fr;

    gap: 70px;
    padding: 75px 0 70px;
}


/* =========================================================
   BRAND
========================================================= */

.sci-editorial-footer-brand {
    max-width: 350px;
}


.sci-editorial-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #123f50;
}


.sci-editorial-footer-logo-mark {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e7f7fb;
    border: 1px solid #c9eaf2;

    color: #238db5;
    font-size: 22px;
}


.sci-editorial-footer-logo-text {
    display: flex;
    flex-direction: column;
}


.sci-editorial-footer-logo-text strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.05;
    font-weight: 600;
}


.sci-editorial-footer-logo-text small {
    margin-top: 7px;

    color: #238db5;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 4px;
}


.sci-editorial-footer-description {
    margin: 27px 0 28px;

    color: #5c747d;

    font-size: 14px;
    line-height: 1.8;
}


.sci-editorial-footer-location {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    color: #48646e;

    font-size: 13px;
    line-height: 1.65;
}


.sci-editorial-footer-location i {
    margin-top: 4px;

    color: #238db5;
    font-size: 14px;
}


/* =========================================================
   COLUMN HEADINGS
========================================================= */

.sci-editorial-footer-column {
    min-width: 0;
}


.sci-editorial-footer-label {
    display: block;

    margin-bottom: 25px;

    color: #238db5;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.5px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.sci-editorial-footer-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}


.sci-editorial-footer-links a {
    position: relative;

    width: fit-content;

    color: #294f5b;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition:
        color .25s ease,
        padding-left .25s ease;
}


.sci-editorial-footer-links a:hover {
    padding-left: 8px;
    color: #238db5;
}


.sci-editorial-footer-links a::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 0;
    height: 1px;

    background: #238db5;

    transform: translateY(-50%);

    transition: width .25s ease;
}


.sci-editorial-footer-links a:hover::before {
    width: 4px;
}


/* =========================================================
   FOCUS AREAS
========================================================= */

.sci-editorial-footer-focus {
    display: flex;
    flex-direction: column;
    gap: 13px;
}


.sci-editorial-footer-focus span {
    color: #536e77;

    font-size: 13px;
    line-height: 1.4;
}


.sci-editorial-footer-focus span::before {
    content: "—";

    margin-right: 9px;

    color: #6ec6e8;
}


/* =========================================================
   CONTACT
========================================================= */

.sci-editorial-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.sci-editorial-footer-phone {
    margin-bottom: 15px;

    color: #123f50;

    text-decoration: none;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;
    font-weight: 600;
}


.sci-editorial-footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;

    color: #238db5;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: color .2s ease;
}


.sci-editorial-footer-whatsapp:hover {
    color: #12617e;
}


.sci-editorial-footer-whatsapp i {
    font-size: 17px;
}


.sci-editorial-footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #294f5b;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: color .2s ease;
}


.sci-editorial-footer-contact-link i {
    font-size: 11px;

    transition: transform .2s ease;
}


.sci-editorial-footer-contact-link:hover {
    color: #238db5;
}


.sci-editorial-footer-contact-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   SOCIAL
========================================================= */

.sci-editorial-footer-social {
    display: flex;
    gap: 8px;

    margin-top: 27px;
}


.sci-editorial-footer-social a {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #cfe4ea;
    border-radius: 50%;

    color: #4d6973;

    text-decoration: none;

    font-size: 11px;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.sci-editorial-footer-social a:hover {
    background: #238db5;
    border-color: #238db5;
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   STATEMENT STRIP
========================================================= */

.sci-editorial-footer-statement {
    background: #123f50;
}


.sci-editorial-footer-statement-inner {
    min-height: 76px;

    display: flex;
    align-items: center;
    gap: 13px;
}


.sci-editorial-footer-statement-inner > span {
    color: #9edff0;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 3px;
}


.sci-editorial-footer-statement-inner i {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #6ec6e8;
}


.sci-editorial-footer-statement-inner p {
    margin: 0 0 0 auto;

    color: rgba(255,255,255,.62);

    font-size: 12px;
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.sci-editorial-footer-bottom {
    background: #0c303d;
}


.sci-editorial-footer-bottom-inner {
    min-height: 62px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


.sci-editorial-footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,.48);

    font-size: 11px;
}


.sci-editorial-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}


.sci-editorial-footer-bottom-links a {
    color: rgba(255,255,255,.55);

    text-decoration: none;

    font-size: 10px;

    transition: color .2s ease;
}


.sci-editorial-footer-bottom-links a:hover {
    color: #ffffff;
}


.sci-editorial-footer-bottom-links span {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: rgba(255,255,255,.25);
}


.sci-editorial-footer-top {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;

    color: rgba(255,255,255,.7);

    text-decoration: none;

    font-size: 11px;

    transition:
        background .2s ease,
        color .2s ease;
}


.sci-editorial-footer-top:hover {
    background: #6ec6e8;
    color: #123f50;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .sci-editorial-footer-main
    .sci-editorial-footer-container {
        grid-template-columns: 1.3fr 1fr 1fr;

        gap: 45px;
    }

    .sci-editorial-footer-brand {
        grid-column: 1 / -1;
        max-width: 650px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .sci-editorial-footer-main
    .sci-editorial-footer-container {
        grid-template-columns: 1fr;

        gap: 38px;

        padding: 55px 0;
    }


    .sci-editorial-footer-brand {
        grid-column: auto;
        max-width: 100%;
    }


    .sci-editorial-footer-logo-text strong {
        font-size: 18px;
    }


    .sci-editorial-footer-phone {
        font-size: 20px;
    }


    .sci-editorial-footer-statement-inner {
        min-height: auto;

        padding: 22px 0;

        flex-wrap: wrap;
    }


    .sci-editorial-footer-statement-inner p {
        width: 100%;

        margin: 8px 0 0;

        font-size: 11px;
    }


    .sci-editorial-footer-bottom-inner {
        min-height: auto;

        padding: 22px 0;

        flex-wrap: wrap;
    }


    .sci-editorial-footer-bottom-links {
        order: 3;

        width: 100%;
    }

}


@media (max-width: 400px) {

    .sci-editorial-footer-logo-mark {
        width: 48px;
        height: 48px;
    }


    .sci-editorial-footer-logo-text strong {
        font-size: 16px;
    }


    .sci-editorial-footer-statement-inner > span {
        font-size: 9px;
        letter-spacing: 2px;
    }

}

.sci-editorial-footer {
    position: relative;
    background: #eaf8fd;
    padding-top: 20px;
}

.sci-editorial-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;

    background: #d9f2f8;

    border-top: 1px solid #a9dbe8;
    border-bottom: 1px solid #c7e9f1;

    box-shadow: 0 -8px 25px rgba(18, 63, 80, 0.08);
}

.sci-editorial-footer-main {
    background: #ffffff;
}

/* =========================================================
   SCI FOOTER — FINAL BACKGROUND OVERRIDE
   Paste AFTER all existing footer CSS
========================================================= */

.sci-editorial-footer {
    background: #dff3f9 !important;
    border-top: 8px solid #238db5 !important;
}


/* Main footer background */
.sci-editorial-footer-main {
    background: #dff3f9 !important;
    border-top: none !important;
}


/* Make the footer content sit clearly on the blue background */
.sci-editorial-footer-main
.sci-editorial-footer-container {
    background: transparent !important;
}


/* Keep brand and columns transparent */
.sci-editorial-footer-brand,
.sci-editorial-footer-column {
    background: transparent !important;
}


/* Stronger text contrast */
.sci-editorial-footer-logo-text strong {
    color: #123f50 !important;
}

.sci-editorial-footer-description {
    color: #42636e !important;
}

.sci-editorial-footer-location {
    color: #365864 !important;
}

.sci-editorial-footer-links a {
    color: #173f4d !important;
}

.sci-editorial-footer-focus span {
    color: #42636e !important;
}


/* Contact */
.sci-editorial-footer-phone {
    color: #123f50 !important;
}

.sci-editorial-footer-contact-link {
    color: #173f4d !important;
}


/* Keep the lower strips dark */
.sci-editorial-footer-statement {
    background: #123f50 !important;
}

.sci-editorial-footer-bottom {
    background: #092b38 !important;
}


/* Mobile */
@media (max-width: 650px) {

    .sci-editorial-footer {
        border-top-width: 6px !important;
    }

    .sci-editorial-footer-main {
        background: #dff3f9 !important;
    }

}

/* =========================================================
   SCI — OUR WORK / IMPACT SHOWCASE
========================================================= */

.sci-work-showcase {
    position: relative;
    width: 100%;
    padding: 125px 0 120px;
    background: #f4fbfd;
    overflow: hidden;
}

.sci-work-wrapper {
    width: min(1240px, 90%);
    margin: 0 auto;
}


/* =========================================================
   INTRO
========================================================= */

.sci-work-intro {
    max-width: 780px;
    margin-bottom: 70px;
}

.sci-work-intro-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;

    color: #238db5;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
}

.sci-work-intro-label span {
    width: 42px;
    height: 2px;
    background: #6ec6e8;
}

.sci-work-intro h2 {
    margin: 0 0 24px;

    color: #123f50;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -2px;
}

.sci-work-intro h2 em {
    color: #238db5;
    font-weight: 400;
}

.sci-work-intro p {
    max-width: 650px;
    margin: 0;

    color: #5c747d;
    font-size: 16px;
    line-height: 1.85;
}


/* =========================================================
   FEATURED AREA
========================================================= */

.sci-work-feature {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    min-height: 570px;
    margin-bottom: 80px;

    background: #ffffff;
    box-shadow: 0 25px 70px rgba(18, 63, 80, .10);
}

.sci-work-feature-image {
    position: relative;
    min-height: 570px;
    overflow: hidden;
}

.sci-work-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.sci-work-feature:hover
.sci-work-feature-image img {
    transform: scale(1.04);
}

.sci-work-image-caption {
    position: absolute;
    left: 28px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 10px 15px;

    background: rgba(255,255,255,.94);

    color: #294f5b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.sci-work-image-caption span {
    color: #238db5;
}


.sci-work-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 65px;
}

.sci-work-number {
    display: block;
    margin-bottom: 22px;

    color: #6ec6e8;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
}

.sci-work-feature-content h3 {
    margin: 0 0 25px;

    color: #123f50;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 500;
}

.sci-work-feature-content p {
    margin: 0 0 35px;

    color: #60757d;
    font-size: 14px;
    line-height: 1.9;
}

.sci-work-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    width: fit-content;

    color: #12617e;
    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    border-bottom: 1px solid #6ec6e8;
    padding-bottom: 8px;

    transition: gap .25s ease,
                color .25s ease;
}

.sci-work-link:hover {
    gap: 18px;
    color: #238db5;
}


/* =========================================================
   IMPACT GRID
========================================================= */

.sci-work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}


/* =========================================================
   CARDS
========================================================= */

.sci-work-card {
    display: grid;
    grid-template-columns: .9fr 1.1fr;

    min-height: 300px;

    background: #ffffff;

    border: 1px solid rgba(35,141,181,.12);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.sci-work-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(18,63,80,.11);
}

.sci-work-card-large {
    grid-column: span 2;
}

.sci-work-card-wide {
    grid-column: span 2;
}


/* =========================================================
   CARD IMAGE
========================================================= */

.sci-work-card-image {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.sci-work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform .6s ease;
}

.sci-work-card:hover
.sci-work-card-image img {
    transform: scale(1.06);
}


/* =========================================================
   ICON
========================================================= */

.sci-work-card-icon {
    position: absolute;
    left: 20px;
    bottom: 20px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #238db5;

    font-size: 20px;

    box-shadow: 0 8px 25px rgba(0,0,0,.12);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.sci-work-card-content {
    padding: 38px 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sci-work-card-label {
    display: block;
    margin-bottom: 15px;

    color: #238db5;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.sci-work-card-content h3 {
    margin: 0 0 15px;

    color: #123f50;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;
    line-height: 1.15;
    font-weight: 500;
}

.sci-work-card-content p {
    margin: 0 0 20px;

    color: #647980;

    font-size: 13px;
    line-height: 1.75;
}

.sci-work-card-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    width: fit-content;

    color: #12617e;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;

    transition:
        gap .25s ease,
        color .25s ease;
}

.sci-work-card-content a:hover {
    gap: 14px;
    color: #238db5;
}


/* =========================================================
   BOTTOM APPROACH BAR
========================================================= */

.sci-work-bottom {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px;

    margin-top: 70px;
    padding: 30px 35px;

    background: #123f50;
}

.sci-work-bottom-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.18);

    color: #6ec6e8;

    font-size: 20px;
}

.sci-work-bottom div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sci-work-bottom div:nth-child(2) span {
    color: #6ec6e8;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2.5px;
}

.sci-work-bottom div:nth-child(2) strong {
    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;
    font-weight: 500;
}

.sci-work-bottom-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 13px 20px;

    border: 1px solid rgba(255,255,255,.25);

    color: #ffffff;

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;

    transition:
        background .25s ease,
        border-color .25s ease,
        gap .25s ease;
}

.sci-work-bottom-button:hover {
    background: #238db5;
    border-color: #238db5;
    gap: 17px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .sci-work-feature {
        grid-template-columns: 1fr;
    }

    .sci-work-feature-image {
        min-height: 430px;
    }

    .sci-work-feature-content {
        padding: 50px;
    }

    .sci-work-card,
    .sci-work-card-large,
    .sci-work-card-wide {
        grid-column: span 1;
    }

    .sci-work-card {
        grid-template-columns: 1fr;
    }

    .sci-work-card-image {
        min-height: 270px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .sci-work-showcase {
        padding: 80px 0;
    }

    .sci-work-wrapper {
        width: 90%;
    }

    .sci-work-intro {
        margin-bottom: 45px;
    }

    .sci-work-intro h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .sci-work-intro p {
        font-size: 14px;
    }

    .sci-work-feature {
        margin-bottom: 55px;
    }

    .sci-work-feature-image {
        min-height: 330px;
    }

    .sci-work-feature-content {
        padding: 38px 28px;
    }

    .sci-work-feature-content h3 {
        font-size: 31px;
    }

    .sci-work-card-image {
        min-height: 240px;
    }

    .sci-work-card-content {
        padding: 32px 28px;
    }

    .sci-work-card-content h3 {
        font-size: 25px;
    }

    .sci-work-bottom {
        grid-template-columns: auto 1fr;
        gap: 18px;
        padding: 25px;
    }

    .sci-work-bottom-button {
        grid-column: 1 / -1;
        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .sci-work-intro h2 {
        font-size: 35px;
    }

    .sci-work-feature-content h3 {
        font-size: 27px;
    }

    .sci-work-bottom {
        padding: 22px;
    }

    .sci-work-bottom div:nth-child(2) strong {
        font-size: 17px;
    }

}

```css
.sci-elegant-brand-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.sci-elegant-brand-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.sci-elegant-brand-logo img {
    display: block;
    width: auto;
    height: 82px;
    max-width: 220px;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 900px) {
    .sci-elegant-brand-logo img {
        height: 68px;
        max-width: 190px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .sci-elegant-brand-logo img {
        height: 58px;
        max-width: 165px;
    }
}


```css
.sci-phone-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #078C03;
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sci-phone-button i {
    font-size: 15px;
}

.sci-phone-button:hover {
    background: #12617e;
    color: #ffffff !important;
    transform: translateY(-2px);
}


.sci-hero-new-content {
transform: translateY(-90px);
}

/* Keep it well positioned on tablets */
@media (max-width: 900px) {
.sci-hero-new-content {
transform: translateY(-55px);
}
}

/* Mobile */
@media (max-width: 600px) {
.sci-hero-new-content {
transform: translateY(-35px);
}
}


/* =========================================================
   SCI ABOUT US — INTRODUCTION SECTION
========================================================= */

.sci-about-intro {
    position: relative;
    width: 100%;
    padding: 115px 6%;
    background: #ffffff;
    overflow: hidden;
}

.sci-about-intro-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 90px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.sci-about-intro-content {
    position: relative;
    z-index: 2;
}

.sci-about-intro-label {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;

    color: #238db5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.sci-about-intro-label span {
    width: 38px;
    height: 2px;
    background: #6ec6e8;
    display: inline-block;
}


.sci-about-intro-content h2 {
    margin: 0 0 28px;

    color: #123f50;

    font-size: clamp(42px, 4.2vw, 64px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
}

.sci-about-intro-content h2 em {
    display: block;

    color: #238db5;
    font-style: normal;
    font-weight: 400;
}


.sci-about-intro-content p {
    max-width: 610px;

    margin: 0 0 18px;

    color: #5e737b;

    font-size: 16px;
    line-height: 1.85;
}

.sci-about-intro-content .sci-about-intro-lead {
    color: #365864;

    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;

    margin-bottom: 20px;
}


/* =========================================================
   PURPOSE BOX
========================================================= */

.sci-about-intro-purpose {
    display: flex;
    align-items: center;
    gap: 17px;

    margin-top: 35px;
    padding-top: 25px;

    border-top: 1px solid rgba(35, 141, 181, 0.16);

    max-width: 590px;
}

.sci-about-purpose-icon {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaf8fd;
    color: #238db5;

    font-size: 19px;
}

.sci-about-purpose-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sci-about-purpose-text span {
    color: #238db5;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.sci-about-purpose-text strong {
    color: #173f4d;

    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.sci-about-intro-visual {
    position: relative;

    padding: 0 0 28px 28px;
}


.sci-about-image-frame {
    position: relative;

    width: 100%;
    height: 590px;

    overflow: hidden;

    background: #dff3f9;

    border-radius: 3px;
}


.sci-about-image-frame::before {
    content: "";

    position: absolute;

    top: -1px;
    left: -1px;

    width: 90px;
    height: 90px;

    border-top: 4px solid #6ec6e8;
    border-left: 4px solid #6ec6e8;

    z-index: 4;
}


.sci-about-image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.sci-about-image-frame:hover img {
    transform: scale(1.04);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.sci-about-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(9, 43, 56, 0.88) 0%,
            rgba(9, 43, 56, 0.15) 45%,
            rgba(9, 43, 56, 0) 70%
        );

    z-index: 1;
}


/* =========================================================
   IMAGE CAPTION
========================================================= */

.sci-about-image-caption {
    position: absolute;

    left: 32px;
    right: 32px;
    bottom: 30px;

    display: flex;
    align-items: center;
    gap: 18px;

    z-index: 3;

    color: #ffffff;
}

.sci-about-image-caption > span {
    font-size: 38px;
    line-height: 1;

    font-weight: 300;

    color: #6ec6e8;
}

.sci-about-image-caption div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sci-about-image-caption strong {
    font-size: 17px;
    font-weight: 700;
}

.sci-about-image-caption small {
    color: rgba(255,255,255,0.75);

    font-size: 12px;
    letter-spacing: 0.4px;
}


/* =========================================================
   FLOATING ICON
========================================================= */

.sci-about-floating-mark {
    position: absolute;

    right: -20px;
    bottom: 0;

    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #238db5;
    color: #ffffff;

    border: 8px solid #ffffff;
    border-radius: 50%;

    font-size: 25px;

    box-shadow: 0 15px 35px rgba(18, 97, 126, 0.22);

    z-index: 5;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .sci-about-intro {
        padding: 90px 5%;
    }

    .sci-about-intro-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .sci-about-intro-content h2 {
        font-size: 44px;
        letter-spacing: -1.5px;
    }

    .sci-about-image-frame {
        height: 500px;
    }

    .sci-about-intro-visual {
        padding-left: 18px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 750px) {

    .sci-about-intro {
        padding: 75px 6%;
    }

    .sci-about-intro-container {
        display: flex;
        flex-direction: column;

        gap: 55px;
    }

    .sci-about-intro-content {
        width: 100%;
    }

    .sci-about-intro-content h2 {
        font-size: 39px;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .sci-about-intro-content .sci-about-intro-lead {
        font-size: 16px;
    }

    .sci-about-intro-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .sci-about-intro-purpose {
        margin-top: 28px;
    }

    .sci-about-intro-visual {
        width: 100%;
        padding: 0 0 20px 12px;
    }

    .sci-about-image-frame {
        height: 430px;
    }

    .sci-about-image-caption {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .sci-about-floating-mark {
        right: -5px;
        width: 68px;
        height: 68px;

        border-width: 6px;

        font-size: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .sci-about-intro {
        padding: 65px 5%;
    }

    .sci-about-intro-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .sci-about-intro-label span {
        width: 25px;
    }

    .sci-about-intro-content h2 {
        font-size: 34px;
    }

    .sci-about-image-frame {
        height: 370px;
    }

    .sci-about-image-caption > span {
        font-size: 30px;
    }

    .sci-about-image-caption strong {
        font-size: 15px;
    }

    .sci-about-image-caption small {
        font-size: 11px;
    }

}


/* =========================================================
   SCI ABOUT — ISOLATED IDENTITY SECTION
   Unique namespace: scia-identity-
========================================================= */

section.scia-identity-section {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 105px 6% !important;

    background: #ffffff !important;

    overflow: hidden !important;
    clear: both !important;

    isolation: isolate !important;
    box-sizing: border-box !important;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

section.scia-identity-section
.scia-identity-inner {

    position: relative !important;

    display: grid !important;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;

    align-items: center !important;

    width: 100% !important;
    max-width: 1240px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    gap: 85px !important;

    box-sizing: border-box !important;
}


/* =========================================================
   LEFT SIDE
========================================================= */

section.scia-identity-section
.scia-identity-copy {

    position: relative !important;

    display: block !important;

    width: 100% !important;
    max-width: 570px !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;
}


/* =========================================================
   KICKER
========================================================= */

section.scia-identity-section
.scia-identity-kicker {

    position: relative !important;

    display: flex !important;
    align-items: center !important;

    width: 100% !important;

    margin: 0 0 22px !important;
    padding: 0 !important;

    color: #238db5 !important;

    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    line-height: 1.4 !important;

    transform: none !important;
}

section.scia-identity-section
.scia-identity-kicker i {

    display: block !important;

    width: 36px !important;
    height: 2px !important;

    flex: 0 0 36px !important;

    margin: 0 12px 0 0 !important;
    padding: 0 !important;

    background: #6ec6e8 !important;

    transform: none !important;
}


/* =========================================================
   HEADING
========================================================= */

section.scia-identity-section
.scia-identity-copy h2 {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    margin: 0 0 28px !important;
    padding: 0 !important;

    color: #123f50 !important;

    font-family: inherit !important;

    font-size: clamp(42px, 4.2vw, 60px) !important;
    font-weight: 700 !important;

    line-height: 1.08 !important;
    letter-spacing: -2px !important;

    text-transform: none !important;

    transform: none !important;
}

section.scia-identity-section
.scia-identity-copy h2 span {

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #238db5 !important;

    font-weight: 400 !important;

    transform: none !important;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

section.scia-identity-section
.scia-identity-copy p {

    position: relative !important;

    display: block !important;

    width: 100% !important;
    max-width: 570px !important;

    margin: 0 0 18px !important;
    padding: 0 !important;

    font-family: inherit !important;

    transform: none !important;
}

section.scia-identity-section
.scia-identity-lead {

    color: #365864 !important;

    font-size: 18px !important;
    font-weight: 500 !important;

    line-height: 1.75 !important;
}

section.scia-identity-section
.scia-identity-text {

    color: #5e737b !important;

    font-size: 15.5px !important;
    font-weight: 400 !important;

    line-height: 1.85 !important;
}


/* =========================================================
   BOTTOM VALUES
========================================================= */

section.scia-identity-section
.scia-identity-signature {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    margin: 32px 0 0 !important;
    padding: 0 !important;

    transform: none !important;
}

section.scia-identity-section
.scia-identity-rule {

    display: block !important;

    width: 100% !important;
    height: 1px !important;

    margin: 0 0 17px !important;
    padding: 0 !important;

    background: rgba(35, 141, 181, 0.18) !important;
}

section.scia-identity-section
.scia-identity-values {

    display: flex !important;
    align-items: center !important;

    gap: 11px !important;

    margin: 0 !important;
    padding: 0 !important;
}

section.scia-identity-section
.scia-identity-values span {

    margin: 0 !important;
    padding: 0 !important;

    color: #238db5 !important;

    font-size: 11px !important;
    font-weight: 800 !important;

    letter-spacing: 1.5px !important;

    transform: none !important;
}

section.scia-identity-section
.scia-identity-values b {

    margin: 0 !important;
    padding: 0 !important;

    color: #6ec6e8 !important;

    font-size: 12px !important;

    transform: none !important;
}


/* =========================================================
   RIGHT IMAGE COLUMN
========================================================= */

section.scia-identity-section
.scia-identity-media {

    position: relative !important;

    display: block !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;
}


/* =========================================================
   IMAGE
========================================================= */

section.scia-identity-section
.scia-identity-photo {

    position: relative !important;

    display: block !important;

    width: 100% !important;
    height: 570px !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;

    background: #eaf8fd !important;

    transform: none !important;
}

section.scia-identity-section
.scia-identity-photo img {

    position: absolute !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover !important;
    object-position: center center !important;

    border: 0 !important;

    transform: none !important;
}


/* =========================================================
   IMAGE LABEL
========================================================= */

section.scia-identity-section
.scia-identity-photo-label {

    display: flex !important;
    align-items: center !important;

    gap: 10px !important;

    margin: 14px 0 0 !important;
    padding: 0 !important;

    color: #5e737b !important;

    font-size: 10px !important;
    font-weight: 800 !important;

    letter-spacing: 1.8px !important;
    line-height: 1.4 !important;

    transform: none !important;
}

section.scia-identity-section
.scia-identity-photo-label span {

    display: block !important;

    width: 26px !important;
    height: 2px !important;

    flex: 0 0 26px !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #6ec6e8 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    section.scia-identity-section {
        padding: 85px 5% !important;
    }

    section.scia-identity-section
    .scia-identity-inner {

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr) !important;

        gap: 45px !important;
    }

    section.scia-identity-section
    .scia-identity-copy h2 {

        font-size: 43px !important;
    }

    section.scia-identity-section
    .scia-identity-photo {

        height: 480px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    section.scia-identity-section {
        padding: 70px 6% !important;
    }

    section.scia-identity-section
    .scia-identity-inner {

        display: flex !important;
        flex-direction: column !important;

        align-items: stretch !important;

        gap: 45px !important;
    }

    section.scia-identity-section
    .scia-identity-copy {

        max-width: none !important;
    }

    section.scia-identity-section
    .scia-identity-copy h2 {

        font-size: 38px !important;
        line-height: 1.1 !important;
    }

    section.scia-identity-section
    .scia-identity-lead {

        font-size: 16px !important;
    }

    section.scia-identity-section
    .scia-identity-text {

        font-size: 15px !important;
    }

    section.scia-identity-section
    .scia-identity-media {

        width: 100% !important;
    }

    section.scia-identity-section
    .scia-identity-photo {

        height: 420px !important;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 450px) {

    section.scia-identity-section {
        padding: 60px 5% !important;
    }

    section.scia-identity-section
    .scia-identity-copy h2 {

        font-size: 33px !important;
        letter-spacing: -1px !important;
    }

    section.scia-identity-section
    .scia-identity-photo {

        height: 360px !important;
    }
}

.scia-mission-section {
position: relative !important;
width: 100% !important;
margin: 0 !important;
padding: 115px 6% 120px !important;
background: #eaf8fd !important;
overflow: hidden !important;
isolation: isolate !important;
box-sizing: border-box !important;
}

.scia-mission-inner {
position: relative !important;
width: 100% !important;
max-width: 1240px !important;
margin: 0 auto !important;
padding: 0 !important;
box-sizing: border-box !important;
}

/* =========================
INTRO
========================= */

.scia-mission-intro {
position: relative !important;
max-width: 760px !important;
margin: 0 auto 70px !important;
padding: 0 !important;
text-align: center !important;
}

.scia-mission-kicker {
display: flex !important;
align-items: center !important;
justify-content: center !important;
gap: 12px !important;
margin: 0 0 20px !important;
padding: 0 !important;
color: #238db5 !important;
font-size: 11px !important;
font-weight: 800 !important;
letter-spacing: 2.2px !important;
line-height: 1.4 !important;
}

.scia-mission-kicker span {
display: block !important;
width: 34px !important;
height: 2px !important;
background: #6ec6e8 !important;
flex: 0 0 34px !important;
}

.scia-mission-intro h2 {
margin: 0 0 25px !important;
padding: 0 !important;
color: #123f50 !important;
font-family: inherit !important;
font-size: clamp(42px, 4.5vw, 62px) !important;
font-weight: 700 !important;
line-height: 1.06 !important;
letter-spacing: -2.5px !important;
text-transform: none !important;
}

.scia-mission-intro h2 em {
display: block !important;
color: #238db5 !important;
font-weight: 400 !important;
font-style: normal !important;
}

.scia-mission-intro p {
max-width: 700px !important;
margin: 0 auto !important;
padding: 0 !important;
color: #55717c !important;
font-size: 17px !important;
line-height: 1.85 !important;
}

/* =========================
CARDS
========================= */

.scia-mission-grid {
display: grid !important;
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
gap: 24px !important;
width: 100% !important;
margin: 0 !important;
padding: 0 !important;
}

.scia-mission-card {
position: relative !important;
min-width: 0 !important;
min-height: 430px !important;
padding: 38px 34px 34px !important;
background: #ffffff !important;
border: 1px solid rgba(35, 141, 181, 0.10) !important;
box-shadow: 0 20px 55px rgba(25, 75, 90, 0.08) !important;
overflow: hidden !important;
transition:
transform 0.35s ease,
box-shadow 0.35s ease !important;
}

.scia-mission-card::after {
content: "" !important;
position: absolute !important;
left: 0 !important;
bottom: 0 !important;
width: 100% !important;
height: 4px !important;
background: #6ec6e8 !important;
transform: scaleX(0) !important;
transform-origin: left !important;
transition: transform 0.35s ease !important;
}

.scia-mission-card:hover {
transform: translateY(-8px) !important;
box-shadow: 0 28px 65px rgba(25, 75, 90, 0.14) !important;
}

.scia-mission-card:hover::after {
transform: scaleX(1) !important;
}

/* Featured card */

.scia-mission-featured {
background: #123f50 !important;
border-color: #123f50 !important;
}

.scia-mission-featured::after {
background: #6ec6e8 !important;
}

/* Number */

.scia-mission-number {
position: absolute !important;
top: 27px !important;
right: 30px !important;
color: rgba(35, 141, 181, 0.16) !important;
font-size: 48px !important;
font-weight: 800 !important;
line-height: 1 !important;
}

.scia-mission-featured .scia-mission-number {
color: rgba(255, 255, 255, 0.10) !important;
}

/* Icon */

.scia-mission-icon {
display: flex !important;
align-items: center !important;
justify-content: center !important;
width: 64px !important;
height: 64px !important;
margin: 0 0 32px !important;
background: #eaf8fd !important;
color: #238db5 !important;
border-radius: 50% !important;
font-size: 22px !important;
}

.scia-mission-featured .scia-mission-icon {
background: rgba(110, 198, 232, 0.14) !important;
color: #6ec6e8 !important;
}

/* Card typography */

.scia-mission-card h3 {
margin: 0 0 17px !important;
padding: 0 !important;
color: #123f50 !important;
font-family: inherit !important;
font-size: 27px !important;
font-weight: 700 !important;
line-height: 1.2 !important;
}

.scia-mission-featured h3 {
color: #ffffff !important;
}

.scia-mission-card p {
margin: 0 0 30px !important;
padding: 0 !important;
color: #607983 !important;
font-size: 15px !important;
line-height: 1.8 !important;
}

.scia-mission-featured p {
color: rgba(255, 255, 255, 0.72) !important;
}

/* Card links */

.scia-mission-card a {
position: absolute !important;
left: 34px !important;
bottom: 32px !important;
display: inline-flex !important;
align-items: center !important;
gap: 10px !important;
color: #238db5 !important;
text-decoration: none !important;
font-size: 12px !important;
font-weight: 800 !important;
letter-spacing: 0.7px !important;
text-transform: uppercase !important;
}

.scia-mission-featured a {
color: #6ec6e8 !important;
}

.scia-mission-card a i {
transition: transform 0.25s ease !important;
}

.scia-mission-card a:hover i {
transform: translateX(5px) !important;
}

/* =========================
STATEMENT
========================= */

.scia-mission-statement {
display: flex !important;
align-items: center !important;
gap: 28px !important;
margin: 70px 0 0 !important;
padding: 32px 38px !important;
background: #ffffff !important;
border-left: 4px solid #238db5 !important;
box-shadow: 0 15px 45px rgba(25, 75, 90, 0.07) !important;
}

.scia-mission-statement-mark {
display: flex !important;
align-items: center !important;
justify-content: center !important;
width: 58px !important;
height: 58px !important;
flex: 0 0 58px !important;
background: #eaf8fd !important;
color: #238db5 !important;
border-radius: 50% !important;
font-size: 19px !important;
}

.scia-mission-statement-content span {
display: block !important;
margin: 0 0 7px !important;
color: #238db5 !important;
font-size: 10px !important;
font-weight: 800 !important;
letter-spacing: 2px !important;
}

.scia-mission-statement-content p {
margin: 0 !important;
padding: 0 !important;
color: #294f5b !important;
font-size: 18px !important;
font-weight: 500 !important;
line-height: 1.6 !important;
}

/* =========================
TABLET
========================= */

@media (max-width: 900px) {

```
.scia-mission-section {
    padding: 90px 5% 95px !important;
}

.scia-mission-intro {
    margin-bottom: 55px !important;
}

.scia-mission-grid {
    grid-template-columns: 1fr !important;
    max-width: 650px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.scia-mission-card {
    min-height: 390px !important;
}
```

}

/* =========================
MOBILE
========================= */

@media (max-width: 600px) {

```
.scia-mission-section {
    padding: 70px 6% 75px !important;
}

.scia-mission-intro {
    margin-bottom: 42px !important;
}

.scia-mission-intro h2 {
    font-size: 39px !important;
    line-height: 1.08 !important;
    letter-spacing: -1.5px !important;
}

.scia-mission-intro p {
    font-size: 15.5px !important;
    line-height: 1.75 !important;
}

.scia-mission-card {
    min-height: 385px !important;
    padding: 32px 27px !important;
}

.scia-mission-card h3 {
    font-size: 25px !important;
}

.scia-mission-card a {
    left: 27px !important;
    bottom: 28px !important;
}

.scia-mission-statement {
    align-items: flex-start !important;
    gap: 18px !important;
    margin-top: 48px !important;
    padding: 25px !important;
}

.scia-mission-statement-mark {
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 46px !important;
    font-size: 15px !important;
}

.scia-mission-statement-content p {
    font-size: 15px !important;
}
```

}

@media (max-width: 430px) {

```
.scia-mission-section {
    padding-left: 5% !important;
    padding-right: 5% !important;
}

.scia-mission-intro h2 {
    font-size: 34px !important;
}

.scia-mission-card {
    min-height: 400px !important;
}
```

}


.scia-impact-intro {
position: relative !important;
width: 100% !important;
margin: 0 !important;
padding: 115px 6% 120px !important;
background: #ffffff !important;
overflow: hidden !important;
isolation: isolate !important;
box-sizing: border-box !important;
}

.scia-impact-intro-inner {
position: relative !important;
display: grid !important;
grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr) !important;
align-items: center !important;
gap: 90px !important;
width: 100% !important;
max-width: 1240px !important;
margin: 0 auto !important;
padding: 0 !important;
box-sizing: border-box !important;
}

/* =========================================
LEFT CONTENT
========================================= */

.scia-impact-intro-content {
position: relative !important;
width: 100% !important;
max-width: 570px !important;
margin: 0 !important;
padding: 0 !important;
transform: none !important;
}

.scia-impact-intro-kicker {
display: flex !important;
align-items: center !important;
gap: 12px !important;
margin: 0 0 22px !important;
padding: 0 !important;
color: #238db5 !important;
font-size: 11px !important;
font-weight: 800 !important;
letter-spacing: 2px !important;
line-height: 1.4 !important;
}

.scia-impact-intro-kicker span {
display: block !important;
width: 38px !important;
height: 2px !important;
flex: 0 0 38px !important;
background: #6ec6e8 !important;
}

.scia-impact-intro-content h2 {
position: relative !important;
width: 100% !important;
margin: 0 0 27px !important;
padding: 0 !important;
color: #123f50 !important;
font-family: inherit !important;
font-size: clamp(42px, 4.2vw, 60px) !important;
font-weight: 700 !important;
line-height: 1.07 !important;
letter-spacing: -2.5px !important;
text-transform: none !important;
}

.scia-impact-intro-content h2 em {
display: block !important;
margin: 0 !important;
padding: 0 !important;
color: #238db5 !important;
font-style: normal !important;
font-weight: 400 !important;
}

.scia-impact-intro-lead {
width: 100% !important;
max-width: 555px !important;
margin: 0 0 20px !important;
padding: 0 !important;
color: #365864 !important;
font-size: 18px !important;
font-weight: 500 !important;
line-height: 1.75 !important;
}

.scia-impact-intro-text {
width: 100% !important;
max-width: 555px !important;
margin: 0 !important;
padding: 0 !important;
color: #5e737b !important;
font-size: 15.5px !important;
font-weight: 400 !important;
line-height: 1.85 !important;
}

/* =========================================
BOTTOM LABEL
========================================= */

.scia-impact-intro-bottom {
width: 100% !important;
margin: 34px 0 0 !important;
padding: 0 !important;
}

.scia-impact-intro-line {
width: 100% !important;
height: 1px !important;
margin: 0 0 16px !important;
padding: 0 !important;
background: rgba(35, 141, 181, 0.18) !important;
}

.scia-impact-intro-caption {
display: flex !important;
align-items: center !important;
gap: 10px !important;
margin: 0 !important;
padding: 0 !important;
}

.scia-impact-intro-caption strong {
color: #238db5 !important;
font-size: 10px !important;
font-weight: 800 !important;
letter-spacing: 1.6px !important;
}

.scia-impact-intro-caption span {
color: #6ec6e8 !important;
font-size: 12px !important;
}

/* =========================================
RIGHT IMAGE
========================================= */

.scia-impact-intro-visual {
position: relative !important;
width: 100% !important;
margin: 0 !important;
padding: 0 0 35px 35px !important;
box-sizing: border-box !important;
}

.scia-impact-intro-image {
position: relative !important;
width: 100% !important;
height: 570px !important;
margin: 0 !important;
padding: 0 !important;
overflow: hidden !important;
background: #eaf8fd !important;
box-shadow: 0 28px 70px rgba(18, 63, 80, 0.13) !important;
}

.scia-impact-intro-image img {
position: absolute !important;
inset: 0 !important;
display: block !important;
width: 100% !important;
height: 100% !important;
max-width: none !important;
margin: 0 !important;
padding: 0 !important;
object-fit: cover !important;
object-position: center center !important;
border: 0 !important;
transform: none !important;
transition: transform 0.7s ease !important;
}

.scia-impact-intro-image:hover img {
transform: scale(1.035) !important;
}

/* =========================================
IMAGE ACCENT
========================================= */

.scia-impact-intro-visual::before {
content: "" !important;
position: absolute !important;
top: 35px !important;
left: 0 !important;
width: 105px !important;
height: 105px !important;
border: 2px solid #6ec6e8 !important;
z-index: -1 !important;
}

.scia-impact-intro-visual::after {
content: "" !important;
position: absolute !important;
right: -20px !important;
bottom: 5px !important;
width: 145px !important;
height: 145px !important;
background: #eaf8fd !important;
z-index: -1 !important;
}

/* =========================================
IMAGE BADGE
========================================= */

.scia-impact-intro-badge {
position: absolute !important;
left: 0 !important;
bottom: 0 !important;
display: flex !important;
align-items: center !important;
gap: 14px !important;
width: 245px !important;
min-height: 88px !important;
padding: 17px 20px !important;
background: #123f50 !important;
box-shadow: 0 18px 40px rgba(18, 63, 80, 0.20) !important;
box-sizing: border-box !important;
}

.scia-impact-intro-badge-icon {
display: flex !important;
align-items: center !important;
justify-content: center !important;
width: 43px !important;
height: 43px !important;
flex: 0 0 43px !important;
background: rgba(110, 198, 232, 0.15) !important;
color: #6ec6e8 !important;
border-radius: 50% !important;
font-size: 16px !important;
}

.scia-impact-intro-badge small {
display: block !important;
margin: 0 0 4px !important;
color: #6ec6e8 !important;
font-size: 9px !important;
font-weight: 800 !important;
letter-spacing: 1.5px !important;
}

.scia-impact-intro-badge strong {
display: block !important;
color: #ffffff !important;
font-size: 14px !important;
font-weight: 600 !important;
line-height: 1.3 !important;
}

/* =========================================
TABLET
========================================= */

@media (max-width: 950px) {

```
.scia-impact-intro {
    padding: 90px 5% 100px !important;
}

.scia-impact-intro-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) !important;
    gap: 45px !important;
}

.scia-impact-intro-content h2 {
    font-size: 43px !important;
}

.scia-impact-intro-image {
    height: 480px !important;
}
```

}

/* =========================================
MOBILE
========================================= */

@media (max-width: 700px) {

```
.scia-impact-intro {
    padding: 70px 6% 80px !important;
}

.scia-impact-intro-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 55px !important;
}

.scia-impact-intro-content {
    max-width: none !important;
}

.scia-impact-intro-content h2 {
    font-size: 38px !important;
    line-height: 1.1 !important;
    letter-spacing: -1.5px !important;
}

.scia-impact-intro-lead {
    font-size: 16px !important;
}

.scia-impact-intro-text {
    font-size: 15px !important;
}

.scia-impact-intro-visual {
    padding: 0 0 30px 20px !important;
}

.scia-impact-intro-image {
    height: 430px !important;
}

.scia-impact-intro-badge {
    width: 225px !important;
    min-height: 78px !important;
    padding: 14px 16px !important;
}

.scia-impact-intro-badge-icon {
    width: 38px !important;
    height: 38px !important;
    flex-basis: 38px !important;
}
```

}

@media (max-width: 450px) {

```
.scia-impact-intro {
    padding: 60px 5% 70px !important;
}

.scia-impact-intro-content h2 {
    font-size: 33px !important;
    letter-spacing: -1px !important;
}

.scia-impact-intro-visual {
    padding-left: 12px !important;
}

.scia-impact-intro-image {
    height: 370px !important;
}

.scia-impact-intro-badge {
    width: 205px !important;
}
```

}


.scia-impact-story {
position: relative !important;
width: 100% !important;
margin: 0 !important;
padding: 125px 6% 130px !important;
background: #eaf8fd !important;
overflow: hidden !important;
isolation: isolate !important;
box-sizing: border-box !important;
}

.scia-impact-story-inner {
position: relative !important;
width: 100% !important;
max-width: 1240px !important;
margin: 0 auto !important;
padding: 0 !important;
}

/* =========================================
HEADER
========================================= */

.scia-impact-story-header {
max-width: 820px !important;
margin: 0 0 70px !important;
padding: 0 !important;
}

.scia-impact-story-kicker {
display: flex !important;
align-items: center !important;
gap: 12px !important;
margin: 0 0 20px !important;
color: #238db5 !important;
font-size: 11px !important;
font-weight: 800 !important;
letter-spacing: 2.2px !important;
}

.scia-impact-story-kicker span {
display: block !important;
width: 38px !important;
height: 2px !important;
flex: 0 0 38px !important;
background: #6ec6e8 !important;
}

.scia-impact-story-header h2 {
margin: 0 0 24px !important;
padding: 0 !important;
color: #123f50 !important;
font-size: clamp(44px, 5vw, 68px) !important;
font-weight: 700 !important;
line-height: 1.04 !important;
letter-spacing: -3px !important;
}

.scia-impact-story-header h2 em {
display: block !important;
color: #238db5 !important;
font-style: normal !important;
font-weight: 400 !important;
}

.scia-impact-story-header p {
max-width: 720px !important;
margin: 0 !important;
color: #55717c !important;
font-size: 17px !important;
line-height: 1.85 !important;
}

/* =========================================
FEATURE
========================================= */

.scia-impact-feature {
display: grid !important;
grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) !important;
width: 100% !important;
min-height: 610px !important;
margin: 0 !important;
padding: 0 !important;
background: #ffffff !important;
box-shadow: 0 25px 70px rgba(18, 63, 80, 0.10) !important;
}

/* IMAGE */

.scia-impact-feature-image {
position: relative !important;
min-width: 0 !important;
min-height: 610px !important;
overflow: hidden !important;
}

.scia-impact-feature-image img {
position: absolute !important;
inset: 0 !important;
width: 100% !important;
height: 100% !important;
max-width: none !important;
object-fit: cover !important;
object-position: center center !important;
transition: transform 0.7s ease !important;
}

.scia-impact-feature-image:hover img {
transform: scale(1.04) !important;
}

.scia-impact-feature-overlay {
position: absolute !important;
inset: 0 !important;
background: linear-gradient(
180deg,
rgba(18, 63, 80, 0.02) 45%,
rgba(18, 63, 80, 0.58) 100%
) !important;
}

.scia-impact-feature-label {
position: absolute !important;
left: 32px !important;
bottom: 30px !important;
display: flex !important;
align-items: center !important;
gap: 10px !important;
color: #ffffff !important;
font-size: 10px !important;
font-weight: 800 !important;
letter-spacing: 1.8px !important;
}

.scia-impact-feature-label span {
width: 28px !important;
height: 2px !important;
background: #6ec6e8 !important;
}

/* CONTENT */

.scia-impact-feature-content {
position: relative !important;
display: flex !important;
flex-direction: column !important;
justify-content: center !important;
min-width: 0 !important;
padding: 65px 58px !important;
}

.scia-impact-feature-number {
position: absolute !important;
top: 28px !important;
right: 35px !important;
color: rgba(35, 141, 181, 0.10) !important;
font-size: 72px !important;
font-weight: 800 !important;
line-height: 1 !important;
}

.scia-impact-feature-icon {
display: flex !important;
align-items: center !important;
justify-content: center !important;
width: 66px !important;
height: 66px !important;
margin: 0 0 28px !important;
background: #eaf8fd !important;
color: #238db5 !important;
border-radius: 50% !important;
font-size: 23px !important;
}

.scia-impact-feature-content h3 {
margin: 0 0 20px !important;
color: #123f50 !important;
font-size: 34px !important;
font-weight: 700 !important;
line-height: 1.15 !important;
}

.scia-impact-feature-content p {
margin: 0 0 17px !important;
color: #5e737b !important;
font-size: 15.5px !important;
line-height: 1.85 !important;
}

.scia-impact-feature-link {
display: inline-flex !important;
align-items: center !important;
gap: 11px !important;
width: fit-content !important;
margin-top: 14px !important;
color: #238db5 !important;
text-decoration: none !important;
font-size: 11px !important;
font-weight: 800 !important;
letter-spacing: 1.2px !important;
text-transform: uppercase !important;
}

.scia-impact-feature-link i {
transition: transform 0.25s ease !important;
}

.scia-impact-feature-link:hover i {
transform: translateX(5px) !important;
}

/* =========================================
IMPACT AREAS
========================================= */

.scia-impact-areas {
display: grid !important;
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
gap: 22px !important;
margin: 24px 0 0 !important;
}

.scia-impact-area {
position: relative !important;
min-height: 355px !important;
padding: 35px 32px 30px !important;
background: #ffffff !important;
box-shadow: 0 15px 45px rgba(18, 63, 80, 0.07) !important;
transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.scia-impact-area:hover {
transform: translateY(-7px) !important;
box-shadow: 0 25px 55px rgba(18, 63, 80, 0.12) !important;
}

.scia-impact-area-top {
display: flex !important;
align-items: flex-start !important;
justify-content: space-between !important;
margin-bottom: 32px !important;
}

.scia-impact-area-top > span {
color: rgba(35, 141, 181, 0.30) !important;
font-size: 14px !important;
font-weight: 800 !important;
}

.scia-impact-area-icon {
display: flex !important;
align-items: center !important;
justify-content: center !important;
width: 54px !important;
height: 54px !important;
background: #eaf8fd !important;
color: #238db5 !important;
border-radius: 50% !important;
font-size: 18px !important;
}

.scia-impact-area h3 {
margin: 0 0 15px !important;
color: #123f50 !important;
font-size: 25px !important;
font-weight: 700 !important;
}

.scia-impact-area p {
margin: 0 !important;
color: #607983 !important;
font-size: 14.5px !important;
line-height: 1.8 !important;
}

.scia-impact-area-line {
width: 100% !important;
height: 1px !important;
margin: 24px 0 14px !important;
background: rgba(35, 141, 181, 0.14) !important;
}

.scia-impact-area strong {
color: #238db5 !important;
font-size: 10px !important;
font-weight: 800 !important;
letter-spacing: 1.3px !important;
text-transform: uppercase !important;
}

/* =========================================
STATEMENT
========================================= */

.scia-impact-story-statement {
display: grid !important;
grid-template-columns: 0.75fr 1.25fr !important;
gap: 70px !important;
align-items: center !important;
margin-top: 80px !important;
padding: 58px 60px !important;
background: #123f50 !important;
box-shadow: 0 25px 65px rgba(18, 63, 80, 0.16) !important;
}

.scia-impact-story-statement-label {
display: block !important;
margin-bottom: 16px !important;
color: #6ec6e8 !important;
font-size: 10px !important;
font-weight: 800 !important;
letter-spacing: 2px !important;
}

.scia-impact-story-statement-left h3 {
margin: 0 !important;
color: #ffffff !important;
font-size: 38px !important;
line-height: 1.15 !important;
}

.scia-impact-story-statement-left h3 em {
display: block !important;
color: #6ec6e8 !important;
font-style: normal !important;
font-weight: 400 !important;
}

.scia-impact-story-statement-right p {
margin: 0 0 25px !important;
color: rgba(255, 255, 255, 0.76) !important;
font-size: 16px !important;
line-height: 1.85 !important;
}

.scia-impact-story-statement-points {
display: flex !important;
flex-wrap: wrap !important;
gap: 12px 25px !important;
}

.scia-impact-story-statement-points span {
display: inline-flex !important;
align-items: center !important;
gap: 8px !important;
color: #ffffff !important;
font-size: 11px !important;
font-weight: 700 !important;
}

.scia-impact-story-statement-points i {
color: #6ec6e8 !important;
}

/* =========================================
TABLET
========================================= */

@media (max-width: 950px) {

```
.scia-impact-story {
    padding: 95px 5% 105px !important;
}

.scia-impact-feature {
    grid-template-columns: 1fr !important;
}

.scia-impact-feature-image {
    min-height: 480px !important;
}

.scia-impact-feature-content {
    min-height: 500px !important;
}

.scia-impact-areas {
    grid-template-columns: 1fr !important;
}

.scia-impact-area {
    min-height: 300px !important;
}

.scia-impact-story-statement {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
}
```

}

/* =========================================
MOBILE
========================================= */

@media (max-width: 600px) {

```
.scia-impact-story {
    padding: 70px 6% 80px !important;
}

.scia-impact-story-header {
    margin-bottom: 45px !important;
}

.scia-impact-story-header h2 {
    font-size: 39px !important;
    line-height: 1.08 !important;
    letter-spacing: -1.5px !important;
}

.scia-impact-story-header p {
    font-size: 15px !important;
}

.scia-impact-feature-image {
    min-height: 370px !important;
}

.scia-impact-feature-content {
    min-height: 0 !important;
    padding: 48px 30px 55px !important;
}

.scia-impact-feature-content h3 {
    font-size: 29px !important;
}

.scia-impact-feature-content p {
    font-size: 15px !important;
}

.scia-impact-feature-number {
    font-size: 58px !important;
    right: 25px !important;
}

.scia-impact-feature-label {
    left: 22px !important;
    bottom: 22px !important;
}

.scia-impact-area {
    min-height: 0 !important;
    padding: 30px 27px 28px !important;
}

.scia-impact-story-statement {
    margin-top: 55px !important;
    padding: 38px 28px !important;
}

.scia-impact-story-statement-left h3 {
    font-size: 31px !important;
}
```

}

@media (max-width: 430px) {

```
.scia-impact-story {
    padding-left: 5% !important;
    padding-right: 5% !important;
}

.scia-impact-story-header h2 {
    font-size: 34px !important;
}

.scia-impact-feature-image {
    min-height: 330px !important;
}

.scia-impact-feature-content {
    padding-left: 24px !important;
    padding-right: 24px !important;
}
```

}


.scia-team-intro {
    position: relative !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 120px 6% 125px !important;
    background: #ffffff !important;
    overflow: hidden !important;
    isolation: isolate !important;
    box-sizing: border-box !important;
}

.scia-team-intro-inner {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr) !important;
    align-items: center !important;
    gap: 95px !important;
    width: 100% !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}


/* =========================
   VISUAL AREA
========================= */

.scia-team-intro-visual {
    position: relative !important;
    width: 100% !important;
    min-height: 610px !important;
    padding: 0 45px 45px 0 !important;
    box-sizing: border-box !important;
}

.scia-team-intro-image-main {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: calc(100% - 45px) !important;
    height: 540px !important;
    overflow: hidden !important;
    background: #eaf8fd !important;
    box-shadow: 0 25px 65px rgba(18, 63, 80, 0.13) !important;
}

.scia-team-intro-image-main img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center top !important;
    transition: transform 0.7s ease !important;
}

.scia-team-intro-image-main:hover img {
    transform: scale(1.035) !important;
}


/* SECOND IMAGE */

.scia-team-intro-image-small {
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 235px !important;
    height: 205px !important;
    padding: 8px !important;
    background: #ffffff !important;
    box-shadow: 0 20px 50px rgba(18, 63, 80, 0.16) !important;
    z-index: 3 !important;
}

.scia-team-intro-image-small img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}


/* DECORATIVE ACCENT */

.scia-team-intro-accent {
    position: absolute !important;
    left: -25px !important;
    top: 45px !important;
    width: 105px !important;
    height: 105px !important;
    border: 2px solid #6ec6e8 !important;
    z-index: -1 !important;
}

.scia-team-intro-visual::after {
    content: "" !important;
    position: absolute !important;
    right: -30px !important;
    top: 25px !important;
    width: 170px !important;
    height: 170px !important;
    background: #eaf8fd !important;
    z-index: -2 !important;
}


/* BADGE */

.scia-team-intro-badge {
    position: absolute !important;
    left: 25px !important;
    bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    width: 245px !important;
    min-height: 86px !important;
    padding: 16px 20px !important;
    background: #123f50 !important;
    box-shadow: 0 18px 45px rgba(18, 63, 80, 0.20) !important;
    z-index: 5 !important;
    box-sizing: border-box !important;
}

.scia-team-intro-badge-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px !important;
    border-radius: 50% !important;
    background: rgba(110, 198, 232, 0.15) !important;
    color: #6ec6e8 !important;
    font-size: 17px !important;
}

.scia-team-intro-badge small {
    display: block !important;
    margin: 0 0 4px !important;
    color: #6ec6e8 !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: 1.7px !important;
}

.scia-team-intro-badge strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}


/* =========================
   CONTENT
========================= */

.scia-team-intro-content {
    position: relative !important;
    width: 100% !important;
    max-width: 570px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.scia-team-intro-kicker {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 0 21px !important;
    padding: 0 !important;
    color: #238db5 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 2.1px !important;
}

.scia-team-intro-kicker span {
    display: block !important;
    width: 38px !important;
    height: 2px !important;
    flex: 0 0 38px !important;
    background: #6ec6e8 !important;
}

.scia-team-intro-content h2 {
    margin: 0 0 27px !important;
    padding: 0 !important;
    color: #123f50 !important;
    font-size: clamp(43px, 4.3vw, 61px) !important;
    font-weight: 700 !important;
    line-height: 1.06 !important;
    letter-spacing: -2.6px !important;
}

.scia-team-intro-content h2 em {
    display: block !important;
    color: #238db5 !important;
    font-style: normal !important;
    font-weight: 400 !important;
}

.scia-team-intro-lead {
    max-width: 550px !important;
    margin: 0 0 19px !important;
    padding: 0 !important;
    color: #365864 !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1.75 !important;
}

.scia-team-intro-text {
    max-width: 550px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #5e737b !important;
    font-size: 15.5px !important;
    font-weight: 400 !important;
    line-height: 1.85 !important;
}


/* =========================
   VALUES
========================= */

.scia-team-intro-values {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    margin: 34px 0 0 !important;
    padding: 27px 0 0 !important;
    border-top: 1px solid rgba(35, 141, 181, 0.16) !important;
}

.scia-team-intro-value {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.scia-team-intro-value-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 43px !important;
    height: 43px !important;
    flex: 0 0 43px !important;
    border-radius: 50% !important;
    background: #eaf8fd !important;
    color: #238db5 !important;
    font-size: 15px !important;
}

.scia-team-intro-value strong {
    display: block !important;
    margin: 0 0 2px !important;
    color: #123f50 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.scia-team-intro-value small {
    display: block !important;
    color: #71858c !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .scia-team-intro {
        padding: 95px 5% 105px !important;
    }

    .scia-team-intro-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr) !important;
        gap: 55px !important;
    }

    .scia-team-intro-visual {
        min-height: 520px !important;
    }

    .scia-team-intro-image-main {
        height: 455px !important;
        width: calc(100% - 30px) !important;
    }

    .scia-team-intro-image-small {
        width: 185px !important;
        height: 165px !important;
    }

    .scia-team-intro-content h2 {
        font-size: 44px !important;
    }

    .scia-team-intro-lead {
        font-size: 16px !important;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .scia-team-intro {
        padding: 70px 6% 80px !important;
    }

    .scia-team-intro-inner {
        display: flex !important;
        flex-direction: column !important;
        gap: 65px !important;
    }

    .scia-team-intro-content {
        max-width: none !important;
    }

    .scia-team-intro-content h2 {
        font-size: 39px !important;
        line-height: 1.08 !important;
        letter-spacing: -1.5px !important;
    }

    .scia-team-intro-lead {
        font-size: 16px !important;
    }

    .scia-team-intro-text {
        font-size: 15px !important;
    }

    .scia-team-intro-visual {
        min-height: 450px !important;
        padding-right: 20px !important;
    }

    .scia-team-intro-image-main {
        width: calc(100% - 20px) !important;
        height: 390px !important;
    }

    .scia-team-intro-image-small {
        width: 160px !important;
        height: 140px !important;
    }

    .scia-team-intro-badge {
        left: 10px !important;
        width: 220px !important;
        min-height: 75px !important;
        padding: 13px 16px !important;
    }

    .scia-team-intro-badge-icon {
        width: 38px !important;
        height: 38px !important;
        flex-basis: 38px !important;
    }

    .scia-team-intro-values {
        margin-top: 29px !important;
        padding-top: 23px !important;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 430px) {

    .scia-team-intro {
        padding: 60px 5% 70px !important;
    }

    .scia-team-intro-inner {
        gap: 55px !important;
    }

    .scia-team-intro-content h2 {
        font-size: 34px !important;
    }

    .scia-team-intro-visual {
        min-height: 390px !important;
        padding-right: 12px !important;
    }

    .scia-team-intro-image-main {
        height: 335px !important;
        width: calc(100% - 12px) !important;
    }

    .scia-team-intro-image-small {
        width: 135px !important;
        height: 120px !important;
    }

    .scia-team-intro-badge {
        width: 205px !important;
    }
}

.scia-team-intro {
    position: relative !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 120px 6% 105px !important;
    background: #ffffff !important;
    overflow: hidden !important;
    isolation: isolate !important;
    box-sizing: border-box !important;
}

.scia-team-intro-inner {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
    align-items: center !important;
    gap: 90px !important;
    width: 100% !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}


/* =========================
   LEFT CONTENT
========================= */

.scia-team-intro-content {
    position: relative !important;
    width: 100% !important;
    max-width: 560px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.scia-team-intro-kicker {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 0 22px !important;
    color: #238db5 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 2.1px !important;
    line-height: 1.4 !important;
}

.scia-team-intro-kicker span {
    display: block !important;
    width: 38px !important;
    height: 2px !important;
    flex: 0 0 38px !important;
    background: #6ec6e8 !important;
}

.scia-team-intro-content h2 {
    margin: 0 0 28px !important;
    padding: 0 !important;
    color: #123f50 !important;
    font-size: clamp(44px, 4.5vw, 63px) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: -2.8px !important;
}

.scia-team-intro-content h2 em {
    display: block !important;
    color: #238db5 !important;
    font-style: normal !important;
    font-weight: 400 !important;
}

.scia-team-intro-lead {
    max-width: 540px !important;
    margin: 0 0 20px !important;
    color: #365864 !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1.75 !important;
}

.scia-team-intro-text {
    max-width: 540px !important;
    margin: 0 !important;
    color: #607983 !important;
    font-size: 15.5px !important;
    line-height: 1.85 !important;
}


/* =========================
   FEATURE GRID
========================= */

.scia-team-intro-features {
    position: relative !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    width: 100% !important;
}

.scia-team-feature {
    position: relative !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 18px !important;
    min-height: 210px !important;
    padding: 31px 28px !important;
    background: #eaf8fd !important;
    border: 1px solid rgba(35, 141, 181, 0.08) !important;
    box-sizing: border-box !important;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease !important;
}

.scia-team-feature:hover {
    transform: translateY(-6px) !important;
    background: #ffffff !important;
    box-shadow: 0 20px 45px rgba(18, 63, 80, 0.10) !important;
}


/* ICON */

.scia-team-feature-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 53px !important;
    height: 53px !important;
    flex: 0 0 53px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #238db5 !important;
    font-size: 19px !important;
    box-shadow: 0 8px 20px rgba(35, 141, 181, 0.08) !important;
    transition:
        background 0.3s ease,
        color 0.3s ease !important;
}

.scia-team-feature:hover .scia-team-feature-icon {
    background: #123f50 !important;
    color: #6ec6e8 !important;
}


/* CONTENT */

.scia-team-feature-content {
    min-width: 0 !important;
}

.scia-team-feature-content > span {
    display: block !important;
    margin: 0 0 7px !important;
    color: rgba(35, 141, 181, 0.45) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
}

.scia-team-feature-content h3 {
    margin: 0 0 10px !important;
    color: #123f50 !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.scia-team-feature-content p {
    margin: 0 !important;
    color: #607983 !important;
    font-size: 13.5px !important;
    line-height: 1.7 !important;
}


/* =========================
   BOTTOM STATEMENT
========================= */

.scia-team-intro-bottom {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
    width: 100% !important;
    max-width: 1240px !important;
    margin: 85px auto 0 !important;
    padding: 0 !important;
}

.scia-team-intro-bottom-line {
    display: block !important;
    flex: 1 !important;
    height: 1px !important;
    background: rgba(35, 141, 181, 0.16) !important;
}

.scia-team-intro-bottom-text {
    display: flex !important;
    align-items: center !important;
    gap: 11px !important;
    white-space: nowrap !important;
}

.scia-team-intro-bottom-text i {
    color: #238db5 !important;
    font-size: 13px !important;
}

.scia-team-intro-bottom-text span {
    color: #238db5 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 1.7px !important;
}

.scia-team-intro-bottom-text b {
    color: #6ec6e8 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .scia-team-intro {
        padding: 95px 5% 100px !important;
    }

    .scia-team-intro-inner {
        grid-template-columns: 1fr !important;
        gap: 65px !important;
    }

    .scia-team-intro-content {
        max-width: 760px !important;
    }

    .scia-team-intro-content h2 {
        font-size: 50px !important;
    }

    .scia-team-intro-features {
        max-width: 850px !important;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

    .scia-team-intro {
        padding: 70px 6% 75px !important;
    }

    .scia-team-intro-inner {
        gap: 50px !important;
    }

    .scia-team-intro-content h2 {
        font-size: 39px !important;
        line-height: 1.08 !important;
        letter-spacing: -1.5px !important;
    }

    .scia-team-intro-lead {
        font-size: 16px !important;
    }

    .scia-team-intro-text {
        font-size: 15px !important;
    }

    .scia-team-intro-features {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .scia-team-feature {
        min-height: 0 !important;
        padding: 27px 24px !important;
    }

    .scia-team-intro-bottom {
        margin-top: 60px !important;
        gap: 15px !important;
    }

    .scia-team-intro-bottom-line {
        min-width: 20px !important;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 430px) {

    .scia-team-intro {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }

    .scia-team-intro-content h2 {
        font-size: 34px !important;
    }

    .scia-team-feature {
        gap: 14px !important;
        padding: 24px 20px !important;
    }

    .scia-team-feature-icon {
        width: 47px !important;
        height: 47px !important;
        flex-basis: 47px !important;
        font-size: 17px !important;
    }

    .scia-team-feature-content h3 {
        font-size: 19px !important;
    }

    .scia-team-feature-content p {
        font-size: 13px !important;
    }

    .scia-team-intro-bottom-text {
        gap: 7px !important;
    }

    .scia-team-intro-bottom-text span {
        font-size: 8px !important;
        letter-spacing: 1px !important;
    }
}

.scia-contact-connect {
    position: relative !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 115px 6% 120px !important;
    background: #eaf8fd !important;
    overflow: hidden !important;
    isolation: isolate !important;
    box-sizing: border-box !important;
}

.scia-contact-connect::before {
    content: "" !important;
    position: absolute !important;
    width: 420px !important;
    height: 420px !important;
    right: -180px !important;
    top: -180px !important;
    border: 1px solid rgba(35, 141, 181, 0.10) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
}

.scia-contact-connect::after {
    content: "" !important;
    position: absolute !important;
    width: 260px !important;
    height: 260px !important;
    left: -150px !important;
    bottom: -150px !important;
    border: 1px solid rgba(35, 141, 181, 0.08) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
}


/* =========================================
   MAIN LAYOUT
========================================= */

.scia-contact-connect-inner {
    position: relative !important;
    z-index: 2 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr) !important;
    gap: 75px !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
}


/* =========================================
   FORM AREA
========================================= */

.scia-contact-form-area {
    width: 100% !important;
    max-width: 650px !important;
    padding: 10px 0 !important;
}

.scia-contact-form-kicker {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 0 21px !important;
    color: #238db5 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 2.1px !important;
}

.scia-contact-form-kicker span {
    display: block !important;
    width: 38px !important;
    height: 2px !important;
    background: #6ec6e8 !important;
    flex: 0 0 38px !important;
}

.scia-contact-form-area h2 {
    margin: 0 0 22px !important;
    color: #123f50 !important;
    font-size: clamp(43px, 4.2vw, 59px) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: -2.5px !important;
}

.scia-contact-form-area h2 em {
    display: block !important;
    color: #238db5 !important;
    font-style: normal !important;
    font-weight: 400 !important;
}

.scia-contact-form-intro {
    max-width: 570px !important;
    margin: 0 0 38px !important;
    color: #5e737b !important;
    font-size: 15px !important;
    line-height: 1.85 !important;
}


/* =========================================
   FORM
========================================= */

.scia-contact-form {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.scia-contact-form-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.scia-contact-field {
    width: 100% !important;
    margin: 0 0 20px !important;
}

.scia-contact-field label {
    display: block !important;
    margin: 0 0 8px !important;
    color: #173f4d !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.scia-contact-input,
.scia-contact-textarea {
    position: relative !important;
    width: 100% !important;
}

.scia-contact-input i,
.scia-contact-textarea i {
    position: absolute !important;
    left: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #238db5 !important;
    font-size: 13px !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

.scia-contact-textarea i {
    top: 20px !important;
    transform: none !important;
}

.scia-contact-input input,
.scia-contact-textarea textarea {
    width: 100% !important;
    margin: 0 !important;
    padding: 15px 18px 15px 48px !important;
    border: 1px solid rgba(35, 141, 181, 0.14) !important;
    border-radius: 0 !important;
    outline: none !important;
    background: #ffffff !important;
    color: #173f4d !important;
    font-family: inherit !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    box-shadow: 0 8px 25px rgba(18, 63, 80, 0.035) !important;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease !important;
}

.scia-contact-input input {
    height: 52px !important;
}

.scia-contact-textarea textarea {
    min-height: 145px !important;
    resize: vertical !important;
    padding-top: 16px !important;
}

.scia-contact-input input::placeholder,
.scia-contact-textarea textarea::placeholder {
    color: #9aadb4 !important;
}

.scia-contact-input input:focus,
.scia-contact-textarea textarea:focus {
    border-color: #238db5 !important;
    box-shadow: 0 8px 28px rgba(35, 141, 181, 0.10) !important;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.scia-contact-submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    min-width: 185px !important;
    height: 53px !important;
    margin: 4px 0 0 !important;
    padding: 0 24px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #123f50 !important;
    color: #ffffff !important;
    font-family: inherit !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease !important;
}

.scia-contact-submit i {
    font-size: 10px !important;
    transition: transform 0.25s ease !important;
}

.scia-contact-submit:hover {
    background: #238db5 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 25px rgba(18, 63, 80, 0.15) !important;
}

.scia-contact-submit:hover i {
    transform: translateX(4px) !important;
}


/* =========================================
   LOCATION CARD
========================================= */

.scia-contact-location-area {
    width: 100% !important;
}

.scia-contact-location-card {
    width: 100% !important;
    height: 100% !important;
    padding: 34px !important;
    background: #ffffff !important;
    border: 1px solid rgba(35, 141, 181, 0.10) !important;
    box-shadow: 0 25px 60px rgba(18, 63, 80, 0.08) !important;
    box-sizing: border-box !important;
}


/* =========================================
   LOCATION HEADER
========================================= */

.scia-contact-location-top {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 20px !important;
    margin: 0 0 28px !important;
}

.scia-contact-location-kicker {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    margin: 0 0 11px !important;
    color: #238db5 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 1.8px !important;
}

.scia-contact-location-kicker span {
    display: block !important;
    width: 25px !important;
    height: 2px !important;
    background: #6ec6e8 !important;
}

.scia-contact-location-top h3 {
    margin: 0 !important;
    color: #123f50 !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: -1px !important;
}

.scia-contact-location-top h3 em {
    color: #238db5 !important;
    font-style: normal !important;
    font-weight: 400 !important;
}

.scia-contact-location-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px !important;
    background: #eaf8fd !important;
    color: #238db5 !important;
    font-size: 17px !important;
}


/* =========================================
   ADDRESS
========================================= */

.scia-contact-address {
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
    margin: 0 0 23px !important;
    padding: 17px 18px !important;
    background: #f5fbfd !important;
    border-left: 3px solid #6ec6e8 !important;
}

.scia-contact-address-icon {
    color: #238db5 !important;
    font-size: 15px !important;
    padding-top: 2px !important;
}

.scia-contact-address span {
    display: block !important;
    margin: 0 0 4px !important;
    color: #238db5 !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
}

.scia-contact-address p {
    margin: 0 !important;
    color: #365864 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
}


/* =========================================
   MAP
========================================= */

.scia-contact-map {
    position: relative !important;
    width: 100% !important;
    height: 330px !important;
    overflow: hidden !important;
    background: #dbeef4 !important;
}

.scia-contact-map iframe {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    filter: saturate(0.65) contrast(0.95) !important;
}


/* =========================================
   LOCATION FOOTER
========================================= */

.scia-contact-location-bottom {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    margin: 23px 0 0 !important;
    padding: 0 !important;
}

.scia-contact-location-contact {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.scia-contact-location-contact > i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: #eaf8fd !important;
    color: #238db5 !important;
    font-size: 12px !important;
}

.scia-contact-location-contact span {
    display: block !important;
    margin: 0 0 2px !important;
    color: #7b9098 !important;
    font-size: 8px !important;
    font-weight: 800 !important;
    letter-spacing: 1.3px !important;
}

.scia-contact-location-contact a {
    color: #123f50 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.scia-contact-whatsapp {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    min-height: 40px !important;
    padding: 0 15px !important;
    background: #123f50 !important;
    color: #ffffff !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.8px !important;
    text-decoration: none !important;
    transition:
        background 0.25s ease,
        transform 0.25s ease !important;
}

.scia-contact-whatsapp i {
    font-size: 14px !important;
}

.scia-contact-whatsapp:hover {
    background: #238db5 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .scia-contact-connect {
        padding: 95px 5% 100px !important;
    }

    .scia-contact-connect-inner {
        grid-template-columns: 1fr !important;
        gap: 70px !important;
    }

    .scia-contact-form-area {
        max-width: 800px !important;
    }

    .scia-contact-form-intro {
        max-width: 700px !important;
    }

    .scia-contact-location-area {
        max-width: 800px !important;
    }

    .scia-contact-location-card {
        height: auto !important;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .scia-contact-connect {
        padding: 72px 6% 80px !important;
    }

    .scia-contact-connect-inner {
        gap: 50px !important;
    }

    .scia-contact-form-area h2 {
        font-size: 39px !important;
        letter-spacing: -1.5px !important;
    }

    .scia-contact-form-intro {
        font-size: 14px !important;
        margin-bottom: 30px !important;
    }

    .scia-contact-form-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .scia-contact-field {
        margin-bottom: 17px !important;
    }

    .scia-contact-location-card {
        padding: 24px !important;
    }

    .scia-contact-location-top h3 {
        font-size: 28px !important;
    }

    .scia-contact-map {
        height: 280px !important;
    }

    .scia-contact-location-bottom {
        align-items: flex-start !important;
        flex-direction: column !important;
    }

    .scia-contact-whatsapp {
        width: 100% !important;
    }
}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 430px) {

    .scia-contact-connect {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }

    .scia-contact-form-area h2 {
        font-size: 34px !important;
    }

    .scia-contact-location-card {
        padding: 20px !important;
    }

    .scia-contact-location-top h3 {
        font-size: 25px !important;
    }

    .scia-contact-map {
        height: 250px !important;
    }
}

.scia-contact-intro {
    position: relative !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 115px 6% 100px !important;
    background: #ffffff !important;
    overflow: hidden !important;
    isolation: isolate !important;
    box-sizing: border-box !important;
}

.scia-contact-intro-inner {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr) !important;
    align-items: center !important;
    gap: 85px !important;
    width: 100% !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}


/* =========================
   LEFT HEADING
========================= */

.scia-contact-intro-heading {
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.scia-contact-intro-kicker {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 0 22px !important;
    color: #238db5 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 2.1px !important;
    line-height: 1.4 !important;
}

.scia-contact-intro-kicker span {
    display: block !important;
    width: 38px !important;
    height: 2px !important;
    flex: 0 0 38px !important;
    background: #6ec6e8 !important;
}

.scia-contact-intro-heading h2 {
    margin: 0 0 28px !important;
    padding: 0 !important;
    color: #123f50 !important;
    font-size: clamp(44px, 4.4vw, 62px) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: -2.8px !important;
}

.scia-contact-intro-heading h2 em {
    display: block !important;
    color: #238db5 !important;
    font-style: normal !important;
    font-weight: 400 !important;
}

.scia-contact-intro-heading p {
    max-width: 490px !important;
    margin: 0 !important;
    color: #607983 !important;
    font-size: 16px !important;
    line-height: 1.85 !important;
}


/* =========================
   CONTACT CARDS
========================= */

.scia-contact-intro-cards {
    position: relative !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    width: 100% !important;
}

.scia-contact-card {
    position: relative !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 18px !important;
    min-height: 205px !important;
    padding: 30px 27px !important;
    background: #eaf8fd !important;
    border: 1px solid rgba(35, 141, 181, 0.08) !important;
    box-sizing: border-box !important;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease !important;
}

.scia-contact-card:nth-child(3) {
    grid-column: 1 / -1 !important;
    min-height: 175px !important;
}

.scia-contact-card:hover {
    transform: translateY(-6px) !important;
    background: #ffffff !important;
    box-shadow: 0 20px 45px rgba(18, 63, 80, 0.11) !important;
}


/* ICON */

.scia-contact-card-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 52px !important;
    height: 52px !important;
    flex: 0 0 52px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #238db5 !important;
    font-size: 18px !important;
    box-shadow: 0 8px 20px rgba(35, 141, 181, 0.08) !important;
    transition:
        background 0.3s ease,
        color 0.3s ease !important;
}

.scia-contact-card:hover .scia-contact-card-icon {
    background: #123f50 !important;
    color: #6ec6e8 !important;
}


/* CONTENT */

.scia-contact-card-content {
    min-width: 0 !important;
    flex: 1 !important;
}

.scia-contact-card-content > span {
    display: block !important;
    margin: 0 0 7px !important;
    color: rgba(35, 141, 181, 0.45) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
}

.scia-contact-card-content h3 {
    margin: 0 0 9px !important;
    color: #123f50 !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.scia-contact-card-content p {
    margin: 0 0 15px !important;
    color: #607983 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
}

.scia-contact-card-content a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    color: #238db5 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.8px !important;
    text-decoration: none !important;
    transition: gap 0.25s ease !important;
}

.scia-contact-card-content a i {
    font-size: 9px !important;
}

.scia-contact-card-content a:hover {
    gap: 13px !important;
}


/* =========================
   BOTTOM STATEMENT
========================= */

.scia-contact-intro-bottom {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
    width: 100% !important;
    max-width: 1240px !important;
    margin: 82px auto 0 !important;
    padding: 0 !important;
}

.scia-contact-intro-bottom > span {
    display: block !important;
    flex: 1 !important;
    height: 1px !important;
    background: rgba(35, 141, 181, 0.16) !important;
}

.scia-contact-intro-bottom > div {
    display: flex !important;
    align-items: center !important;
    gap: 11px !important;
    white-space: nowrap !important;
}

.scia-contact-intro-bottom i {
    color: #238db5 !important;
    font-size: 13px !important;
}

.scia-contact-intro-bottom strong {
    color: #238db5 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 1.7px !important;
}

.scia-contact-intro-bottom b {
    color: #6ec6e8 !important;
    font-size: 11px !important;
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .scia-contact-intro {
        padding: 95px 5% 90px !important;
    }

    .scia-contact-intro-inner {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }

    .scia-contact-intro-heading {
        max-width: 760px !important;
    }

    .scia-contact-intro-heading h2 {
        font-size: 50px !important;
    }

    .scia-contact-intro-heading p {
        max-width: 700px !important;
    }

    .scia-contact-intro-cards {
        max-width: 900px !important;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

    .scia-contact-intro {
        padding: 70px 6% 75px !important;
    }

    .scia-contact-intro-inner {
        gap: 48px !important;
    }

    .scia-contact-intro-heading h2 {
        font-size: 39px !important;
        line-height: 1.08 !important;
        letter-spacing: -1.5px !important;
    }

    .scia-contact-intro-heading p {
        font-size: 15px !important;
    }

    .scia-contact-intro-cards {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .scia-contact-card,
    .scia-contact-card:nth-child(3) {
        grid-column: auto !important;
        min-height: 0 !important;
        padding: 27px 23px !important;
    }

    .scia-contact-intro-bottom {
        margin-top: 58px !important;
        gap: 15px !important;
    }

    .scia-contact-intro-bottom > span {
        min-width: 20px !important;
    }

    .scia-contact-intro-bottom > div {
        gap: 7px !important;
    }

    .scia-contact-intro-bottom strong {
        font-size: 8px !important;
        letter-spacing: 1px !important;
    }
}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 430px) {

    .scia-contact-intro {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }

    .scia-contact-intro-heading h2 {
        font-size: 34px !important;
    }

    .scia-contact-card {
        gap: 14px !important;
        padding: 24px 20px !important;
    }

    .scia-contact-card-icon {
        width: 47px !important;
        height: 47px !important;
        flex-basis: 47px !important;
        font-size: 17px !important;
    }

    .scia-contact-card-content h3 {
        font-size: 19px !important;
    }

    .scia-contact-card-content p {
        font-size: 13px !important;
    }
}

.sci-elegant-topbar {
    background-color: #078C03 !important;
}

.sci-elegant-nav-link.active {
    background-color: #078C03 !important;
    color: #ffffff !important;
}

.sci-elegant-support {
    background-color: #078C03 !important;
    color: #ffffff !important;
}

.sci-elegant-top-message {
    color: #ffffff !important;
}
.sci-editorial-footer {
    border-top: 3px solid #ffffff !important;
}

/* ==========================================
SOCIAL MEDIA LINKS
========================================== */

.sci-editorial-footer-social {
display: flex;
align-items: center;
gap: 10px;
margin-left: 20px;
}

.sci-editorial-footer-social a {
width: 38px;
height: 38px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(255, 255, 255, 0.35);
border-radius: 50%;
color: #ffffff;
text-decoration: none;
font-size: 15px;
transition: all 0.3s ease;
}

.sci-editorial-footer-social a:hover {
background-color: #078C03;
border-color: #078C03;
color: #ffffff;
transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 768px) {

```
.sci-editorial-footer-social {
    margin-left: 0;
    margin-top: 12px;
    margin-bottom: 12px;
    justify-content: center;
}

.sci-editorial-footer-social a {
    width: 36px;
    height: 36px;
    font-size: 14px;
}
```

}

.sci-elegant-top-message {
display: flex;
align-items: center;
gap: 12px;
}

/* Divider between message and social icons */
.sci-top-social-divider {
width: 1px;
height: 20px;
background-color: rgba(255, 255, 255, 0.35);
display: inline-block;
}

/* Social icons */
.sci-elegant-top-message a {
width: 28px;
height: 28px;
display: inline-flex;
align-items: center;
justify-content: center;

```
color: #ffffff;
text-decoration: none;

border: 1px solid rgba(255, 255, 255, 0.4);
border-radius: 50%;

font-size: 12px;

transition: all 0.3s ease;
```

}

.sci-elegant-top-message a:hover {
background-color: #078C03;
border-color: #078C03;
color: #ffffff;
transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 600px) {

```
.sci-elegant-top-message {
    gap: 7px;
}

.sci-top-social-divider {
    height: 18px;
}

.sci-elegant-top-message a {
    width: 25px;
    height: 25px;
    font-size: 11px;
}
```

}


/* ==========================================
VIEW PROFILE LINK
========================================== */

.sci-view-profile {
display: inline-flex;
align-items: center;
gap: 9px;

```
margin-top: 18px;

color: #078C03;
font-size: 13px;
font-weight: 700;
letter-spacing: 0.5px;
text-decoration: none;
text-transform: uppercase;

transition: all 0.3s ease;
```

}

.sci-view-profile i {
font-size: 11px;
transition: transform 0.3s ease;
}

.sci-view-profile:hover {
color: #034509;
}

.sci-view-profile:hover i {
transform: translateX(5px);
}

/* Feature profile link */
.sci-person-feature-content .sci-view-profile {
margin-top: 22px;
}

/* Team card profile link */
.sci-person-card-content .sci-view-profile {
margin-top: 12px;
}

/* Mobile */
@media (max-width: 768px) {

```
.sci-view-profile {
    font-size: 12px;
    margin-top: 12px;
}
```

}



/* =========================================================
   SCI — INDIVIDUAL PROFILE PAGE
========================================================= */

:root {
    --sci-green: #078C03;
    --sci-dark-green: #034509;
    --sci-light-green: #eef8ed;
    --sci-black: #172019;
    --sci-grey: #69736c;
    --sci-light-grey: #f5f7f5;
    --sci-border: #dfe8df;
    --sci-white: #ffffff;
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--sci-black);
    background: var(--sci-white);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

.sci-profile-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   PROFILE HERO
========================================================= */

.sci-profile-hero {
    position: relative;
    padding: 100px 0 90px;
    background:
        linear-gradient(
            135deg,
            #f5faf4 0%,
            #ffffff 65%,
            #eef7ed 100%
        );
    overflow: hidden;
}

.sci-profile-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(7, 140, 3, 0.10);
    border-radius: 50%;
    right: -180px;
    top: -180px;
}

.sci-profile-hero::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(7, 140, 3, 0.08);
    border-radius: 50%;
    left: -120px;
    bottom: -120px;
}

.sci-profile-hero .sci-profile-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 43% 57%;
    align-items: center;
    gap: 70px;
}


/* =========================================================
   PROFILE IMAGE
========================================================= */

.sci-profile-image-wrap {
    position: relative;
    max-width: 470px;
}

.sci-profile-image-frame {
    position: relative;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--sci-border);
    box-shadow: 0 25px 60px rgba(24, 54, 27, 0.12);
}

.sci-profile-image-frame::before {
    content: "";
    position: absolute;
    width: 75px;
    height: 75px;
    border-top: 4px solid var(--sci-green);
    border-left: 4px solid var(--sci-green);
    top: -10px;
    left: -10px;
    z-index: 2;
}

.sci-profile-image-frame img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center top;
}

.sci-profile-number {
    position: absolute;
    right: -20px;
    bottom: 35px;
    width: 80px;
    height: 80px;
    background: var(--sci-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(7, 140, 3, 0.25);
}


/* =========================================================
   PROFILE INTRO
========================================================= */

.sci-profile-intro {
    padding-right: 25px;
}

.sci-profile-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--sci-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.sci-profile-intro h1 {
    margin: 0 0 18px;
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 500;
    line-height: 1.05;
    color: var(--sci-black);
}

.sci-profile-intro h1 strong {
    display: block;
    color: var(--sci-green);
    font-weight: 600;
}

.sci-profile-role {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: var(--sci-dark-green);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.sci-profile-role span {
    width: 38px;
    height: 2px;
    background: var(--sci-green);
}

.sci-profile-lead {
    max-width: 620px;
    margin-bottom: 30px;
    color: var(--sci-grey);
    font-size: 17px;
    line-height: 1.9;
}

.sci-profile-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    color: #ffffff;
    background: var(--sci-green);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.sci-profile-back:hover {
    background: var(--sci-dark-green);
    color: #ffffff;
    transform: translateY(-2px);
}

.sci-profile-back i {
    font-size: 11px;
}


/* =========================================================
   PROFILE CONTENT
========================================================= */

.sci-profile-content {
    padding: 105px 0;
    background: #ffffff;
}

.sci-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 90px;
    align-items: start;
}

.sci-profile-main {
    max-width: 760px;
}

.sci-section-label,
.sci-box-label {
    display: inline-block;
    margin-bottom: 17px;
    color: var(--sci-green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sci-profile-main h2 {
    margin-bottom: 35px;
    font-family: "Playfair Display", serif;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.2;
    font-weight: 500;
    color: var(--sci-black);
}

.sci-profile-main h2 em {
    color: var(--sci-green);
    font-style: italic;
}

.sci-profile-main p {
    margin-bottom: 24px;
    color: var(--sci-grey);
    font-size: 16px;
    line-height: 1.9;
}


/* =========================================================
   SIDEBAR
========================================================= */

.sci-profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sci-profile-box {
    padding: 32px;
    background: var(--sci-light-grey);
    border-top: 3px solid var(--sci-green);
}

.sci-profile-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sci-profile-box li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--sci-border);
    color: #566058;
    font-size: 14px;
    line-height: 1.5;
}

.sci-profile-box li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.sci-profile-box li i {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--sci-green);
    font-size: 11px;
}


/* =========================================================
   CERTIFICATIONS
========================================================= */

.sci-certifications {
    background: var(--sci-dark-green);
    border-top-color: #ffffff;
}

.sci-certifications .sci-box-label {
    color: #bce8b9;
}

.sci-cert-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.sci-cert-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.sci-cert-item i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.sci-cert-item strong {
    display: block;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.4;
}

.sci-cert-item span {
    display: block;
    margin-top: 3px;
    color: #b8cbb8;
    font-size: 11px;
}


/* =========================================================
   CLOSING STATEMENT
========================================================= */

.sci-profile-statement {
    padding: 55px 0;
    background: #f5faf4;
}

.sci-profile-statement .sci-profile-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sci-profile-statement-line {
    flex: 1;
    height: 1px;
    background: #cddfcb;
}

.sci-profile-statement p {
    margin: 0;
    color: #657065;
    font-family: "Playfair Display", serif;
    font-size: 19px;
    white-space: nowrap;
}

.sci-profile-statement p span {
    color: var(--sci-green);
}

.sci-profile-statement p strong {
    color: var(--sci-dark-green);
}


/* =========================================================
   FOOTER
========================================================= */

.sci-profile-footer {
    padding: 25px 0;
    background: var(--sci-dark-green);
    border-top: 3px solid #ffffff;
}

.sci-profile-footer .sci-profile-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sci-footer-left {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.sci-footer-right {
    color: #bce8b9;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .sci-profile-hero {
        padding: 75px 0;
    }

    .sci-profile-hero .sci-profile-container {
        grid-template-columns: 40% 60%;
        gap: 45px;
    }

    .sci-profile-image-frame img {
        height: 480px;
    }

    .sci-profile-intro h1 {
        font-size: 54px;
    }

    .sci-profile-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .sci-profile-main {
        max-width: none;
    }

    .sci-profile-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sci-profile-container {
        width: 90%;
    }

    .sci-profile-hero {
        padding: 55px 0 65px;
    }

    .sci-profile-hero .sci-profile-container {
        display: flex;
        flex-direction: column;
        gap: 50px;
        align-items: stretch;
    }

    .sci-profile-image-wrap {
        width: 88%;
        margin: 0 auto;
    }

    .sci-profile-image-frame {
        padding: 9px;
    }

    .sci-profile-image-frame::before {
        width: 50px;
        height: 50px;
        border-width: 3px;
        top: -7px;
        left: -7px;
    }

    .sci-profile-image-frame img {
        height: 440px;
    }

    .sci-profile-number {
        width: 62px;
        height: 62px;
        right: -12px;
        bottom: 20px;
        font-size: 19px;
    }

    .sci-profile-intro {
        padding-right: 0;
    }

    .sci-profile-intro h1 {
        font-size: 48px;
    }

    .sci-profile-lead {
        font-size: 15px;
        line-height: 1.8;
    }

    .sci-profile-content {
        padding: 70px 0;
    }

    .sci-profile-grid {
        gap: 45px;
    }

    .sci-profile-main h2 {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .sci-profile-main p {
        font-size: 15px;
    }

    .sci-profile-sidebar {
        display: flex;
    }

    .sci-profile-box {
        padding: 25px;
    }

    .sci-profile-statement {
        padding: 40px 0;
    }

    .sci-profile-statement .sci-profile-container {
        gap: 15px;
    }

    .sci-profile-statement-line {
        display: none;
    }

    .sci-profile-statement p {
        width: 100%;
        text-align: center;
        white-space: normal;
        font-size: 17px;
    }

    .sci-profile-footer .sci-profile-container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .sci-profile-hero {
        padding-top: 45px;
    }

    .sci-profile-image-wrap {
        width: 94%;
    }

    .sci-profile-image-frame img {
        height: 390px;
    }

    .sci-profile-intro h1 {
        font-size: 42px;
    }

    .sci-profile-role {
        font-size: 11px;
        letter-spacing: 0.9px;
    }

    .sci-profile-lead {
        font-size: 14px;
    }

    .sci-profile-back {
        width: 100%;
        justify-content: center;
    }

    .sci-profile-main h2 {
        font-size: 31px;
    }

}

/* =========================================================
FINAL OVERRIDE - PROFILE HERO
========================================================= */

.sci-profile-hero {
position: relative !important;
overflow: hidden !important;
min-height: 620px !important;
}

/* ---------------------------------------------------------
PROFILE IMAGE
--------------------------------------------------------- */

.sci-profile-hero-image {
position: absolute !important;
top: 0 !important;
right: 0 !important;
bottom: 0 !important;
width: 52% !important;
height: 100% !important;
overflow: hidden !important;
}

.sci-profile-hero-image img {
width: 100% !important;
height: 100% !important;
object-fit: cover !important;
object-position: center top !important;
}

/* ---------------------------------------------------------
HERO CONTENT - MOVE MUCH HIGHER
--------------------------------------------------------- */

.sci-profile-hero-content {
position: relative !important;
z-index: 10 !important;

```
padding-top: 35px !important;
padding-bottom: 50px !important;

margin-top: 0 !important;
transform: translateY(-5px) !important;
```

}

/* Move the back link higher */
.sci-profile-back {
margin-top: 0 !important;
}

/* Number closer to top */
.sci-profile-number {
margin-top: 18px !important;
}

/* ---------------------------------------------------------
CLOSE X BUTTON
--------------------------------------------------------- */

.sci-profile-close {
position: absolute !important;

```
top: 22px !important;
right: 28px !important;

z-index: 9999 !important;

width: 50px !important;
height: 50px !important;

display: flex !important;
align-items: center !important;
justify-content: center !important;

color: #ffffff !important;
background: rgba(0, 0, 0, 0.35) !important;

border: 1px solid rgba(255, 255, 255, 0.7) !important;
border-radius: 50% !important;

text-decoration: none !important;

font-family: Arial, sans-serif !important;
font-size: 34px !important;
font-weight: 300 !important;
line-height: 1 !important;

cursor: pointer !important;

opacity: 1 !important;
visibility: visible !important;

transition: all 0.3s ease !important;
```

}

.sci-profile-close:hover {
background: #078C03 !important;
border-color: #078C03 !important;
color: #ffffff !important;
transform: rotate(90deg) !important;
}

/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {

```
.sci-profile-hero {
    min-height: 600px !important;
}

.sci-profile-hero-content {
    padding-top: 30px !important;
}

.sci-profile-close {
    top: 18px !important;
    right: 20px !important;
    width: 46px !important;
    height: 46px !important;
    font-size: 31px !important;
}
```

}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

```
.sci-profile-hero {
    min-height: 700px !important;
}

.sci-profile-hero-image {
    width: 100% !important;
    height: 100% !important;
}

.sci-profile-hero-content {
    padding-top: 25px !important;
    padding-bottom: 40px !important;
}

.sci-profile-close {
    top: 15px !important;
    right: 15px !important;

    width: 44px !important;
    height: 44px !important;

    font-size: 30px !important;
}
```

}

/* =========================================================
SMALL PHONES
========================================================= */

@media (max-width: 480px) {

```
.sci-profile-hero {
    min-height: 680px !important;
}

.sci-profile-hero-content {
    padding-top: 20px !important;
}

.sci-profile-close {
    top: 12px !important;
    right: 12px !important;

    width: 42px !important;
    height: 42px !important;

    font-size: 29px !important;
}
```

}



h2 {
    font-weight: 700 !important;
}

.sci-editorial-footer-focus {
    font-weight: 700 !important;
}

.sci-editorial-footer-description,
.sci-editorial-footer-location {
    font-weight: 700 !important;
}