﻿/* =========================================================
   XFSPL - MUTUAL FUNDS PAGE
   Premium Financial Services Design
   ========================================================= */

.mf-page {
    background: #ffffff;
    color: #172033;
    font-family: "Inter", sans-serif;
}

    .mf-page .container {
        width: 92%;
        max-width: 1180px;
        margin: 0 auto;
    }


/* =========================================================
   HERO
   ========================================================= */

.mf-hero {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: linear-gradient( 90deg, rgba(5, 22, 42, .99) 0%, rgba(6, 25, 47, .97) 50%, rgba(6, 25, 47, .90) 100% ), url("/images/mutual-fund-bg.jpg") center/cover no-repeat;
}

.mf-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 65px;
    align-items: center;
}

.mf-hero-content {
    padding: 80px 0;
}

.mf-eyebrow,
.mf-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d4a72c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.mf-hero h1 {
    margin: 22px 0;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1.08;
    font-weight: 800;
}

    .mf-hero h1 span {
        display: block;
        color: #d4a72c;
    }

.mf-hero p {
    max-width: 620px;
    margin: 0;
    color: #d5dfe9;
    font-size: 17px;
    line-height: 1.8;
}

.mf-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.mf-btn {
    min-height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all .25s ease;
}

.mf-btn-gold {
    background: #d4a72c;
    color: #06172c;
}

    .mf-btn-gold:hover {
        background: #ffffff;
        color: #06172c;
        transform: translateY(-2px);
    }

.mf-btn-outline {
    border: 1px solid rgba(255,255,255,.45);
    color: #ffffff;
}

    .mf-btn-outline:hover {
        background: #ffffff;
        color: #0b1f3a;
    }

.mf-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}

    .mf-hero-trust span {
        display: flex;
        align-items: center;
        gap: 7px;
        color: #bfcbd7;
        font-size: 12px;
    }

    .mf-hero-trust i {
        color: #d4a72c;
    }


/* =========================================================
   PORTFOLIO VISUAL
   ========================================================= */

.mf-portfolio-visual {
    padding: 30px;
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.mf-portfolio-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid #e8edf3;
}

    .mf-portfolio-header small {
        display: block;
        margin-bottom: 5px;
        color: #7a8492;
        font-size: 11px;
    }

    .mf-portfolio-header strong {
        color: #0b1f3a;
        font-family: "Manrope", sans-serif;
        font-size: 19px;
    }

.mf-portfolio-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf2fc;
    color: #1557b0;
    border-radius: 7px;
}

.mf-chart {
    position: relative;
    height: 260px;
    padding-top: 25px;
}

.mf-chart-grid {
    position: absolute;
    inset: 25px 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .mf-chart-grid span {
        width: 100%;
        height: 1px;
        background: #e8edf3;
    }

.mf-chart-svg {
    position: absolute;
    left: 0;
    right: 0;
    top: 25px;
    width: 100%;
    height: 205px;
}

.mf-chart-labels {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    color: #8792a0;
    font-size: 11px;
}

.mf-portfolio-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding-top: 22px;
    border-top: 1px solid #e8edf3;
}

    .mf-portfolio-bottom span {
        display: block;
        margin-bottom: 5px;
        color: #7a8492;
        font-size: 11px;
    }

    .mf-portfolio-bottom strong {
        color: #0b1f3a;
        font-size: 14px;
    }


/* =========================================================
   COMMON SECTIONS
   ========================================================= */

.mf-section {
    padding: 90px 0;
}

.mf-light {
    background: #f7f9fc;
}

.mf-section-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

    .mf-section-heading h2,
    .mf-content h2 {
        margin: 13px 0 17px;
        color: #0b1f3a;
        font-family: "Manrope", sans-serif;
        font-size: clamp(32px, 4vw, 45px);
        line-height: 1.15;
        font-weight: 800;
    }

    .mf-section-heading p,
    .mf-content p {
        color: #657181;
        font-size: 15px;
        line-height: 1.8;
    }

.mf-content p {
    margin-bottom: 18px;
}


/* =========================================================
   TWO COLUMN
   ========================================================= */

.mf-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}


/* =========================================================
   HIGHLIGHT
   ========================================================= */

.mf-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 28px;
    padding: 22px;
    background: #f7f9fc;
    border-left: 4px solid #d4a72c;
}

.mf-highlight-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1f3a;
    color: #d4a72c;
    border-radius: 50%;
}

.mf-highlight-box h4 {
    margin: 2px 0 6px;
    color: #0b1f3a;
    font-family: "Manrope", sans-serif;
}

