:root {
    --bg: #f4f6f1;
    --surface: #f7f8f5;
    --card: #ffffff;
    --text: #231f20;
    --muted: #4a484c;
    --line: rgba(17, 24, 39, 0.08);
    --green-900: #4a484c;
    --green-800: #231f20;
    --green-700: #82c239;
    --green-600: #82c239;
    --shadow: 0 14px 32px rgba(16, 24, 16, 0.09);
    --home-band-odd: linear-gradient(165deg, #f5fbf1 0%, #e8f5dc 38%, #daf0d0 72%, #cee9c6 100%);
    --home-band-even: linear-gradient(175deg, #f1f9ec 0%, #e2f2d6 40%, #d3e9ca 72%, #c5e0bd 100%);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Figtree, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background:
        radial-gradient(920px 500px at 20% 0%, rgba(63, 143, 43, 0.1), rgba(63, 143, 43, 0) 70%),
        radial-gradient(920px 540px at 84% 6%, rgba(31, 75, 25, 0.08), rgba(31, 75, 25, 0) 68%),
        var(--bg);
}

a { color: inherit; text-decoration: none; }
p { font-size: 18px; }
.container { width: min(1320px, 96%); margin: 0 auto; }
.section { padding: 40px 0; }
.section-head { margin: 0 auto 20px; text-align: center; max-width: 740px; }
.section-head h2 { margin: 0 0 8px; font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.02em; }
.section-head p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }

.page-banner {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(74, 72, 76, 0.12);
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(35, 31, 32, 0.72) 0%, rgba(35, 31, 32, 0.5) 40%, rgba(35, 31, 32, 0.25) 100%);
}

.page-banner-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 22px 0;
    max-width: 760px;
}

.page-banner-content h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.page-banner-content p {
    margin: 12px 0 0;
    font-size: clamp(15px, 1.7vw, 19px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(17, 24, 39, 0.06);
    background: rgba(246, 248, 241, 0.8);
    backdrop-filter: blur(8px);
}

.offer-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 14px;
    margin-right: 0;
    vertical-align: middle;
    background: rgba(130, 194, 57, 0.14);
    color: #82c239;
    border: 1px solid rgba(130, 194, 57, 0.32);
}
.spangreen {
    color: #82c239;
}

.offer-icon-wrap i {
    font-size: 34px;
}

.offer-icon-blue,
.offer-icon-teal,
.offer-icon-purple,
.offer-icon-coral,
.offer-icon-amber,
.offer-icon-green {
    background: rgba(130, 194, 57, 0.14);
    color: #82c239;
    border: 1px solid rgba(130, 194, 57, 0.32);
}

.header-row {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.brand-logo {
    width: 111px;
    height: auto;
    display: block;
}
.brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--green-900), var(--green-600));
    box-shadow: 0 12px 20px rgba(31, 75, 25, 0.2);
}
.nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
    color: rgba(15, 26, 18, 0.84);
}
.nav a {
    padding: 10px 13px;
    border-radius: 10px;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.nav a:hover,
.nav a:focus-visible,
.nav a.active {
    background: rgba(130, 194, 57, 0.18);
    color: var(--green-800);
    box-shadow: inset 0 0 0 1px rgba(130, 194, 57, 0.45);
    outline: none;
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(130, 194, 57, 0.35);
    background: #fff;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    cursor: pointer;
    padding: 0;
}
.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--green-800);
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 10px;
    border: 1px solid rgba(31, 75, 25, 0.24);
    font-weight: 700;
    font-size: 15px;
}
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--green-900), var(--green-700));
    box-shadow: 0 10px 18px rgba(31, 75, 25, 0.16);
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.06);
    box-shadow: 0 12px 20px rgba(31, 75, 25, 0.22);
    outline: none;
}
.btn-soft { background: rgba(255, 255, 255, 0.62); }

