* /* =========================
   NAVBAR
========================= */
.ss-navbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(22,59,115,.10);
    padding: .9rem 0;
}

.ss-logo {
    height: 60px !important;
    width: auto !important;
    display: block !important;
}

.ss-navbar .nav-link {
    font-weight: 700;
    color: var(--ss-navy);
    opacity: .92;
    padding: .5rem .85rem;
}

.ss-navbar .nav-link:hover {
    opacity: 1;
}

.ss-btn-quote {
    background: var(--ss-gold) !important;
    color: #ffffff !important;
    font-weight: 800;
    border-radius: 10px;
    padding: .65rem 1.15rem;
    border: none;
    box-shadow: 0 10px 18px rgba(215,154,56,.18);
    text-decoration: none;
}

.ss-btn-quote:hover {
    background: #054A8A;
    color: #fff !important;
}

.ss-nav-toggle {
    border: 1px solid rgba(22,59,115,.18);
    border-radius: 10px;
}

 {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #0d4a88;
    --text: #637087;
    --heading: #0f4b87;
    --button: #f39b34;
    --border: #d9d9d9;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: var(--text);
}

.container {
    width: min(1100px, calc(100% - 48px));
    margin: 0 auto;
}

/* HERO */
.hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--border);
    border-bottom: none;
    overflow: hidden;
    background: linear-gradient(rgba(255, 255, 255, 0.881), rgba(255, 255, 255, 0.78)),
    url("../images/about-us-hero-1.jpg") center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero h1 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 0.95;
    font-weight: 800;
    color: var(--blue);
    max-width: 560px;
    margin: 0 auto 18px;
}

.hero p {
    font-size: 0.95rem;
    color: #7a8392;
    margin-bottom: 24px;
}

.cta-btn {
    display: inline-block;
    background: var(--button);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 8px;
}

/* SECOND SECTION */
.partner-section {
    padding: 58px 0 64px;
}

.partner-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}

.image-card img {
    width: 100%;
    border-radius: 10px;
}

.text-content h2 {
    color: var(--heading);
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.text-content p {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================
   GLOBAL FONTS
===================== */
/* Body / default text */
body {
    font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Arimo", system-ui, -apple-system, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
}

.features-section {
    padding: 60px 0;
    background: #f7f9fc;
    border-top: none;
}

.section-title {
    text-align: center;
    color: #0d4a88;
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.feature-card {
    background: #ffffff;
    padding: 26px 24px;
    border-radius: 10px;
    border: 1px solid #e2e6ed;
    transition: 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.icon {
    width: 40px;
    height: 40px;
    background: #fff3e6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 14px;
}

.icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.feature-card h3 {
    color: #0f4b87;
    font-size: 1rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #6b768a;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.comparison-section {
    padding: 70px 0 54px;
    background: #f7f9fc;
    border-left: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
}

.comparison-section .section-title {
    text-align: center;
    color: #0d4a88;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 34px;
}

.comparison-table {
    max-width: 760px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #dbe3ec;
    border-radius: 12px;
    padding: 0 22px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #dbe3ec;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-head {
    padding-top: 18px;
    padding-bottom: 18px;
}

.comparison-head .comparison-cell {
    font-size: 0.95rem;
    font-weight: 700;
    color: #8d98aa;
}

.comparison-head .brand-cell {
    color: #f39b34;
}

.comparison-cell {
    font-size: 0.98rem;
    line-height: 1.5;
    color: #8d98aa;
}

.comparison-cell.strong {
    color: #0d4a88;
    font-weight: 700;
}

.cta-band {
    background: #0d4a88;
    padding: 56px 0 62px;
    border-left: 1px solid #0d4a88;
    border-right: 1px solid #0d4a88;
    border-bottom: 1px solid #0d4a88;
    margin-bottom: 66px;
}

.cta-band-inner {
    text-align: center;
}

.cta-band h2 {
    color: #ffffff;
    font-size: 2.1rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    margin-bottom: 26px;
}

.cta-band-btn {
    display: inline-block;
    min-width: 210px;
    padding: 14px 28px;
    background: #f7931f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .comparison-table {
        padding: 0 16px;
    }

    .comparison-section .section-title,
    .cta-band h2 {
        font-size: 1.65rem;
    }
}

/* =========================
   FOOTER (TIGHTER HEIGHT)
========================= */
.ss-footer {
    background: #1f4f88;
    color: #ffffff;
    font-family: "Arimo", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    padding: 1rem 0 0;
    text-align: left;

    /* was 4.25rem */
}

/* inner layout */
.ss-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 0rem;
    justify-items: start;

    /* was 3rem bottom */
    display: grid;
    grid-template-columns: 1.2fr 1px 1.4fr 1px 1fr;
    gap: 1.5rem;

    /* was 3rem */
    align-items: start;
}

.ss-footer-col {
    min-width: 0;
}

.ss-footer-divider {
    width: 1px;
    background: rgba(255,255,255,.25);
    height: 100%;
}

/* BRAND BLOCK */
.ss-footer-brandblock {
    display: flex;
    gap: .85rem;
    align-items: center;
    margin-bottom: .65rem;

    /* was .9rem */
}

.ss-footer-brandblock--stack {
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;

    /* was .85rem */
}

.ss-footer-brandblock--row {
    flex-direction: row;
    align-items: center;
}

.ss-footer-logo {
    width: 100px;

    /* was 80px */
    height: auto;
    display: block;
    flex-shrink: 0;
}

/* Brand name */
.ss-footer-title {
    font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #ffffff;

    /* was 3.1rem */
    line-height: 1.05;
    margin: 0;
    letter-spacing: .4px;
}

/* tagline */
.ss-footer-tagline {
    color: #f0a13e;
    font-size: 1.05rem;

    /* was 1.25rem */
    margin: 0 0 1.4rem 0;

    /* was 2rem */
}

/* contact items */
.ss-footer-contact p {
    display: flex;
    align-items: start;
    gap: .85rem;
    margin: 0 0 .95rem 0;
    justify-items: start;

    /* was 1.2rem */
    font-size: 1.05rem;

    /* was 1.25rem */
}

.ss-footer-icon {
    width: 22px;

    /* was 26px */
    height: 22px;
    object-fit: contain;
    display: block;
}

.ss-footer a {
    color: #ffffff;
    text-decoration: none;
}

.ss-footer a:hover {
    text-decoration: underline;
}

/* headings */
.ss-footer-heading {
    font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 900;
    color: #f0a13e;
    letter-spacing: .6px;
    margin: 0 0 1.05rem 0;

    /* was 1.5rem */
    font-size: 1.55rem;

    /* was 2rem */
    text-transform: uppercase;
}

/* links columns */
.ss-footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;

    /* was 2.5rem */
}

.ss-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;

    /* was 1.4rem */
}