.mf-highlight-box p {
    margin: 0;
    font-size: 13px;
}


/* =========================================================
   DEFINITION CARD
   ========================================================= */

.mf-definition-card {
    padding: 38px;
    background: #0b1f3a;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(11,31,58,.13);
}

.mf-definition-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(212,167,44,.14);
    color: #d4a72c;
    border-radius: 7px;
    font-size: 21px;
}

.mf-definition-card h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
}

.mf-definition-item {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 14px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

    .mf-definition-item:last-child {
        border-bottom: 0;
    }

    .mf-definition-item span {
        color: #d4a72c;
        font-size: 12px;
        font-weight: 800;
    }

    .mf-definition-item p {
        margin: 0;
        color: #d3dce6;
        font-size: 13px;
        line-height: 1.6;
    }


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.mf-step-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.mf-step-card {
    position: relative;
    padding: 30px 25px;
    background: #ffffff;
    border: 1px solid #e1e7ef;
    transition: all .25s ease;
}

    .mf-step-card:hover {
        transform: translateY(-5px);
        border-color: #d4a72c;
        box-shadow: 0 15px 35px rgba(11,31,58,.08);
    }

.mf-step-number {
    position: absolute;
    top: 18px;
    right: 18px;
    color: #e7ecf2;
    font-size: 27px;
    font-weight: 800;
}

.mf-step-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #eaf2fc;
    color: #1557b0;
    border-radius: 7px;
    font-size: 20px;
}

.mf-step-card h3 {
    margin: 0 0 10px;
    color: #0b1f3a;
    font-family: "Manrope", sans-serif;
    font-size: 19px;
}

.mf-step-card p {
    margin: 0;
    color: #657181;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   ADVANTAGES
   ========================================================= */

.mf-advantage-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.mf-advantage-card {
    padding: 30px 25px;
    background: #ffffff;
    border: 1px solid #e1e7ef;
}

.mf-advantage-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #0b1f3a;
    color: #d4a72c;
    border-radius: 7px;
}

.mf-advantage-card h3 {
    margin: 0 0 10px;
    color: #0b1f3a;
    font-family: "Manrope", sans-serif;
    font-size: 19px;
}

.mf-advantage-card p {
    margin: 0;
    color: #657181;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   TYPES
   ========================================================= */

.mf-type-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.mf-type-card {
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e1e7ef;
    transition: all .25s ease;
}

    .mf-type-card:hover {
        transform: translateY(-5px);
        border-color: #d4a72c;
        box-shadow: 0 15px 35px rgba(11,31,58,.08);
    }

.mf-type-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #eaf2fc;
    color: #1557b0;
    border-radius: 7px;
    font-size: 20px;
}

.mf-type-card h3 {
    margin: 0 0 10px;
    color: #0b1f3a;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
}

.mf-type-card p {
    margin: 0 0 17px;
    color: #657181;
    font-size: 13px;
    line-height: 1.75;
}

.mf-type-card > span {
    color: #d4a72c;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
}


/* =========================================================
   SIP
   ========================================================= */

.mf-sip-section {
    padding: 95px 0;
    background: #06172c;
}

.mf-sip-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.mf-sip-content h2 {
    margin: 14px 0 20px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(35px,4vw,50px);
    line-height: 1.15;
    font-weight: 800;
}

    .mf-sip-content h2 span {
        color: #d4a72c;
    }

.mf-sip-content p {
    color: #c9d3de;
    font-size: 15px;
    line-height: 1.8;
}

.mf-sip-content .mf-btn {
    margin-top: 15px;
}

.mf-sip-process {
    padding: 35px;
    background: #ffffff;
    border-radius: 8px;
}

.mf-sip-title {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    color: #0b1f3a;
    font-family: "Manrope", sans-serif;
    font-size: 23px;
    font-weight: 800;
    border-bottom: 1px solid #e5eaf0;
}

    .mf-sip-title i {
        color: #d4a72c;
    }

.mf-sip-row {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding: 19px 0;
    border-bottom: 1px solid #e8edf3;
}

    .mf-sip-row:last-child {
        border-bottom: 0;
    }

    .mf-sip-row > span {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #0b1f3a;
        color: #d4a72c;
        border-radius: 50%;
        font-size: 11px;
        font-weight: 800;
    }

    .mf-sip-row strong {
        display: block;
        margin-bottom: 5px;
        color: #0b1f3a;
        font-size: 14px;
    }

    .mf-sip-row p {
        margin: 0;
        color: #657181;
        font-size: 12px;
        line-height: 1.6;
    }