.btn-soft {
    border-color: #82c239;
    color: var(--green-800);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-soft:hover,
.btn-soft:focus-visible {
    background: #82c239;
    border-color: #82c239;
    color: #fff;
    box-shadow: 0 10px 20px rgba(130, 194, 57, 0.28);
    outline: none;
}

/* ✅ UPDATED: smooth transition added */
.btn-whatsapp {
    border-radius: 10px;
    background: #82c239;
    border-color: #82c239;
    color: #fff;
    box-shadow: 0 8px 16px rgba(130, 194, 57, 0.3);
    letter-spacing: 0.01em;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

/* ✅ UPDATED: outline style on hover */
.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
    transform: translateY(-2px);
    background: transparent;
    color: #82c239;
    border-color: #82c239;
    box-shadow: 0 14px 24px rgba(130, 194, 57, 0.2);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
}
.hero-copy {
    border-radius: 18px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(246, 248, 241, 0.78), rgba(246, 248, 241, 0.44));
    box-shadow: var(--shadow);
    padding: 32px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: rgba(31, 75, 25, 0.8);
}
.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--green-700);
    box-shadow: 0 0 0 4px rgba(63, 143, 43, 0.2);
}
.hero-copy h1 {
    margin: 14px 0 12px;
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.04;
    letter-spacing: -0.03em;
}
.hero-copy h1 span { color: var(--green-700); }
.hero-copy p {
    margin: 0;
    max-width: 55ch;
    color: rgba(15, 26, 18, 0.7);
    font-size: 18px;
    line-height: 1.65;
}
.hero-actions {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.center-actions { justify-content: center; }

.hero-panel {
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(246, 248, 241, 0.58);
    box-shadow: var(--shadow);
    padding: 14px;
    display: grid;
    gap: 12px;
}
.hero-stat {
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--card);
    padding: 16px;
}
.hero-stat small {
    display: block;
    font-size: 12px;
    color: rgba(15, 26, 18, 0.58);
    font-weight: 700;
}
.hero-stat strong {
    display: block;
    margin-top: 6px;
    font-size: 25px;
    letter-spacing: -0.02em;
}
.hero-stat p {
    margin: 4px 0 0;
    font-size: 18px;
    color: rgba(15, 26, 18, 0.64);
}
.hero-stat.primary {
    background: linear-gradient(135deg, var(--green-900), var(--green-700));
    border-color: rgba(31, 75, 25, 0.35);
    color: #fff;
}
.hero-stat.primary small,
.hero-stat.primary p { color: rgba(255, 255, 255, 0.83); }

.stats-grid,
.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.card {
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 10px 22px rgba(16, 24, 16, 0.06);
    padding: 18px;
}
.kpi {
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    color: var(--green-800);
}
.kpi-label {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(15, 26, 18, 0.76);
}
.card h3 {
    margin: 10px 0 8px;
    font-size: 18px;
    letter-spacing: -0.01em;
}
.card p {
    margin: 0;
    color: rgba(15, 26, 18, 0.66);
    font-size: 18px;
    line-height: 1.62;
}

.courses-page .courses-card-meta {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green-700);
    letter-spacing: 0.02em;
}

.courses-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.courses-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    background: rgba(130, 194, 57, 0.14);
    border: 1px solid rgba(130, 194, 57, 0.3);
    flex: 0 0 38px;
}

.courses-icon svg {
    width: 20px;
    height: 20px;
}

.courses-highlights {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.courses-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
}

.courses-highlight-item p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(35, 31, 32, 0.86);
}

.courses-highlight-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    flex: 0 0 28px;
}

.courses-highlight-icon svg {
    width: 18px;
    height: 18px;
}

.courses-block-spaced {
    margin-top: 40px;
}

.courses-split {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
    align-items: start;
}

.courses-h2 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3vw, 32px);
    letter-spacing: -0.02em;
    color: var(--green-800);
}

.courses-split-copy > p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.65;
}

.courses-checklist {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.courses-checklist li {
    position: relative;
    padding: 12px 14px 12px 38px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.45;
    color: rgba(35, 31, 32, 0.88);
}

.courses-checklist li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-700);
    box-shadow: 0 0 0 3px rgba(130, 194, 57, 0.25);
}

.courses-split-aside {
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 22px rgba(16, 24, 16, 0.06);
    padding: 20px 20px 18px;
}

.courses-aside-title {
    margin: 0 0 14px;
    font-size: 17px;
    font-weight: 800;
    color: var(--green-800);
}

