/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #fff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.narrow {
    max-width: 520px;
}

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

/* ===== COLORS ===== */
.orange {
    color: #e87b02;
}

.orange-light {
    color: #ffaa44;
}

.white {
    color: #fff !important;
}

/* ===== BUTTONS ===== */
.btn-orange {
    display: inline-block;
    background: #e87b02;
    color: #fff;
    padding: 16px 60px;
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.btn-orange:hover {
    background: #c96900;
}

.large-btn {
    padding: 20px 80px;
    font-size: 1.3rem;
}

.full-btn {
    width: 100%;
    text-align: center;
}

/* ===== HERO ===== */
.hero {
    background: url('../images/hero.jpg') center / cover no-repeat;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.hero-overlay {
    background: rgba(60, 20, 100, 0.80);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 65px 20px 0;
}

.hero-content {
    text-align: center;
    color: #fff;
    padding-bottom: 40px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.45;
    max-width: 620px;
    margin: 0 auto 8px;
}

.hero-content h2 {
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #e87b02;
    letter-spacing: 3px;
    margin-bottom: 40px;
    line-height: 1.1;
}

/* Hero Stat Cards */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 26px;
    width: 100%;
    max-width: 1120px;
    padding: 0 22px;
    transform: translateY(72px);
    z-index: 2;
}

.hero-stat {
    background: #f5f5f5;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 34px 24px 40px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
    border-bottom: 6px solid #e87b02;
}

.stat-num {
    font-size: 3.8rem;
    font-weight: 800;
    color: #4b0a80;
    line-height: 1;
}

.stat-label {
    font-size: 2.1rem;
    font-weight: 700;
    color: #222;
    margin-top: 10px;
}

.stat-sub {
    font-size: 1.45rem;
    color: #686868;
    margin-top: 10px;
}

/* ===== INTRO BANNER ===== */
.intro-banner {
    background: #f2f2f2;
    padding: 145px 0 80px;
}

.intro-line {
    color: #333;
    font-size: 2.1rem;
    line-height: 1.35;
    font-weight: 500;
    text-align: center;
    max-width: 1120px;
    margin: 0 auto 18px;
}

.intro-btn {
    margin-top: 28px;
}

/* ===== SECTIONS ===== */
.section-light {
    padding: 80px 0;
    background: #f7f4ff;
}

.section-dark {
    padding: 80px 0;
    background: #1f1043;
    color: #fff;
}

.section-blue {
    padding: 80px 0;
    background: #1a1a3e;
    color: #fff;
}

/* ===== SECTION TITLES ===== */
.section-eyebrow {
    color: #e87b02;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #1f1043;
    margin-bottom: 10px;
    line-height: 1.3;
}

.section-sub {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.section-body {
    text-align: center;
    font-size: 0.95rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 10px;
    line-height: 1.7;
}

/* ===== GRID SYSTEMS ===== */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

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

/* ===== FEATURE CARDS (Why Cognitive Education) ===== */
.feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #fff4e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border: 2px solid #e87b02;
}

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

.feature-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f1043;
    margin-bottom: 8px;
}

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

/* ===== PEDAGOGY CARDS ===== */
.pedagogy-card {
    background: #2a1a5e;
    border-radius: 14px;
    padding: 36px 32px;
    color: #fff;
    border-left: 4px solid #e87b02;
}

.pedagogy-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.pedagogy-card p {
    font-size: 0.93rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 16px;
}

.pedagogy-card ul {
    padding-left: 18px;
}

.pedagogy-card ul li {
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #ddd;
}

.pedagogy-card ul li::marker {
    color: #e87b02;
}

/* ===== FINANCIAL POTENTIAL ===== */
.financial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Donut charts */
.charts-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center;
}

.donut-wrap {
    text-align: center;
}

.donut-wrap p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #555;
}

.donut {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(var(--color) calc(var(--pct) * 1%),
            #e0d8f0 0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.donut::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #f7f4ff;
}

.donut-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.donut-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #e87b02;
}

.donut-label {
    display: block;
    font-size: 0.7rem;
    color: #555;
    margin-top: 2px;
}

/* Investment cards */
.invest-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.invest-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-top: 5px solid transparent;
}

.invest-card.orange-top {
    border-top-color: #e87b02;
}

.invest-card.purple-top {
    border-top-color: #4b1fa8;
}

.invest-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.invest-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f1043;
}