/* =========================================================
   LUMP SUM
   ========================================================= */

.mf-lumpsum-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.mf-lumpsum-visual {
    padding: 45px;
    background: #0b1f3a;
    border-radius: 8px;
    text-align: center;
}

.mf-lumpsum-circle {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    background: rgba(212,167,44,.14);
    color: #d4a72c;
    border: 1px solid rgba(212,167,44,.4);
    border-radius: 50%;
    font-size: 31px;
}

.mf-lumpsum-visual > span {
    color: #d4a72c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.mf-lumpsum-visual h3 {
    margin: 10px 0;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 32px;
}

.mf-lumpsum-visual p {
    margin: 0;
    color: #c8d3df;
    font-size: 14px;
    line-height: 1.7;
}

.mf-content h2 span {
    color: #1557b0;
}

.mf-lumpsum-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 25px;
}

    .mf-lumpsum-points div {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: #657181;
        font-size: 14px;
        line-height: 1.6;
    }

    .mf-lumpsum-points i {
        color: #d4a72c;
        margin-top: 3px;
    }


/* =========================================================
   COMPARISON
   ========================================================= */

.mf-comparison {
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #dfe5ec;
}

.mf-comparison-head,
.mf-comparison-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
}

.mf-comparison-head {
    background: #0b1f3a;
}

    .mf-comparison-head div {
        padding: 17px;
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
    }

.mf-comparison-row {
    background: #ffffff;
    border-bottom: 1px solid #e1e7ef;
}

    .mf-comparison-row:last-child {
        border-bottom: 0;
    }

    .mf-comparison-row div {
        padding: 16px;
        color: #657181;
        font-size: 13px;
    }

        .mf-comparison-row div:not(:last-child),
        .mf-comparison-head div:not(:last-child) {
            border-right: 1px solid #e1e7ef;
        }


/* =========================================================
   WHO CAN INVEST
   ========================================================= */

.mf-investor-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.mf-investor-card {
    padding: 30px 25px;
    background: #ffffff;
    border: 1px solid #e1e7ef;
    text-align: center;
}

    .mf-investor-card > i {
        width: 58px;
        height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
        background: #eaf2fc;
        color: #1557b0;
        border-radius: 50%;
        font-size: 21px;
    }

    .mf-investor-card h3 {
        margin: 0 0 10px;
        color: #0b1f3a;
        font-family: "Manrope", sans-serif;
        font-size: 18px;
    }

    .mf-investor-card p {
        margin: 0;
        color: #657181;
        font-size: 13px;
        line-height: 1.7;
    }


/* =========================================================
   GOAL BASED
   ========================================================= */

.mf-goal-section {
    padding: 90px 0;
    background: #06172c;
}

.mf-goal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.mf-goal-content h2 {
    max-width: 580px;
    margin: 15px 0 18px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 43px;
    line-height: 1.18;
}

.mf-goal-content p {
    max-width: 580px;
    color: #c8d3df;
    font-size: 15px;
    line-height: 1.8;
}

.mf-goal-content .mf-btn {
    margin-top: 15px;
}

.mf-goals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mf-goal-card {
    min-height: 115px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.13);
    text-align: center;
}

    .mf-goal-card i {
        color: #d4a72c;
        font-size: 22px;
    }

    .mf-goal-card span {
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
    }


/* =========================================================
   HOW TO INVEST
   ========================================================= */

.mf-invest-process {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.mf-invest-process-card {
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e1e7ef;
}

.mf-process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 23px;
}

    .mf-process-top span {
        color: #d4a72c;
        font-size: 12px;
        font-weight: 800;
    }

    .mf-process-top i {
        color: #1557b0;
        font-size: 23px;
    }

.mf-invest-process-card h3 {
    margin: 0 0 10px;
    color: #0b1f3a;
    font-family: "Manrope", sans-serif;
    font-size: 19px;
}