.courses-steps {
    margin: 0;
    padding: 0 0 0 18px;
    display: grid;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(35, 31, 32, 0.88);
}

.courses-steps strong {
    color: var(--green-800);
}

.courses-topics {
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(246, 248, 241, 0.65);
    padding: 18px 22px;
}

.courses-topics ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 28px;
}

.courses-topics li {
    position: relative;
    padding-left: 22px;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(35, 31, 32, 0.88);
}

.courses-topics li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
    color: var(--green-700);
    font-size: 14px;
}

.courses-faq {
    display: grid;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.courses-faq details {
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    padding: 0 16px;
}

.courses-faq summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 0;
    color: var(--green-800);
}

.courses-faq summary::-webkit-details-marker {
    display: none;
}

.courses-faq details[open] summary {
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    margin-bottom: 10px;
}

.courses-faq details p {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
}

@media (max-width: 900px) {
    .courses-split {
        grid-template-columns: 1fr;
    }
    .courses-topics ul {
        grid-template-columns: 1fr;
    }
    .courses-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .courses-highlights {
        grid-template-columns: 1fr;
    }
}

/* Featured program blocks (courses page) — card layout */
.courses-programs {
    padding: 48px 0 20px;
    background: linear-gradient(180deg, rgba(232, 245, 220, 0.35) 0%, rgba(244, 246, 241, 0) 52%);
}

.courses-programs .section-head {
    margin-bottom: 36px;
}

.courses-program {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.08fr);
    gap: 0;
    align-items: stretch;
    margin-bottom: 28px;
    padding: 0;
    border-radius: 24px;
    border: 1px solid rgba(130, 194, 57, 0.22);
    background: #fff;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 18px 48px rgba(35, 31, 32, 0.08),
        0 4px 12px rgba(35, 31, 32, 0.04);
    overflow: hidden;
}

.courses-program--reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1.02fr);
}

.courses-program--reverse .courses-program-media {
    order: 2;
}

.courses-program--reverse .courses-program-body {
    order: 1;
}

.courses-program-media {
    margin: 0;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background: linear-gradient(145deg, #1a2e16 0%, #2d4a22 100%);
    min-height: 300px;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr;
    align-self: stretch;
}

.courses-program--reverse .courses-program-media {
    background: linear-gradient(145deg, #2a2418 0%, #3d3520 100%);
}

.courses-program-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.18) 100%);
}

.courses-program-media img {
    width: 100%;
    /* height: 100%; */
    min-height: 300px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.courses-program-body {
    display: flex;
    flex-direction: column;
    padding: 28px 32px 26px;
    gap: 0;
}

.courses-program-body h2 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--green-800);
}

.courses-program-body > p.lead {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 17px;
}

.courses-program-sub {
    margin: 18px 0 10px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-700);
}

.courses-program-lists {
    display: grid;
    gap: 16px;
    margin-bottom: 4px;
}

.courses-program-lists h3 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 800;
    color: var(--green-800);
}

.courses-program-lists ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.courses-program-lists li {
    position: relative;
    padding-left: 26px;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(35, 31, 32, 0.92);
}

.courses-program-lists li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 0.52em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green-700);
    box-shadow: 0 0 0 3px rgba(130, 194, 57, 0.22);
}

.courses-program-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 6px 0 0;
}

.courses-program-tags span {
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1.5px solid rgba(130, 194, 57, 0.55);
    color: var(--green-800);
    box-shadow: 0 1px 2px rgba(35, 31, 32, 0.04);
}

.courses-program-topic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.courses-program-topic {
    padding: 14px 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background: linear-gradient(165deg, rgba(246, 248, 241, 0.95) 0%, rgba(232, 245, 220, 0.45) 100%);
}

.courses-program-topic strong {
    display: block;
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 800;
    color: var(--green-800);
    letter-spacing: 0.02em;
}

.courses-program-topic p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    color: var(--muted);
}

.courses-program-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: auto;
    padding-top: 22px;
    margin-bottom: 2px;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.courses-program-actions .btn-soft {
    border: 1.5px solid rgba(35, 31, 32, 0.28);
    background: #fff;
    color: var(--green-800);
    font-weight: 700;
}