.invest-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 4px;
}

/* ===== FRANCHISE ADVANTAGE ===== */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(210px, 1fr));
    gap: 18px;
}

.advantage-item {
    display: flex;
    gap: 14px;
    align-items: center;
}

.adv-icon {
    width: 88px;
    height: 88px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: none;
}

.adv-icon img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    filter: none;
}

.advantage-item h4 {
    font-size: 1.95rem;
    font-weight: 700;
    color: #2e2e2e;
    margin-bottom: 10px;
}

.advantage-item p {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.35;
}

/* ===== THRIVING CENTRES ===== */
.centre-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
    transition: transform 0.2s;
}

.centre-card:hover {
    transform: translateY(-4px);
}

.centre-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.centre-info {
    padding: 20px;
}

.centre-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f1043;
    margin-bottom: 6px;
}

.centre-info p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* ===== ENQUIRY FORM ===== */
.form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.form input,
.form select {
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #2a1a5e;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.form input::placeholder {
    color: #aaa;
}

.form input:focus,
.form select:focus {
    border-color: #e87b02;
}

.form select option {
    background: #2a1a5e;
    color: #fff;
}

.phone-field {
    display: flex;
    align-items: center;
    background: #2a1a5e;
    border: 1px solid #444;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.phone-field:focus-within {
    border-color: #e87b02;
}

.phone-prefix {
    padding: 14px 14px;
    background: #3b2578;
    color: #e87b02;
    font-weight: 700;
    font-size: 0.95rem;
    border-right: 1px solid #444;
    white-space: nowrap;
}

.phone-field input {
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 14px 12px;
    flex: 1;
}

/* ===== FOOTER CTA ===== */
.footer-cta {
    background: #fff;
    padding: 0;
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-content h2 {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        transform: translateY(48px);
    }

    .hero-stat {
        border-bottom-width: 5px;
    }

    .stat-num {
        font-size: 2.8rem;
    }

    .stat-label {
        font-size: 2rem;
    }

    .stat-sub {
        font-size: 1.45rem;
    }

    .intro-banner {
        padding-top: 110px;
    }

    .intro-line {
        font-size: 1.5rem;
    }

    .financial-grid {
        grid-template-columns: 1fr;
    }

    .advantage-grid {
        grid-template-columns: 1fr 1fr;
    }

    .advantage-section .section-title {
        font-size: 2.6rem;
    }

    .advantage-section .section-sub {
        font-size: 1.3rem;
    }

    .advantage-item h4 {
        font-size: 1.5rem;
    }

    .advantage-item p {
        font-size: 1rem;
    }

    .opp-title {
        font-size: 2.2rem;
    }

    .opportunity-section .section-sub {
        font-size: 1.35rem;
    }

    .opportunity-section .section-body {
        font-size: 1.02rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .opp-row {
        flex-direction: column;
        align-items: center;
    }

    .opp-line {
        display: none;
    }

    .opp-item {
        max-width: 330px;
    }

    .opp-badge-circle {
        width: 215px;
        height: 172px;
    }

    .opp-item h4 {
        font-size: 1.9rem;
    }

    .opp-item p {
        font-size: 1.05rem;
    }
}

/* ===== OPPORTUNITY NUMBERED ICONS ===== */
.opp-title {
    font-size: 4rem;
    text-align: center;
}

.opp-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px !important;
}

.opp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
    flex: 1;
}

/* The orange badge circle */
.opp-badge-circle {
    width: 400px;
    height: 400px;
    margin-bottom: 12px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.opp-badge-circle img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.opp-item h4 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 6px;
    line-height: 1.2;
}

.opp-item p {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.3;
}

/* Connecting horizontal line between icons */
.opp-line {
    flex-shrink: 0;
    width: 145px;
    height: 3px;
    background: #292929;
    margin-top: -72px;
}

.opportunity-section {
    background: #e8e8e8;
    padding: 92px 0;
}

.opportunity-section .section-sub {
    font-size: 2rem;
    color: #333;
    margin-top: 8px;
}

.opportunity-section .section-body {
    font-size: 1.35rem;
    max-width: 980px;
    color: #737373;
}

.advantage-section {
    background: #1f2f59;
    padding: 92px 0 108px;
}

.advantage-section .section-title {
    color: #fff;
    margin-bottom: 6px;
    font-size: 4rem;
}

