/* =========================================================
   KALAPANI HOLIDAYS
   ABOUT PAGE — FINAL CLEAN CSS
   ========================================================= */

.kh-about-page {
    --kh-navy: #061a33;
    --kh-navy-2: #0a2945;
    --kh-blue: #12a8dc;
    --kh-cyan: #58d7f1;
    --kh-text: #10243c;
    --kh-muted: #61758b;
    --kh-border: #dce6ed;
    --kh-light: #f5f9fb;
    --kh-white: #ffffff;

    color: var(--kh-text);
    background: var(--kh-white);
}

.kh-about-page *,
.kh-about-page *::before,
.kh-about-page *::after {
    box-sizing: border-box;
}

.kh-about-page h1,
.kh-about-page h2,
.kh-about-page h3,
.kh-about-page p {
    margin-top: 0;
}

.kh-about-page a {
    text-decoration: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.kh-about-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   SECTION LABELS
   ========================================================= */

.kh-about-page .kh-about-eyebrow,
.kh-about-page .kh-about-section-label span,
.kh-about-page .kh-about-side-label span,
.kh-about-page .kh-about-founder-label span {
    display: inline-block;
    margin: 0 0 18px;

    color: var(--kh-blue);

    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;

    letter-spacing: .16em;
    text-transform: uppercase;
}

.kh-about-hero .kh-about-eyebrow,
.kh-about-b2b-content .kh-about-eyebrow,
.kh-about-cta-box .kh-about-eyebrow {
    color: var(--kh-cyan);
}


/* =========================================================
   HERO
   ========================================================= */

.kh-about-hero {
    position: relative;
    overflow: hidden;

    min-height: 560px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 86% 72%,
            rgba(18,168,220,.22),
            transparent 34%
        ),
        linear-gradient(
            120deg,
            #04182d 0%,
            #06263f 55%,
            #0b526d 100%
        );
}

.kh-about-hero::before {
    content: "";

    position: absolute;
    right: -180px;
    bottom: -330px;

    width: 700px;
    height: 700px;

    border: 1px solid rgba(88,215,241,.15);
    border-radius: 50%;

    box-shadow:
        0 0 0 85px rgba(88,215,241,.035),
        0 0 0 170px rgba(88,215,241,.02);
}

.kh-about-hero-content {
    position: relative;
    z-index: 2;

    max-width: 820px;
    padding: 70px 0;
}

.kh-about-hero h1 {
    max-width: 850px;

    margin: 0 0 22px;

    color: var(--kh-white);

    font-size: clamp(52px, 6vw, 78px);
    font-weight: 800;
    line-height: .99;
    letter-spacing: -.045em;
}

.kh-about-hero h1 span {
    color: var(--kh-cyan);
}

.kh-about-hero p {
    max-width: 720px;

    margin: 0 0 30px;

    color: rgba(255,255,255,.82);

    font-size: 18px;
    line-height: 1.65;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.kh-about-actions,
.kh-about-hero-actions,
.kh-about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.kh-about-btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 0 24px;

    border: 1px solid transparent;
    border-radius: 9px;

    font-size: 14px;
    font-weight: 800;
    line-height: 1;

    text-decoration: none;

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease,
        color .2s ease;
}

.kh-about-btn:hover {
    transform: translateY(-2px);
}


/* WHITE BUTTON */

.kh-about-btn-primary {
    color: var(--kh-navy) !important;
    background: var(--kh-white) !important;
    border-color: var(--kh-white) !important;
}

.kh-about-btn-primary:hover {
    color: var(--kh-navy) !important;
    background: #eafaff !important;
    border-color: #eafaff !important;
}


/* OUTLINE BUTTON */

.kh-about-btn-outline,
.kh-about-btn-secondary,
.kh-about-btn-ghost {
    color: var(--kh-white) !important;
    background: transparent !important;
    border-color: rgba(255,255,255,.45) !important;
}

.kh-about-btn-outline:hover,
.kh-about-btn-secondary:hover,
.kh-about-btn-ghost:hover {
    color: var(--kh-navy) !important;
    background: var(--kh-white) !important;
    border-color: var(--kh-white) !important;
}


/* =========================================================
   STORY
   ========================================================= */

.kh-about-story {
    padding: 75px 0 80px;
    background: var(--kh-white);
}

.kh-about-story-grid {
    display: grid;
    grid-template-columns: 190px minmax(0,1fr);
    gap: 65px;
    align-items: start;
}

.kh-about-side-label {
    padding-top: 7px;
}

.kh-about-story-content {
    max-width: 900px;
}