.courses-program-actions .btn-soft:hover {
    border-color: rgba(130, 194, 57, 0.65);
    background: rgba(130, 194, 57, 0.08);
}

@media (max-width: 900px) {
    .courses-program,
    .courses-program--reverse {
        grid-template-columns: 1fr;
    }

    .courses-program--reverse .courses-program-media,
    .courses-program--reverse .courses-program-body {
        order: unset;
    }

    .courses-program-media {
        min-height: 220px;
        height: auto;
    }

    .courses-program-media img {
        min-height: 220px;
        max-height: 320px;
        height: auto;
    }

    .courses-program-body {
        padding: 22px 20px 20px;
    }

    .courses-program-topic-grid {
        grid-template-columns: 1fr;
    }
}

.courses-program-body > p.lead + .courses-program-sub {
    margin-top: 4px;
}

.contact-page .contact-head {
    margin-bottom: 26px;
}

.contact-form-success {
    max-width: 980px;
    margin: 0 auto 16px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(130, 194, 57, 0.45);
    background: rgba(130, 194, 57, 0.12);
    color: var(--green-800);
    font-weight: 600;
    text-align: center;
}

.contact-form-errors {
    max-width: 980px;
    margin: 0 auto 16px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(185, 28, 28, 0.35);
    background: rgba(254, 226, 226, 0.55);
    color: #7f1d1d;
    font-size: 15px;
}

.contact-form-errors ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.contact-info-card {
    border-radius: 16px;
    border: 1px solid var(--line);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.86), rgba(246, 248, 241, 0.78));
    box-shadow: 0 10px 22px rgba(16, 24, 16, 0.06);
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: var(--green-800);
}

.contact-info-card > p {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
}

.contact-info-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 12px;
    border: 1px solid rgba(130, 194, 57, 0.22);
    background: rgba(130, 194, 57, 0.08);
}

.contact-info-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    flex: 0 0 34px;
}

.contact-info-icon svg {
    width: 18px;
    height: 18px;
}

.contact-info-list strong {
    display: block;
    margin: 0 0 3px;
    font-size: 14px;
    color: var(--green-800);
}

.contact-info-list a {
    font-size: 15px;
    color: rgba(35, 31, 32, 0.86);
    line-height: 1.45;
}

.contact-info-extra {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed rgba(90, 103, 80, 0.28);
    display: grid;
    gap: 10px;
}

.contact-info-extra h4 {
    margin: 0 0 4px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--green-800);
}

.contact-info-extra p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(35, 31, 32, 0.82);
}

.contact-info-note {
    margin-top: 4px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(130, 194, 57, 0.12);
    border: 1px solid rgba(130, 194, 57, 0.28);
}

.contact-form {
    max-width: none;
    margin: 0;
    padding: 22px 22px 20px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(16, 24, 16, 0.07);
    height: 100%;
}

.contact-form-header h3 {
    margin: 0 0 6px;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: var(--green-800);
}

.contact-form-header p {
    margin: 0 0 14px;
    font-size: 15px;
    color: var(--muted);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
}

.contact-field-full {
    grid-column: 1 / -1;
}

.contact-field label {
    display: block;
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--green-800);
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(90, 103, 80, 0.22);
    font-family: inherit;
    font-size: 16px;
    color: var(--text);
    background: #fff;
}

.contact-field textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.5;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--green-700);
    box-shadow: 0 0 0 3px rgba(130, 194, 57, 0.22);
}

.contact-form-actions {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.trust-media {
    min-height: 300px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
        radial-gradient(620px 220px at 25% 20%, rgba(63, 143, 43, 0.58), rgba(63, 143, 43, 0) 70%),
        linear-gradient(135deg, var(--green-900), var(--green-700));
}
.trust-copy {
    padding: 24px;
    background: rgba(246, 248, 241, 0.9);
}
.trust-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
}
.trust-copy p {
    margin: 0 0 14px;
    color: rgba(15, 26, 18, 0.68);
    line-height: 1.7;
    font-size: 18px;
}
.trust-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}
.trust-list li {
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.68);
    padding: 10px 12px;
    font-size: 13px;
}