.mf-invest-process-card p {
    margin: 0;
    color: #657181;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   XFSPL APPROACH
   ========================================================= */

.mf-approach-section {
    padding: 90px 0;
    background: #f7f9fc;
}

.mf-approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

    .mf-approach-grid h2 {
        max-width: 580px;
        margin: 15px 0;
        color: #0b1f3a;
        font-family: "Manrope", sans-serif;
        font-size: 43px;
        line-height: 1.18;
    }

    .mf-approach-grid p {
        max-width: 600px;
        color: #657181;
        font-size: 15px;
        line-height: 1.8;
    }

.mf-approach-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

    .mf-approach-points div {
        min-height: 85px;
        display: flex;
        align-items: center;
        gap: 13px;
        padding: 20px;
        background: #ffffff;
        border: 1px solid #e1e7ef;
    }

    .mf-approach-points i {
        color: #d4a72c;
        font-size: 19px;
    }

    .mf-approach-points span {
        color: #0b1f3a;
        font-size: 13px;
        font-weight: 700;
    }


/* =========================================================
   CTA
   ========================================================= */

.mf-cta {
    padding: 75px 0;
    background: #ffffff;
}

.mf-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px 60px;
    background: #0b1f3a;
}

    .mf-cta-inner h2 {
        margin: 13px 0;
        color: #ffffff;
        font-family: "Manrope", sans-serif;
        font-size: 40px;
    }

    .mf-cta-inner p {
        max-width: 620px;
        margin: 0;
        color: #c8d3df;
        font-size: 14px;
        line-height: 1.8;
    }


/* =========================================================
   DISCLOSURE
   ========================================================= */

.mf-disclosure {
    padding: 20px 0 70px;
    background: #ffffff;
}

.mf-disclosure-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: #fff9e8;
    border: 1px solid #ead99f;
}

.mf-disclosure-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d4a72c;
    color: #06172c;
    border-radius: 50%;
}

.mf-disclosure-box h3 {
    margin: 0 0 8px;
    color: #0b1f3a;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
}

.mf-disclosure-box p {
    margin: 0 0 7px;
    color: #657181;
    font-size: 12px;
    line-height: 1.7;
}

    .mf-disclosure-box p:last-child {
        margin-bottom: 0;
    }


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .mf-hero-grid,
    .mf-two-column,
    .mf-sip-grid,
    .mf-lumpsum-grid,
    .mf-goal-grid,
    .mf-approach-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .mf-step-grid,
    .mf-advantage-grid,
    .mf-investor-grid,
    .mf-invest-process {
        grid-template-columns: repeat(2,1fr);
    }

    .mf-type-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .mf-hero {
        padding-bottom: 60px;
    }

    .mf-hero-content {
        padding-bottom: 10px;
    }

    .mf-portfolio-visual {
        max-width: 700px;
    }

    .mf-goal-content h2,
    .mf-approach-grid h2 {
        font-size: 36px;
    }

    .mf-cta-inner {
        padding: 45px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .mf-page .container {
        width: 91%;
    }

    .mf-hero {
        min-height: auto;
    }

    .mf-hero-content {
        padding: 65px 0 15px;
    }

    .mf-hero h1 {
        font-size: 39px;
    }

    .mf-hero p {
        font-size: 14px;
    }

    .mf-hero-buttons {
        flex-direction: column;
    }

    .mf-btn {
        width: 100%;
    }

    .mf-hero-trust {
        flex-direction: column;
        gap: 10px;
    }

    .mf-portfolio-visual {
        padding: 22px;
        margin-bottom: 30px;
    }

    .mf-chart {
        height: 220px;
    }

    .mf-chart-svg {
        height: 175px;
    }

    .mf-section,
    .mf-sip-section,
    .mf-goal-section,
    .mf-approach-section {
        padding: 65px 0;
    }

    .mf-section-heading {
        margin-bottom: 35px;
    }

        .mf-section-heading h2,
        .mf-content h2 {
            font-size: 31px;
        }

    .mf-step-grid,
    .mf-advantage-grid,
    .mf-type-grid,
    .mf-investor-grid,
    .mf-invest-process {
        grid-template-columns: 1fr;
    }

    .mf-definition-card,
    .mf-sip-process,
    .mf-lumpsum-visual {
        padding: 28px 22px;
    }

    .mf-sip-content h2 {
        font-size: 34px;
    }

    .mf-goal-content h2,
    .mf-approach-grid h2 {
        font-size: 32px;
    }

    .mf-goals {
        grid-template-columns: 1fr 1fr;
    }

    .mf-approach-points {
        grid-template-columns: 1fr;
    }

    .mf-cta {
        padding: 60px 0;
    }

    .mf-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 38px 25px;
    }

        .mf-cta-inner h2 {
            font-size: 32px;
        }

        .mf-cta-inner .mf-btn {
            width: 100%;
        }

    .mf-comparison {
        overflow-x: auto;
    }

    .mf-comparison-head,
    .mf-comparison-row {
        min-width: 600px;
    }

    .mf-disclosure-box {
        flex-direction: column;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .mf-hero h1 {
        font-size: 34px;
    }

    .mf-portfolio-bottom {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mf-goals {
        grid-template-columns: 1fr;
    }

    .mf-highlight-box {
        flex-direction: column;
    }
}