.ss-footer-links a {
    font-size: 1.15rem;

    /* was 1.4rem */
    line-height: 1.35;
}

/* CTA */
.ss-footer-cta .ss-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F79320;
    color: #fff;
    font-weight: 900;
    border-radius: 16px;
    padding: .95rem 1.4rem;

    /* was 1.2rem 2rem */
    font-size: 1.15rem;

    /* was 1.35rem */
    margin-top: 1rem;

    /* was 1.25rem */
    box-shadow: 0 14px 22px rgba(0,0,0,.18);
    text-decoration: none;
    width: min(320px, 100%);
    text-align: center;
}

.ss-footer-cta .ss-footer-btn:hover {
    background: #c88722;
    text-decoration: none;
}

/* bottom bar */
.ss-footer-bottom {
    border-top: 2px solid rgba(255,255,255,.20);
    padding: .5rem 2rem;

    /* was 1.8rem */
    text-align: center;
    font-size: 1rem;

    /* was 1.35rem */
    color: rgba(255,255,255,.92);
}

/* responsive */
@media (max-width: 991.98px){
    .ss-footer-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding-bottom: 1.5rem;
    }

    .ss-footer-divider {
        display: none;
    }

    .ss-footer-title {
        font-size: 2.1rem;
    }

    .ss-footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 575.98px) {
    /* Center the grid itself */
    .ss-footer-inner {
        justify-items: center;
        text-align: center;
    }

    /* Brand / logo block */
    .ss-footer-brandblock,
    .ss-footer-brandblock--stack {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    /* Contact rows */
    .ss-footer-contact p {
        justify-content: center;
        text-align: center;
    }

    /* Headings */
    .ss-footer-heading {
        text-align: center;
    }

    /* quick links: keep 2 columns but center them */
    .ss-footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 0.9rem 1.25rem;
        justify-items: center;

        /* FIX */
        text-align: center;

        /* FIX */
    }

    .ss-footer-links ul {
        text-align: center;

        /* FIX */
        gap: 0.75rem;
    }

    .ss-footer-links a {
        font-size: 1.05rem;
        line-height: 1.25;
    }

    /* CTA section */
    .ss-footer-cta {
        text-align: center;
    }

    .ss-footer-cta .ss-footer-btn {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Fold unfolded / tablets / small laptops: use centered stacked footer */
@media (max-width: 1100px) {
    .ss-footer-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-bottom: 1.5rem;
        justify-items: center;

        /* center the stacked blocks */
        text-align: center;
    }

    .ss-footer-divider {
        display: none;
    }

    .ss-footer-brandblock,
    .ss-footer-brandblock--stack {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .ss-footer-contact p {
        justify-content: center;
        text-align: center;
    }

    /* Keep quick links in 2 columns for wider unfolded screens */
    .ss-footer-links {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        text-align: center;
        gap: 1rem 2rem;
    }

    .ss-footer-links ul {
        text-align: center;
    }

    .ss-footer-cta {
        text-align: center;
    }

    .ss-footer-cta .ss-footer-btn {
        margin-left: auto;
        margin-right: auto;
    }
}

/* =====================
   FORCE BUTTON STYLES
===================== */
a.btn {
    text-decoration: none;
}

.ss-btn-accent {
    background-color: #F79320 !important;
    border-color: #F79320 !important;
    color: #fff !important;
}

.ss-btn-primary {
    background-color: #054A8A !important;
    border-color: #054A8A !important;
    color: #fff !important;
}

.ss-btn-accent:hover {
    background-color: #054A8A !important;
    border-color: ##054A8A !important;
}

.ss-btn-primary:hover {
    background-color: #054A8A !important;
    border-color: #054A8A !important;
}