.kh-about-story-content h2 {
    margin: 0 0 22px;

    color: var(--kh-navy);

    font-size: clamp(42px,4.7vw,62px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.kh-about-story-content h2 span {
    color: var(--kh-blue);
}

.kh-about-story-content p {
    max-width: 850px;

    margin: 0 0 14px;

    color: var(--kh-muted);

    font-size: 17px;
    line-height: 1.7;
}

.kh-about-story-content p:last-child {
    margin-bottom: 0;
}

.kh-about-story-content strong {
    color: var(--kh-navy);
}


/* =========================================================
   FOUNDER
   ========================================================= */

.kh-about-founder {
    padding: 0 0 75px;
    background: var(--kh-white);
}

.kh-about-founder-box {
    display: grid;
    grid-template-columns: 220px minmax(0,1fr);
    gap: 65px;

    padding: 50px 60px;

    border-radius: 22px;
    background: var(--kh-light);
}

.kh-about-founder-line {
    width: 55px;
    height: 2px;
    margin-top: 14px;

    background: var(--kh-blue);
}

.kh-about-founder-content {
    max-width: 820px;
}

.kh-about-founder-content h2 {
    margin: 0 0 22px;

    color: var(--kh-navy);

    font-size: clamp(40px,4.5vw,58px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.kh-about-founder-content h2 span {
    color: var(--kh-blue);
}

.kh-about-founder-content h3 {
    margin: 0 0 5px;

    color: var(--kh-navy);

    font-size: 25px;
    line-height: 1.2;
}

.kh-about-founder-content > strong {
    display: block;
    margin: 0 0 20px;

    color: var(--kh-blue);
    font-size: 14px;
}

.kh-about-founder-content > p {
    max-width: 800px;

    margin: 0 0 14px;

    color: var(--kh-muted);

    font-size: 16px;
    line-height: 1.7;
}

.kh-about-founder-quote {
    display: flex;
    gap: 14px;

    margin-top: 25px;
    padding-top: 22px;

    border-top: 1px solid var(--kh-border);
}

.kh-about-founder-quote > span {
    color: var(--kh-blue);

    font-size: 42px;
    font-weight: 800;
    line-height: .7;
}

.kh-about-founder-quote p {
    max-width: 600px;

    margin: 0;

    color: var(--kh-navy);

    font-size: 16px;
    font-weight: 700;
    line-height: 1.55;
}


/* =========================================================
   WHO WE ARE
   ========================================================= */

.kh-about-who {
    padding: 70px 0 75px;
    background: var(--kh-light);
}

.kh-about-heading {
    max-width: 900px;
    margin-bottom: 35px;
}

.kh-about-heading h2 {
    margin: 0 0 20px;

    color: var(--kh-navy);

    font-size: clamp(42px,4.7vw,62px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.kh-about-heading h2 span {
    color: var(--kh-blue);
}

.kh-about-heading p {
    max-width: 850px;

    margin: 0 0 14px;

    color: var(--kh-muted);

    font-size: 17px;
    line-height: 1.7;
}

.kh-about-heading p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   WHY KALAPANI
   ========================================================= */

.kh-about-why {
    padding: 75px 0 80px;
    background: var(--kh-white);
}

.kh-about-section-heading {
    max-width: 900px;
    margin-bottom: 35px;
}

.kh-about-section-heading h2 {
    margin: 0 0 18px;

    color: var(--kh-navy);

    font-size: clamp(42px,4.7vw,62px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.kh-about-section-heading h2 span {
    color: var(--kh-blue);
}

.kh-about-section-heading p {
    max-width: 850px;

    margin: 0;

    color: var(--kh-muted);

    font-size: 17px;
    line-height: 1.7;
}

.kh-about-feature-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
}

.kh-about-feature-card {
    min-height: 245px;

    padding: 25px;

    border: 1px solid var(--kh-border);
    border-radius: 16px;

    background: var(--kh-white);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.kh-about-feature-card:hover {
    transform: translateY(-4px);

    border-color: rgba(18,168,220,.4);

    box-shadow: 0 15px 35px rgba(6,26,51,.07);
}

.kh-about-feature-number,
.kh-about-card-number {
    display: block;
    margin-bottom: 25px;

    color: var(--kh-blue);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.kh-about-feature-icon {
    display: none;
}

.kh-about-feature-card h3 {
    margin: 0 0 10px;

    color: var(--kh-navy);

    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.kh-about-feature-card p {
    margin: 0;

    color: var(--kh-muted);

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   SERVICES
   ========================================================= */

.kh-about-services {
    padding: 75px 0;
    background: var(--kh-light);
}

.kh-about-services-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 65px;
    align-items: start;
}

.kh-about-services-intro {
    position: sticky;
    top: 100px;
}

.kh-about-services-intro h2 {
    margin: 0 0 18px;

    color: var(--kh-navy);

    font-size: clamp(42px,4.5vw,60px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.kh-about-services-intro h2 span {
    color: var(--kh-blue);
}

.kh-about-services-intro p {
    max-width: 430px;

    margin: 0 0 22px;

    color: var(--kh-muted);

    font-size: 16px;
    line-height: 1.65;
}

.kh-about-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--kh-blue);
    font-size: 14px;
    font-weight: 800;
}

.kh-about-text-link span {
    font-size: 18px;
}

.kh-about-service-list {
    border-top: 1px solid var(--kh-border);
}

.kh-about-service-item {
    display: grid;
    grid-template-columns: 42px minmax(0,1fr) 25px;
    gap: 18px;
    align-items: center;

    padding: 21px 0;

    border-bottom: 1px solid var(--kh-border);

    color: inherit;

    transition: padding .2s ease;
}

.kh-about-service-item:hover {
    padding-left: 5px;
}

.kh-about-service-number {
    color: var(--kh-blue);

    font-size: 12px;
    font-weight: 800;
}

.kh-about-service-item h3,
.kh-about-service-content h3 {
    margin: 0 0 6px;

    color: var(--kh-navy);

    font-size: 19px;
    font-weight: 800;
    line-height: 1.2;
}

.kh-about-service-item p,
.kh-about-service-content p {
    max-width: 600px;

    margin: 0;

    color: var(--kh-muted);

    font-size: 14px;
    line-height: 1.55;
}

.kh-about-service-arrow {
    color: var(--kh-blue);
    font-size: 20px;
}


/* =========================================================
   ANDAMAN EXPERTISE
   ========================================================= */

.kh-about-destinations {
    padding: 75px 0 80px;
    background: var(--kh-white);
}

.kh-about-destination-heading {
    max-width: 900px;
    margin-bottom: 35px;
}

.kh-about-destination-heading h2 {
    margin: 0;

    color: var(--kh-navy);

    font-size: clamp(42px,4.7vw,62px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.kh-about-destination-heading h2 span {
    color: var(--kh-blue);
}

.kh-about-destination-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
}

.kh-about-destination-card {
    min-height: 245px;

    display: flex;
    flex-direction: column;

    padding: 25px;

    border: 1px solid var(--kh-border);
    border-radius: 16px;

    background: var(--kh-white);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.kh-about-destination-card:hover {
    transform: translateY(-4px);

    border-color: rgba(18,168,220,.4);

    box-shadow: 0 15px 35px rgba(6,26,51,.07);
}

.kh-about-destination-card > span {
    color: var(--kh-blue);

    font-size: 12px;
    font-weight: 800;
}

.kh-about-destination-card h3 {
    margin: 32px 0 9px;

    color: var(--kh-navy);

    font-size: 27px;
    font-weight: 800;
    line-height: 1.15;
}

.kh-about-destination-card p {
    max-width: 520px;

    margin: 0 0 15px;

    color: var(--kh-muted);

    font-size: 15px;
    line-height: 1.6;
}

.kh-about-destination-card strong {
    margin-top: auto;

    color: var(--kh-blue);

    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   APPROACH
   ========================================================= */

.kh-about-approach {
    padding: 75px 0;
    background: var(--kh-light);
}

.kh-about-approach-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.kh-about-approach-grid h2 {
    margin: 0;

    color: var(--kh-navy);

    font-size: clamp(42px,4.5vw,60px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.kh-about-approach-grid h2 span {
    color: var(--kh-blue);
}

.kh-about-approach-content {
    padding-top: 4px;
}

.kh-about-approach-content p {
    margin: 0 0 15px;

    color: var(--kh-muted);

    font-size: 17px;
    line-height: 1.7;
}

.kh-about-approach-content .kh-about-approach-highlight {
    margin: 25px 0 5px;

    color: var(--kh-navy);

    font-size: 19px;
    font-weight: 700;
}

.kh-about-approach-content > strong {
    color: var(--kh-blue);
    font-size: 21px;
}


/* =========================================================
   B2B SECTION
   ========================================================= */

.kh-about-b2b {
    padding: 70px 0;
    background: var(--kh-white);
}

.kh-about-b2b-box {
    position: relative;
    overflow: hidden;

    padding: 60px 70px;

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 90% 100%,
            rgba(88,215,241,.22),
            transparent 32%
        ),
        linear-gradient(
            120deg,
            #052238,
            #0a536d
        );
}

.kh-about-b2b-box::after {
    content: "";

    position: absolute;
    right: -100px;
    bottom: -240px;

    width: 520px;
    height: 520px;

    border: 1px solid rgba(88,215,241,.14);
    border-radius: 50%;

    box-shadow:
        0 0 0 70px rgba(88,215,241,.03),
        0 0 0 140px rgba(88,215,241,.018);
}

.kh-about-b2b-content {
    position: relative;
    z-index: 5;

    max-width: 790px;
}

.kh-about-b2b-content h2 {
    margin: 0 0 20px;

    color: var(--kh-white);

    font-size: clamp(40px,4.7vw,62px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.kh-about-b2b-content h2 span {
    color: var(--kh-cyan);
}

.kh-about-b2b-content > p {
    max-width: 700px;

    margin: 0 0 24px;

    color: rgba(255,255,255,.82);

    font-size: 17px;
    line-height: 1.65;
}


/* B2B SERVICE TAGS */

.kh-about-b2b-services {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    margin: 0 0 28px;
}

.kh-about-b2b-services span {
    display: inline-flex;
    align-items: center;

    padding: 8px 13px;

    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50px;

    color: rgba(255,255,255,.9);

    background: rgba(255,255,255,.06);

    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}


/* =========================================================
   B2B CTA — EXPLICIT FINAL STYLE
   ========================================================= */

.kh-about-b2b-content .kh-about-btn-primary,
.kh-about-b2b-content .kh-about-btn,
.kh-about-b2b-content a.kh-about-btn-primary {
    position: relative;
    z-index: 10;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 11px;

    min-height: 52px !important;
    padding: 0 25px !important;

    color: #061a33 !important;
    background: #ffffff !important;

    border: 1px solid #ffffff !important;
    border-radius: 9px !important;

    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1 !important;

    opacity: 1 !important;
    visibility: visible !important;

    text-decoration: none !important;
}

.kh-about-b2b-content .kh-about-btn-primary:hover,
.kh-about-b2b-content .kh-about-btn:hover,
.kh-about-b2b-content a.kh-about-btn-primary:hover {
    color: #061a33 !important;
    background: #eafaff !important;
    border-color: #eafaff !important;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.kh-about-cta {
    padding: 0 0 70px;
    background: var(--kh-white);
}

.kh-about-cta-box {
    position: relative;
    overflow: hidden;

    padding: 65px 30px;

    border-radius: 24px;

    text-align: center;

    background:
        radial-gradient(
            circle at 85% 100%,
            rgba(88,215,241,.22),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #06243a,
            #0b526a
        );
}

.kh-about-cta-box::after {
    content: "";

    position: absolute;
    right: -130px;
    bottom: -280px;

    width: 590px;
    height: 590px;

    border: 1px solid rgba(88,215,241,.13);
    border-radius: 50%;
}

.kh-about-cta-box > * {
    position: relative;
    z-index: 3;
}

.kh-about-cta-box h2 {
    max-width: 850px;

    margin: 0 auto 18px;

    color: var(--kh-white);

    font-size: clamp(42px,5vw,66px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.kh-about-cta-box h2 span {
    color: var(--kh-cyan);
}

.kh-about-cta-box p {
    max-width: 680px;

    margin: 0 auto 27px;

    color: rgba(255,255,255,.82);

    font-size: 17px;
    line-height: 1.65;
}

.kh-about-cta-actions {
    justify-content: center;
}

.kh-about-cta-box .kh-about-cta-actions a {
    position: relative;
    z-index: 10;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 52px !important;
    padding: 0 26px !important;

    border-radius: 9px !important;

    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1 !important;

    opacity: 1 !important;
    visibility: visible !important;
}


/* START PLANNING */

.kh-about-cta-box .kh-about-cta-actions a:first-child {
    color: #061a33 !important;
    background: #ffffff !important;
    border: 1px solid #ffffff !important;
}

.kh-about-cta-box .kh-about-cta-actions a:first-child:hover {
    color: #061a33 !important;
    background: #eafaff !important;
    border-color: #eafaff !important;
}


/* EXPLORE PACKAGES */

.kh-about-cta-box .kh-about-cta-actions a:nth-child(2) {
    color: #ffffff !important;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,.45) !important;
}

.kh-about-cta-box .kh-about-cta-actions a:nth-child(2):hover {
    color: #061a33 !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .kh-about-feature-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .kh-about-services-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .kh-about-services-intro {
        position: static;
        max-width: 750px;
    }

    .kh-about-approach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .kh-about-container {
        width: calc(100% - 32px);
    }


    /* LABELS */

    .kh-about-page .kh-about-eyebrow,
    .kh-about-page .kh-about-section-label span,
    .kh-about-page .kh-about-side-label span,
    .kh-about-page .kh-about-founder-label span {
        margin-bottom: 13px;
        font-size: 13px;
        letter-spacing: .13em;
    }


    /* HERO */

    .kh-about-hero {
        min-height: auto;
    }

    .kh-about-hero-content {
        padding: 55px 0 60px;
    }

    .kh-about-hero h1 {
        font-size: 47px;
    }

    .kh-about-hero p {
        font-size: 16px;
        line-height: 1.6;
    }

    .kh-about-hero-actions,
    .kh-about-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .kh-about-btn {
        width: 100%;
    }


    /* STORY */

    .kh-about-story {
        padding: 50px 0 55px;
    }

    .kh-about-story-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .kh-about-story-content h2,
    .kh-about-founder-content h2,
    .kh-about-heading h2,
    .kh-about-section-heading h2,
    .kh-about-services-intro h2,
    .kh-about-destination-heading h2,
    .kh-about-approach-grid h2,
    .kh-about-b2b-content h2,
    .kh-about-cta-box h2 {
        font-size: 38px;
    }

    .kh-about-story-content p,
    .kh-about-heading p {
        font-size: 16px;
    }


    /* FOUNDER */

    .kh-about-founder {
        padding-bottom: 50px;
    }

    .kh-about-founder-box {
        grid-template-columns: 1fr;
        gap: 20px;

        padding: 32px 23px;

        border-radius: 18px;
    }


    /* WHO */

    .kh-about-who {
        padding: 50px 0 55px;
    }


    /* WHY */

    .kh-about-why {
        padding: 55px 0 60px;
    }

    .kh-about-section-heading {
        margin-bottom: 28px;
    }

    .kh-about-feature-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .kh-about-feature-card {
        min-height: auto;
        padding: 21px;
    }


    /* SERVICES */

    .kh-about-services {
        padding: 55px 0;
    }

    .kh-about-services-grid {
        gap: 30px;
    }

    .kh-about-service-item {
        grid-template-columns: 34px minmax(0,1fr) 22px;

        gap: 12px;
        padding: 19px 0;
    }

    .kh-about-service-item h3,
    .kh-about-service-content h3 {
        font-size: 17px;
    }

    .kh-about-service-item p,
    .kh-about-service-content p {
        font-size: 13px;
    }


    /* DESTINATIONS */

    .kh-about-destinations {
        padding: 55px 0 60px;
    }

    .kh-about-destination-heading {
        margin-bottom: 28px;
    }

    .kh-about-destination-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .kh-about-destination-card {
        min-height: 200px;
        padding: 21px;
    }

    .kh-about-destination-card h3 {
        margin-top: 22px;
    }


    /* APPROACH */

    .kh-about-approach {
        padding: 55px 0;
    }

    .kh-about-approach-grid {
        gap: 30px;
    }

    .kh-about-approach-content p {
        font-size: 16px;
    }


    /* B2B */

    .kh-about-b2b {
        padding: 55px 0;
    }

    .kh-about-b2b-box {
        padding: 42px 23px;
        border-radius: 20px;
    }

    .kh-about-b2b-content > p {
        font-size: 15px;
    }

    .kh-about-b2b-services {
        gap: 7px;
        margin-bottom: 25px;
    }

    .kh-about-b2b-services span {
        padding: 7px 11px;
        font-size: 11px;
    }

    .kh-about-b2b-content .kh-about-btn-primary,
    .kh-about-b2b-content .kh-about-btn {
        width: auto;
    }


    /* CTA */

    .kh-about-cta {
        padding-bottom: 50px;
    }

    .kh-about-cta-box {
        padding: 45px 20px;
        border-radius: 20px;
    }

    .kh-about-cta-box p {
        font-size: 15px;
    }

    .kh-about-cta-box .kh-about-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .kh-about-cta-box .kh-about-cta-actions a {
        width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .kh-about-container {
        width: calc(100% - 28px);
    }

    .kh-about-hero h1 {
        font-size: 41px;
    }

    .kh-about-story-content h2,
    .kh-about-founder-content h2,
    .kh-about-heading h2,
    .kh-about-section-heading h2,
    .kh-about-services-intro h2,
    .kh-about-destination-heading h2,
    .kh-about-approach-grid h2,
    .kh-about-b2b-content h2,
    .kh-about-cta-box h2 {
        font-size: 34px;
    }

    .kh-about-service-item {
        grid-template-columns: 1fr 22px;
    }

    .kh-about-service-number {
        display: none;
    }

    .kh-about-b2b-box {
        padding: 38px 20px;
    }

    .kh-about-b2b-services span {
        font-size: 10px;
    }
}