.advantage-section .section-sub {
    color: #eef1f9;
    font-size: 2rem;
    margin-bottom: 34px;
}

.card-style {
    background: #efefef;
    border-radius: 0 0 28px 28px;
    border-bottom: 8px solid #e87b02;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
    padding: 32px 18px 28px;
    text-align: center;
    display: block;
}

.card-icon {
    margin: 0 auto 8px;
}

/* ===== MODAL POPUP ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #1f1043;
    border-radius: 16px;
    padding: 44px 40px 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: popIn 0.25s ease;
}

@keyframes popIn {
    from {
        transform: scale(0.88);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.modal-close:hover {
    opacity: 1;
}

.modal-box h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.modal-sub {
    font-size: 0.88rem;
    color: #bbb;
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .opp-title {
        font-size: 2.2rem;
    }

    .opportunity-section .section-sub {
        font-size: 1.35rem;
    }

    .opportunity-section .section-body {
        font-size: 1.02rem;
    }

    .opp-item {
        max-width: 330px;
    }

    .opp-badge-circle {
        width: 215px;
        height: 172px;
    }

    .opp-item h4 {
        font-size: 1.9rem;
    }

    .opp-item p {
        font-size: 1.05rem;
    }

    .advantage-section .section-title {
        font-size: 2.6rem;
    }

    .advantage-section .section-sub {
        font-size: 1.3rem;
    }

    .advantage-item h4 {
        font-size: 1.5rem;
    }

    .advantage-item p {
        font-size: 1rem;
    }
}

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

/* ===== Targeted Section Fixes ===== */
.hero-stat .stat-num {
    font-size: 3.2rem;
}

.hero-stat .stat-label {
    font-size: 0.98rem;
}

.hero-stat .stat-sub {
    font-size: 0.8rem;
}

.intro-line {
    font-size: 1.05rem;
}

.opportunity-section {
    background: #e8e8e8;
    padding: 84px 0 74px;
}

.opportunity-section .container {
    max-width: 1240px;
}

.opp-title {
    font-size: clamp(2.4rem, 4.8vw, 4.1rem);
    line-height: 1.18;
}

.opportunity-section .section-sub {
    font-size: 1rem;
    font-weight: 500;
    color: #2f3440;
    margin-top: 8px;
}

.opportunity-section .section-body {
    font-size: 0.9rem;
    color: #646b76;
    max-width: 900px;
    line-height: 1.55;
}

.opportunity-section .opp-row {
    align-items: flex-start;
    gap: 15px;
    margin-top: 92px;
}

.opp-badge-circle {
    width: 400px;
    height: 400px;
}

.opp-line {
    width: 165px;
    height: 3px;
    margin-top: 38px;
}

.opp-item h4 {
    margin-top: 34px;
    font-size: 1.05rem;
    line-height: 1.15;
}

.opp-item p {
    font-size: 0.88rem;
    line-height: 1.35;
}

.financial-section {
    background: #e8e8e8;
    padding: 88px 0 96px;
}

.financial-section .container {
    max-width: 1240px;
}

.financial-section .section-title {
    font-size: 3.1rem;
    color: #2d2d33;
    margin-bottom: 2px;
}

.financial-section .section-sub {
    font-size: 1.1rem;
    color: #2f3137;
    margin-bottom: 10px;
}

.financial-body {
    color: #666a72;
    font-size: 0.94rem;
    line-height: 1.42;
    max-width: 760px;
    margin-bottom: 12px;
}

/* --- Financial Grid Layout --- */
.financial-section .financial-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

/* --- Donut Charts Column --- */
.financial-section .charts-col {
    align-items: center;
    gap: 50px;
    padding-left: 0;
    margin-left: -30px;
}

/* SVG donut wrapper */
.donut-svg-wrap {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
}

.donut-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.donut-svg-wrap .donut-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.financial-section .donut-num {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    color: #38115f;
    line-height: 1;
}

.financial-section .donut-label {
    display: block;
    font-size: 0.78rem;
    line-height: 1.3;
    color: #4e4f54;
    font-weight: 500;
}

.financial-section .donut-wrap p {
    display: none;
}

/* --- Investment Cards Column --- */
.financial-section .invest-col {
    gap: 30px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
}

/* The colored L-shaped tab behind the card */
.financial-section .invest-track {
    position: relative;
    padding: 12px 0 0 20px;
    overflow: visible;
    margin-left: 20px;
    border-radius: 18px 18px 18px 0;
}