.cta-box {
    border-radius: 18px;
    border: 1px solid rgba(31, 75, 25, 0.24);
    text-align: center;
    color: #fff;
    padding: 38px 20px;
    background:
        radial-gradient(500px 180px at 50% 0%, rgba(63, 143, 43, 0.2), rgba(63, 143, 43, 0) 70%),
        linear-gradient(135deg, var(--green-900), var(--green-700));
}
.cta-box h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3.5vw, 42px);
    letter-spacing: -0.02em;
}
.cta-box p {
    margin: 0 auto 18px;
    max-width: 60ch;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.86);
}
.cta-box .btn-soft {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
}

.footer {
    margin-top: 64px;
    border-top: 1px solid rgba(74, 72, 76, 0.2);
    background: linear-gradient(180deg, rgba(130, 194, 57, 0.12) 0%, rgba(130, 194, 57, 0.07) 100%);
    padding: 40px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
    gap: 34px;
    align-items: start;
}
.footer-col {
    min-width: 0;
}
.footer h4,
.footer-title {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--green-800);
}
.footer p,
.footer a {
    font-size: 15px;
    color: rgba(35, 31, 32, 0.88);
    line-height: 1.6;
}
.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-links li + li { margin-top: 10px; }
.footer a {
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer a:hover {
    color: var(--green-700);
}
.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.25;
    width: fit-content;
    font-size: 14px;
}
.footer-social-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    flex: 0 0 16px;
    transform: translateY(0);
}
.footer-social-list {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.footer-logo {
    width: 90px;
    height: auto;
    display: block;
    margin-bottom: 14px;
}
.footer-brand p {
    max-width: 340px;
}
.footer-brand {
    margin-top: -18px;
}
.footer-contact-list li:first-child {
    max-width: 34ch;
}
.footer-bottom {
    margin-top: 28px;
    padding-top: 14px;
    border-top: 1px solid rgba(74, 72, 76, 0.16);
    text-align: center;
    font-size: 12px;
    color: rgba(35, 31, 32, 0.66);
    line-height: 1.6;
}

@media (max-width: 980px) {
    .hero-grid,
    .trust-grid { grid-template-columns: 1fr; }
    .stats-grid,
    .course-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
}

@media (max-width: 680px) {
    .nav { display: none; }
    .brand-logo { width: 150px; }
    .stats-grid,
    .course-grid,
    .footer-grid { grid-template-columns: 1fr; gap: 18px; }
    .footer p,
    .footer a { font-size: 14px; }
    .footer-social-list { gap: 6px; }
    .footer-bottom { font-size: 11px; }
}

.home-page {
    min-height: calc(100vh - 160px);
    padding: 0;
}

.home-hero-wrap {
    padding: 32px 0 60px;
}

.home-hero-card {
    border-radius: 4px;
    padding: 20px 18px 24px;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 1.18fr;
    gap: 14px;
    align-items: center;
}

.home-hero-copy h1 {
    margin: 4px 0 8px;
    font-size: clamp(38px, 4.8vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.home-hero-copy h1 span {
    color: var(--green-700);
}

.home-hero-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
    max-width: 78ch;
}

.home-eyebrow {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #82c239;
    letter-spacing: 0.08em;
}

.home-hero-actions {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.home-hero-media {
    position: relative;
}

.home-hero-media img {
    width: 100%;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(90, 103, 80, 0.14);
}

.home-performance-badge {
    position: absolute;
    left: 8px;
    bottom: -12px;
    background: var(--surface);
    border: 1px solid rgba(90, 103, 80, 0.2);
    padding: 15px 18px;
    border-radius: 10px;
    min-width: 132px;
    min-height: 102px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: badgeFloat 2.8s ease-in-out infinite;
    box-shadow: 0 12px 22px rgba(35, 31, 32, 0.16);
}

.home-performance-badge strong {
    display: block;
    font-size: 42px;
    line-height: 1;
    color: var(--green-700);
}

.home-performance-badge span {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    color: var(--muted);
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.home-learn-section {
    padding: 66px 0 58px;
}

.home-title-block {
    text-align: center;
    margin: 0 auto 46px;
    max-width: 760px;
}

.home-title-block h2 {
    margin: 0;
    font-size: clamp(32px, 3.8vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.home-title-block h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    border-radius: 99px;
    background: var(--green-700);
    margin: 11px auto 0;
}

.home-title-block p {
    margin: 10px 0 0;
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
}

.home-learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.home-learn-card {
    background: var(--card);
    border: 1px solid rgba(90, 103, 80, 0.12);
    border-radius: 14px;
    padding: 30px 28px 24px;
    min-height: 248px;
    box-shadow: 0 12px 26px rgba(35, 31, 32, 0.16);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    flex: 0 0 calc((100% - 32px) / 3);
    box-sizing: border-box;
}

.home-learn-card h3 {
    margin: 0 0 12px;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.home-learn-icon {
    color: var(--green-700);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    border-radius: 14px;
    background: rgba(130, 194, 57, 0.14);
    border: 1px solid rgba(130, 194, 57, 0.32);
}

.home-learn-icon-svg {
    width: 34px;
    height: 34px;
    color: var(--green-700);
}

.home-learn-icon--img .home-learn-icon-img {
    width: 74px;
    height: 74px;
}

.home-learn-icon-img {
    object-fit: contain;
    display: block;
}

/* PNG icons that already include their own plate/background */
.home-learn-icon--img {
    background: transparent;
    border: none;
    padding: 0;
}

.home-learn-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.62;
    color: var(--muted);
    text-align: center;
}

.home-learn-card:hover {
    border-color: #82c239;
    box-shadow: 0 16px 30px rgba(130, 194, 57, 0.28);
  transform: none;
}

.home-learn-card:hover h3 {
    color: #82c239;
}

.home-education-section {
    padding: 42px 0 62px;
}

.home-success-section {
    padding: 66px 0 48px;
}

.home-success-viewport {
    overflow: hidden;
}

.home-success-grid {
    display: flex;
    gap: 18px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.home-success-card {
    flex: 0 0 calc((100% - 36px) / 3);
    background: var(--card);
    border: 1px solid rgba(90, 103, 80, 0.14);
    border-radius: 12px;
    padding: 24px 24px;
    box-shadow: 0 8px 18px rgba(20, 28, 20, 0.06);
}

.home-success-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: block;
    object-fit: cover;
    margin: 0 0 12px;
}

.home-success-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.25;
    color: var(--green-800);
}

.home-success-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
}

.home-extra-section {
    padding: 66px 0 66px;
}

.home-why-section {
    padding-top: 0;
}

.home-extra-grid {
    display: grid;
    gap: 16px;
}

.home-extra-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-extra-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-extra-section .home-learn-card h3 {
    align-items: center;
    text-align: center;
}

.home-extra-section .home-learn-card p {
    text-align: center;
}

/* What We Offer: carousel on small screens; 3-column grid on desktop */
@media (min-width: 992px) {
    .home-extra-section .home-offer-slider .home-offer-nav,
    .home-extra-section .home-offer-dots-row {
        display: none !important;
    }

    .home-extra-section .home-offer-slider .home-learn-slider-wrap {
        overflow: visible;
    }

    .home-extra-section .home-offer-track {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        transform: none !important;
        transition: none !important;
    }

    .home-extra-section .home-offer-track .home-learn-card {
        flex: unset !important;
        width: auto !important;
        max-width: none !important;
        min-height: 210px;
    }
}

.home-location-section {
    width: 100%;
    margin-top: 6px;
    border-top: 1px solid rgba(74, 72, 76, 0.08);
    border-bottom: 1px solid rgba(74, 72, 76, 0.08);
}

.home-location-map {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

.home-location-section + .footer,
.home-page + .footer {
    margin-top: 0 !important;
}

.home-page > section:nth-child(odd) {
    background: var(--home-band-odd);
    color: var(--text);
}

.home-page > section:nth-child(even) {
    background: var(--home-band-even);
    color: var(--text);
}

.home-education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    padding: 0;
}

.home-education-image {
    margin: 0;
    position: relative;
}

.home-education-image img {
    width: 100%;
    height: 100%;
    max-height: 504px;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 36px;
}

.home-education-image .home-education-badge {
    position: absolute;
    top: 0px;
    left: 14px;
    width: min(34%, 220px);
    height: auto;
    border: 0;
    border-radius: 0;
    z-index: 2;
    filter: drop-shadow(0 10px 18px rgba(20, 28, 20, 0.2));
    pointer-events: none;
    animation: badgeFloatHorizontal 3.8s ease-in-out infinite;
}

@keyframes badgeFloatHorizontal {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.home-education-copy {
    padding: 26px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.home-education-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(38px, 4.2vw, 54px);
    letter-spacing: -0.02em;
}

.home-education-copy p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.home-education-copy ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.home-education-copy li {
    font-size: 14px;
    color: var(--text);
    position: relative;
    padding-left: 16px;
}

.home-education-copy li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 99px;
    background: var(--green-700);
    position: absolute;
    left: 0;
    top: 8px;
}

.home-education-copy li strong {
    display: block;
    margin-bottom: 5px;
    font-size: 17px;
    color: var(--green-800);
}

.home-education-copy li span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

/* Slider */
.home-learn-slider-outer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-learn-slider-wrap {
    flex: 1;
    overflow: hidden;
}

.home-learn-track {
    display: flex;
    gap: 16px;
    position: relative;
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
}

.learn-nav-btn {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    padding-bottom: 5px;
}
.learn-nav-btn:hover { background: #f5f5f5; }
.learn-nav-btn:disabled { opacity: 0.25; cursor: default; }

.learn-dots-row {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}
.learn-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.learn-dot.active { background: #82c239; }

/* Home reveal animations */
.fade-up,
.fade-in {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.fade-up {
    transform: translateY(28px);
}

.fade-in {
    transform: none;
}

.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .fade-up,
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .home-education-image .home-education-badge {
        animation: none;
    }
}

/* Responsive */
@media (max-width: 980px) {
    .home-hero-grid,
    .home-education-grid { grid-template-columns: 1fr; }
    .home-learn-grid { grid-template-columns: repeat(2, 1fr); }
    .home-success-grid { gap: 12px; }
    .home-success-card { flex-basis: 100%; }
    .home-performance-badge {
        left: 10px;
        bottom: 10px;
        padding: 10px 12px;
        min-width: 0;
        min-height: 0;
        border-radius: 8px;
        box-shadow: 0 8px 16px rgba(35, 31, 32, 0.12);
    }
    .home-performance-badge strong {
        font-size: clamp(22px, 5.5vw, 30px);
    }
    .home-performance-badge span {
        font-size: 13px;
        margin-top: 4px;
    }
    .home-location-map { height: 280px; }
}

@media (max-width: 680px) {
    .home-title-block h2 { font-size: 30px; }
    .home-learn-grid { grid-template-columns: 1fr; }
    .home-extra-grid-3,
    .home-extra-grid-2 { grid-template-columns: 1fr; }
    .home-location-map { height: 240px; }
}

@media (max-width: 1200px) {
    .container { width: min(1140px, 94%); }
    .home-learn-card { padding: 22px 20px 18px; min-height: 210px; }
    .home-learn-card h3 { font-size: 30px; }
    .home-success-card h3 { font-size: 20px; }
}

@media (max-width: 992px) {
    p { font-size: 16px; }
    .header-row { min-height: 68px; gap: 10px; }
    .brand-logo { width: 96px; }
    .nav { gap: 4px; font-size: 14px; }
    .nav a { padding: 8px 10px; }
    .btn { min-height: 38px; padding: 0 14px; font-size: 13px; }
    .section { padding: 30px 0; }
    .home-page { padding: 0; }
    .home-hero-wrap { padding: 20px 0 28px; }
    .home-hero-copy h1 { font-size: clamp(32px, 5vw, 44px); }
    .home-hero-copy p,
    .section-head p,
    .trust-copy p,
    .cta-box p { font-size: 16px; }
    .home-title-block { margin-bottom: 28px; }
    .home-title-block h2 { font-size: clamp(28px, 5vw, 36px); }
    .home-learn-card { min-height: 190px; padding: 18px 16px; }
    .home-learn-card h3 { font-size: 25px; gap: 10px; }
    .home-success-card { padding: 18px 16px; }
    .home-success-card p { font-size: 15px; }
    .home-education-copy h2 { font-size: clamp(30px, 5vw, 40px); }
    .home-education-copy p { font-size: 16px; }
}

@media (max-width: 768px) {
    .container { width: min(100%, 95%); }
    p { font-size: 15px; }
    .header-row { min-height: 64px; position: relative; flex-wrap: wrap; }
    .menu-toggle { display: inline-flex; margin-left: auto; }
    .header-actions { order: 2; }
    .header-actions .btn { min-height: 34px; padding: 0 10px; font-size: 11px; }
    .nav {
        display: none;
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px;
        margin: 6px 0 8px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(130, 194, 57, 0.2);
        border-radius: 12px;
        box-shadow: 0 10px 24px rgba(35, 31, 32, 0.08);
    }
    .nav a { width: 100%; padding: 10px 12px; }
    .header-row.is-menu-open .nav { display: flex; }
    .home-hero-grid,
    .hero-grid,
    .trust-grid,
    .home-education-grid { grid-template-columns: 1fr; }
    .home-hero-card { padding: 16px 14px 18px; }
    .home-hero-copy h1 { font-size: clamp(30px, 8vw, 40px); }
    .home-hero-copy p { max-width: 100%; }
    .home-performance-badge {
        left: 10px;
        bottom: 10px;
        padding: 10px 12px;
        min-width: 0;
        min-height: 0;
        border-radius: 8px;
        box-shadow: 0 8px 16px rgba(35, 31, 32, 0.12);
    }
    .home-performance-badge strong {
        font-size: clamp(22px, 5.5vw, 30px);
    }
    .home-performance-badge span {
        font-size: 13px;
        margin-top: 4px;
    }
    .stats-grid,
    .course-grid,
    .home-learn-grid,
    .home-extra-grid-3,
    .home-extra-grid-2,
    .footer-grid { grid-template-columns: 1fr; }
    .home-learn-card { min-height: auto; }
    .home-learn-card h3 { font-size: 22px; }
    .home-learn-slider-outer { gap: 8px; }
    .home-learn-slider-wrap {
        padding: 8px 4px 12px;
        box-sizing: border-box;
    }
    .home-learn-track { gap: 12px; }
    .home-learn-track .home-learn-card {
        flex: 0 0 calc((100% - 12px) / 2);
        min-height: 260px;
    }
    .learn-nav-btn {
        width: 34px;
        height: 34px;
        font-size: 22px;
    }
    .home-success-grid { gap: 10px; }
    .home-success-card { flex-basis: 100%; }
    .home-education-image .home-education-badge { width: min(40%, 180px); }
    .footer { margin-top: 34px; padding: 24px 0 14px; }
    .footer p,
    .footer a { font-size: 14px; }
    .footer-brand { margin-top: -4px; }
}

@media (max-width: 540px) {
    .home-learn-slider-outer { gap: 6px; }
    .home-learn-track { gap: 10px; }
    .home-learn-track .home-learn-card {
        flex: 0 0 100%;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .brand-logo { width: 90px; }
    .btn { min-height: 36px; font-size: 12px; padding: 0 12px; }
    .home-performance-badge {
        padding: 8px 10px;
        left: 8px;
        bottom: 8px;
    }
    .home-performance-badge strong {
        font-size: 20px;
    }
    .home-performance-badge span {
        font-size: 12px;
    }
    .page-banner { min-height: 180px; }
    .page-banner-content { padding: 14px 0; }
    .home-title-block h2 { font-size: 28px; }
    .home-title-block p { font-size: 12px; }
    .home-learn-card h3 { font-size: 20px; }
    .home-education-copy { padding: 65px 14px 16px; }
    .home-education-copy h2 { font-size: 30px; }
    .home-education-image .home-education-badge { width: min(46%, 150px); }
    .home-success-card h3 { font-size: 18px; }
    .home-location-map { height: 220px; }
    .footer-bottom { font-size: 11px; line-height: 1.45; }
}