.financial-section .invest-track.orange-top {
    background: #e87b02;
}

.financial-section .invest-track.purple-top {
    background: #3c1263;
}

/* The white card that sits offset inside the track */
.financial-section .invest-card {
    position: relative;
    margin: 0;
    margin-right: -20px;
    min-height: 80px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px 22px 40px;
    border-top: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.financial-section .invest-card p {
    font-size: 0.92rem;
    line-height: 1.45;
    color: #4f4f55;
    margin: 0;
}

/* Toggle-style dot on the left edge of the card */
.financial-section .invest-dot {
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 18px;
    border-radius: 10px;
    background: #e8e8e8;
    border: 2px solid #e87b02;
    flex: 0 0 auto;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.financial-section .invest-dot::after {
    content: '';
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e87b02;
}

.financial-section .invest-track.purple-top .invest-dot {
    border-color: #3c1263;
}

.financial-section .invest-track.purple-top .invest-dot::after {
    background: #3c1263;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .financial-section .financial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .financial-section .charts-col {
        align-items: center;
        padding-left: 0;
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-stat .stat-num {
        font-size: 2.6rem;
    }

    .hero-stat .stat-label {
        font-size: 0.95rem;
    }

    .hero-stat .stat-sub {
        font-size: 0.8rem;
    }

    .opportunity-section .opp-row {
        margin-top: 44px;
    }

    .opp-line {
        display: none;
    }

    .opp-item h4 {
        margin-top: 10px;
        font-size: 1.2rem;
    }

    .opp-item p {
        font-size: 0.95rem;
    }

    .financial-section .section-title {
        font-size: 2.2rem;
    }

    .financial-section .invest-card p {
        font-size: 0.97rem;
    }

    .financial-section .donut-num {
        font-size: 2.6rem;
    }

    .financial-section .donut-label {
        font-size: 0.85rem;
    }

    .financial-section .charts-col {
        flex-direction: column;
    }
}

/* ========================================================
   CLEAN OVERRIDES: Opportunity icons + Centre cards
   Matching PDF design exactly
   ======================================================== */

/* --- Opportunity Section --- */
.opportunity-section {
    background: #e8e8e8 !important;
    padding: 80px 0 90px !important;
}

.opportunity-section .container {
    max-width: 1200px !important;
}

.opp-title {
    font-size: clamp(2.4rem, 4.8vw, 3.8rem) !important;
    line-height: 1.18 !important;
    text-align: center !important;
}

.opportunity-section .section-sub {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: #2f3440 !important;
    margin-top: 10px !important;
    text-align: center !important;
}

.opportunity-section .section-body {
    font-size: 0.92rem !important;
    color: #646b76 !important;
    max-width: 880px !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin: 12px auto 0 !important;
}

.opportunity-section .opp-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 0 !important;
    margin-top: 20px !important;
}

.opportunity-section .opp-item {
    flex: 0 0 auto !important;
    width: auto !important;
    text-align: center !important;
    padding: 0 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.opportunity-section .opp-badge-circle {
    width: 200px !important;
    max-width: 200px !important;
    height: 200px !important;
    border-radius: 0 !important;
    overflow: visible !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
}



.opportunity-section .opp-badge-circle img.opp-asset {
    width: 400px !important;
    height: 400px !important;
    object-fit: contain !important;
    display: block !important;
}

.opportunity-section .opp-line {
    display: none !important;
}

/* Move last icon left */
.opportunity-section .opp-item:last-child {
    margin-left: -40px !important;
}

.opportunity-section .opp-item h4 {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #2d2d2d !important;
    margin: 0 0 6px 0 !important;
    min-height: 0 !important;
    display: block !important;
    line-height: 1.3 !important;
}

.opportunity-section .opp-item p {
    font-size: 0.92rem !important;
    color: #666 !important;
    line-height: 1.45 !important;
    min-height: 0 !important;
    margin: 0 !important;
    max-width: 220px !important;
}

/* --- Centres Section --- */
.centres-section {
    background: #eceaf2 !important;
    padding: 80px 0 20px !important;
}

.centres-section .container {
    max-width: 1200px !important;
}

.centres-section .section-title {
    text-align: center !important;
}

.centres-sub {
    max-width: 860px !important;
    color: #64656b !important;
    text-align: center !important;
    margin: 0 auto !important;
}

.centres-section .grid-3 {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    align-items: stretch !important;
}

.centres-section .grid-3>.centre-card {
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.10) !important;
    max-width: none !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: unset !important;
    margin: 0 !important;
    grid-area: unset !important;
    grid-template-areas: none !important;
    transition: transform 0.2s !important;
}

.centres-section .grid-3>.centre-card:hover {
    transform: translateY(-4px) !important;
}

.centres-section .grid-3>.centre-card>img {
    position: relative !important;
    inset: unset !important;
    display: block !important;
    object-fit: cover !important;
    object-position: top center !important;
    border-radius: 16px !important;
    margin: 14px !important;
    width: calc(100% - 28px) !important;
    height: 240px !important;
    grid-area: unset !important;
    flex-shrink: 0 !important;
    min-height: unset !important;
}

.centres-section .grid-3>.centre-card>.centre-info {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    z-index: 1 !important;
    padding: 6px 22px 28px !important;
    margin: 0 !important;
    grid-area: unset !important;
    align-self: unset !important;
    justify-self: unset !important;
    flex: 1 !important;
    display: block !important;
    flex-direction: unset !important;
}

.centres-section .grid-3>.centre-card>.centre-info h4 {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #1f1a49 !important;
    margin: 0 0 10px 0 !important;
}

.centres-section .grid-3>.centre-card>.centre-info p {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    color: #666 !important;
    margin: 0 !important;
}

/* --- Pedagogy Section --- */
.pedagogy-section {
    background: #efefef !important;
    padding: 92px 0 96px !important;
}

.pedagogy-section .container {
    max-width: 1120px !important;
}

.pedagogy-title {
    color: #e87b02 !important;
    font-size: 2.3rem !important;
}

.pedagogy-sub {
    color: #2f2f34 !important;
    font-size: 1rem !important;
    margin-bottom: 8px !important;
}

.pedagogy-section .grid-2 {
    gap: 48px !important;
}

.pedagogy-section .pedagogy-card {
    background: #1f2f59 !important;
    border-radius: 0 24px 24px 24px !important;
    border-left: 0 !important;
    box-shadow: 6px 6px 0 #e87b02, 0 8px 16px rgba(0, 0, 0, 0.18) !important;
    padding: 38px 36px !important;
}

.pedagogy-section .pedagogy-card h3 {
    font-size: 2rem !important;
    color: #fff !important;
    margin-bottom: 14px !important;
}

.pedagogy-section .pedagogy-card p {
    color: #f0f0f0 !important;
    font-size: 0.94rem !important;
    line-height: 1.35 !important;
}

.pedagogy-section .pedagogy-card ul {
    margin-top: 8px !important;
    padding-left: 0 !important;
    list-style: none !important;
}

.pedagogy-section .pedagogy-card ul li {
    color: #fff !important;
    font-size: 0.95rem !important;
    margin: 10px 0 !important;
    position: relative !important;
    padding-left: 24px !important;
}

.pedagogy-section .pedagogy-card ul li::before {
    content: '' !important;
    width: 8px !important;
    height: 8px !important;
    border: 4px solid #e87b02 !important;
    border-radius: 50% !important;
    position: absolute !important;
    left: 0 !important;
    top: 9px !important;
}

.pedagogy-section .pedagogy-card ul li::marker {
    content: none !important;
}

/* --- Advantage Section icons --- */
.advantage-section .card-icon {
    width: 96px !important;
    height: 96px !important;
    overflow: hidden !important;
    position: relative !important;
}

.advantage-section .adv-asset {
    width: 280px !important;
    height: 280px !important;
    max-width: none !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -49%) !important;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .centres-section .grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .centres-section .grid-3 {
        grid-template-columns: 1fr !important;
        max-width: 420px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .centres-section .grid-3>.centre-card>img {
        height: 200px !important;
    }

    .opportunity-section .opp-row {
        flex-wrap: wrap !important;
        gap: 16px !important;
    }

    .opportunity-section .opp-item {
        flex: 0 0 45% !important;
    }

    .pedagogy-title {
        font-size: 1.9rem !important;
    }

    .pedagogy-section .pedagogy-card h3 {
        font-size: 1.85rem !important;
    }

    .advantage-section .card-icon {
        width: 80px !important;
        height: 80px !important;
    }

    .advantage-section .adv-asset {
        width: 240px !important;
        height: 240px !important;
    }
}