/* ======================================================================
           CSS VARIABLES (consolidated from all sections)
           ====================================================================== */
        :root {
            /* Shared */
            --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --color-white: #ffffff;
            --color-dark: #1a1a1a;
            --color-gray-text: #5a5a5a;
            --color-accent: #e82c4d;
            --transition-standard: all 0.3s ease;

            /* Hero */
            --color-overlay: rgba(0, 0, 0, 0.45);
            --color-overlay-dark: rgba(0, 0, 0, 0.7);

            /* Story */
            --color-gray-dark: #333333;

            /* Education */
            --color-accent-light: #f7d5da;

            /* Social Impact */
            --color-accent-alt: #f03e5c;

            /* Capabilities */
            --color-bg-light: #f9f9fa;

            /* Footer */
            --color-bg-dark: #2a2a2a;
            --color-text-main: #e0e0e0;
            --color-text-muted: #888888;
            --color-btn-dark: #3a3a3a;
            --border-color: rgba(255, 255, 255, 0.1);

            /* Book */
            --color-black: #1a1a1a;
            --color-red-gradient: linear-gradient(135deg, #f03e5c 0%, #e82c4d 100%);

            /* Gallery */
            --grid-gap: 15px;

            /* Focus Areas */
            --grid-gap-focus: 1.25rem;

            /* What We Believe */
            --color-border: #eaeaea;
        }

        /* ======================================================================
           RESETS & BASE TYPOGRAPHY (once)
           ====================================================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-primary);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.6;
            background-color: var(--color-white);
            color: var(--color-gray-text);
            font-size: 1.25em;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--color-dark);
            line-height: 1.2;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }

        p {
            margin-bottom: 1.5rem;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            transition: var(--transition-standard);
        }

        ul {
            list-style: none;
        }

        /* ======================================================================
           UTILITY CLASSES (once)
           ====================================================================== */
        .w-100 {
            width: 100%;
        }
        .h-100 {
            height: 100%;
        }
        .vh-100 {
            height: 100vh;
        }

        .d-flex {
            display: flex;
        }
        .flex-column {
            flex-direction: column;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }

        .align-items-center {
            align-items: center;
        }
        .align-items-end {
            align-items: flex-end;
        }
        .align-items-start {
            align-items: flex-start;
        }

        .justify-content-between {
            justify-content: space-between;
        }
        .justify-content-center {
            justify-content: center;
        }
        .justify-content-end {
            justify-content: flex-end;
        }

        .text-center {
            text-align: center;
        }
        .text-start {
            text-align: left;
        }
        .text-end {
            text-align: right;
        }
        .text-uppercase {
            text-transform: uppercase;
        }

        .mt-2 {
            margin-top: 0.5rem;
        }
        .mt-3 {
            margin-top: 1rem;
        }
        .mt-4 {
            margin-top: 1.5rem;
        }
        .mt-5 {
            margin-top: 3rem;
        }
        .mt-6 {
            margin-top: 5rem;
        }

        .mb-1 {
            margin-bottom: 0.25rem;
        }
        .mb-2 {
            margin-bottom: 0.5rem;
        }
        .mb-3 {
            margin-bottom: 1rem;
        }
        .mb-4 {
            margin-bottom: 1.5rem;
        }
        .mb-5 {
            margin-bottom: 3rem;
        }
        .mb-6 {
            margin-bottom: 4.5rem;
        }

        .py-4 {
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
        }
        .py-5 {
            padding-top: 3rem;
            padding-bottom: 3rem;
        }
        .py-6 {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        .py-7 {
            padding-top: 7rem;
            padding-bottom: 7rem;
        }
        .pt-5 {
            padding-top: 3rem;
        }
        .pb-5 {
            padding-bottom: 3rem;
        }

        .px-3 {
            padding-left: 1rem;
            padding-right: 1rem;
        }
        .px-4 {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        .gap-3 {
            gap: 1rem;
        }

        .pr-lg-5 {
            padding-right: 3rem !important;
        }

        /* ======================================================================
           GRID SYSTEM (once)
           ====================================================================== */
        .container {
            width: 100%;
            max-width: 1320px;
            margin-right: auto;
            margin-left: auto;
            padding-right: 15px;
            padding-left: 15px;
        }

        .container-fluid {
            width: 100%;
            padding-right: 2rem;
            padding-left: 2rem;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin-right: -15px;
            margin-left: -15px;
        }

        .col,
        [class^="col-"] {
            padding-right: 15px;
            padding-left: 15px;
            width: 100%;
        }

        .col-12 {
            flex: 0 0 auto;
            width: 100%;
        }
        .col-6 {
            flex: 0 0 auto;
            width: 50%;
        }

        @media (min-width: 768px) {
            .col-md-3 {
                flex: 0 0 auto;
                width: 25%;
            }
            .col-md-4 {
                flex: 0 0 auto;
                width: 33.333333%;
            }
            .col-md-5 {
                flex: 0 0 auto;
                width: 41.666667%;
            }
            .col-md-6 {
                flex: 0 0 auto;
                width: 50%;
            }
            .col-md-7 {
                flex: 0 0 auto;
                width: 58.333333%;
            }
            .col-md-8 {
                flex: 0 0 auto;
                width: 66.666667%;
            }
            .col-md-9 {
                flex: 0 0 auto;
                width: 75%;
            }
            .col-md-10 {
                flex: 0 0 auto;
                width: 83.333333%;
            }
            .offset-md-1 {
                margin-left: 8.333333%;
            }
            .text-md-end {
                text-align: right !important;
            }
            .mb-md-0 {
                margin-bottom: 0 !important;
            }
        }

        @media (min-width: 992px) {
            .col-lg-2 {
                flex: 0 0 auto;
                width: 16.666667%;
            }
            .col-lg-3 {
                flex: 0 0 auto;
                width: 25%;
            }
            .col-lg-4 {
                flex: 0 0 auto;
                width: 33.333333%;
            }
            .col-lg-5 {
                flex: 0 0 auto;
                width: 41.666667%;
            }
            .col-lg-6 {
                flex: 0 0 auto;
                width: 50%;
            }
            .col-lg-7 {
                flex: 0 0 auto;
                width: 58.333333%;
            }
            .col-lg-8 {
                flex: 0 0 auto;
                width: 66.666667%;
            }
            .col-lg-9 {
                flex: 0 0 auto;
                width: 75%;
            }
            .col-lg-10 {
                flex: 0 0 auto;
                width: 83.333333%;
            }
            .offset-lg-1 {
                margin-left: 8.333333%;
            }
            .offset-lg-2 {
                margin-left: 16.666667%;
            }
            .pr-lg-5 {
                padding-right: 3rem !important;
            }
        }

        @media (min-width: 1200px) {
            .col-xl-7 {
                flex: 0 0 auto;
                width: 58.333333%;
            }
        }

        /* ======================================================================
           SHARED COMPONENTS (kicker, buttons, headings)
           ====================================================================== */
        .kicker {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1.25rem;
            color: var(--color-accent);
        }

        .main-heading {
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--color-dark);
            letter-spacing: -1.5px;
            margin-bottom: 1.5rem;
        }

        .lead-text {
            
            line-height: 1.6;
            color: var(--color-gray-text);
            margin-bottom: 2.5rem;
        }

        .btn-primary {
            background-color: var(--color-accent);
            color: var(--color-white);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-standard);
            display: inline-block;
            text-decoration: none;
        }

        .btn-primary:hover {
            background-color: #d12046;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(232, 44, 77, 0.2);
        }

        .btn-white {
            background: var(--color-white);
            color: var(--color-accent);
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            width: fit-content;
            transition: var(--transition-standard);
            border: none;
            cursor: pointer;
        }

        .btn-white:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-outline-white {
            border: 1px solid var(--color-white);
            background: transparent;
            color: var(--color-white);
            padding: 8px 26px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition-standard);
        }

        .btn-outline-white:hover {
            background: var(--color-white);
            color: #000;
        }

        .display-heading {
            font-size: 3.2rem;
            font-weight: 700;
            color: var(--color-dark);
            letter-spacing: -1.5px;
            margin-bottom: 1.25rem;
        }

         

        /* ======================================================================
           SECTION: OUR STORY (002)
           ====================================================================== */
        .our-story-section .kicker {
            color: #e16b74;
        }

        .our-story-section .main-heading {
            font-size: 2.75rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .our-story-section .lead-text {
            
            font-weight: 500;
            color: var(--color-gray-dark);
            max-width: 95%;
        }

        .story-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 35px;
        }

        .step-number {
            display: block;
            color: #e16b74;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            opacity: 0.9;
        }

        .step-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            letter-spacing: -0.5px;
            color: var(--color-dark);
        }

        .step-text {
            
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }

        @media (max-width: 992px) {
            .our-story-section .main-heading {
                font-size: 2.25rem;
            }
            .story-image {
                margin-top: 2rem;
                height: 350px;
            }
            .pr-lg-5 {
                padding-right: 15px !important;
            }
        }

        @media (max-width: 768px) {
            .step-block {
                margin-bottom: 2.5rem;
            }
            .mt-6 {
                margin-top: 3rem;
            }
            .story-image {
                height: 300px;
                border-top-left-radius: 40px;
            }
        }

        /* ======================================================================
           SECTION: FOCUS AREAS (003)
           ====================================================================== */
        .focus-areas-section {
            padding: 4rem 0;
        }

        .image-card {
            position: relative;
            width: 100%;
            overflow: hidden;
            cursor: pointer;
            background-color: var(--color-dark);
            display: block;
            text-decoration: none;
            border-radius: 35px; 
        }

        .card-tall {
            height: 620px;
        }

        .card-short {
            height: calc(310px - 10px);
        }

        .gap-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .card-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .image-card:hover .card-bg {
            transform: scale(1.05);
        }

        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2.5rem;
            z-index: 2;
            color: var(--color-white);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .card-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
            letter-spacing: -0.5px;
            line-height: 1.1;
            color: var(--color-white);
        }

        .card-link {
            
            font-weight: 400;
            opacity: 0.8;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: opacity 0.3s ease;
            color: var(--color-white);
        }

        .card-link svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
            transition: transform 0.3s ease;
        }

        .image-card:hover .card-link {
            opacity: 1;
        }

        .image-card:hover .card-link svg {
            transform: translateX(4px);
        }

        @media (max-width: 992px) {
            .card-tall {
                height: 500px;
            }
            .card-short {
                height: calc(250px - 10px);
            }
            .card-content {
                padding: 2rem;
            }
            .card-title {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 768px) {
            .card-tall,
            .card-short {
                height: 350px;
            }
            .gap-column {
                gap: 20px;
                margin-top: 20px;
            }
            .row {
                margin-right: -15px;
                margin-left: -15px;
            }
            .col {
                padding-right: 15px;
                padding-left: 15px;
            }
        }

        /* ======================================================================
           SECTION: EDUCATION (004)
           ====================================================================== */
        .education-section .display-heading {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--color-dark);
            letter-spacing: -1.5px;
            line-height: 1.15;
            max-width: 900px;
            margin: 0 auto;
            padding-bottom: 30px;
        }

        .education-section .kicker {
            color: var(--color-accent);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
        }

        .section-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .divider-line {
            flex-grow: 1;
            height: 1px;
            background-color: var(--color-accent-light);
            max-width: 40%;
        }

        .divider-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background-color: var(--color-accent);
            color: var(--color-white);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 20px;
            flex-shrink: 0;
        }

        .divider-icon svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }

        .side-heading {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -1px;
            margin-bottom: 1.5rem;
            color: var(--color-dark);
        }

        .side-text {
            
            line-height: 1.7;
        }

        .timeline {
            position: relative;
            padding-top: 5px;
        }

        .timeline-item {
            display: flex;
            gap: 1.5rem;
            position: relative;
            padding-bottom: 3rem;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-item:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 48px;
            left: 24px;
            width: 1px;
            height: calc(100% - 40px);
            background-color: var(--color-accent-light);
            z-index: 0;
        }

        .timeline-icon-wrapper {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid var(--color-accent-light);
            background-color: var(--color-white);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
            flex-shrink: 0;
        }

        .timeline-icon-wrapper svg {
            width: 18px;
            height: 18px;
            color: var(--color-accent);
        }

        .timeline-content {
            padding-top: 8px;
        }

        .timeline-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            letter-spacing: -0.5px;
            color: var(--color-dark);
        }

        .timeline-text {
            
            line-height: 1.6;
            margin-bottom: 0;
            color: var(--color-gray-text);
        }

        @media (max-width: 992px) {
            .education-section .display-heading {
                font-size: 2.4rem;
            }
            .side-heading {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .education-section .display-heading {
                font-size: 2rem;
            }
            .side-heading {
                font-size: 1.8rem;
            }
            .divider-line {
                max-width: 35%;
            }
            .timeline-item {
                padding-bottom: 2.5rem;
            }
        }

        /* ======================================================================
           SECTION: GALLERY (005)
           ====================================================================== */
        .gallery-section {
            padding: 4rem 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: var(--grid-gap);
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 35px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .item-1 {
            grid-column: span 5;
            height: 380px;
        }
        .item-2 {
            grid-column: span 3;
            height: 380px;
        }
        .item-3 {
            grid-column: span 4;
            height: 380px;
        }
        .item-4 {
            grid-column: span 3;
            height: 380px;
        }
        .item-5 {
            grid-column: span 6;
            height: 380px;
        }
        .item-6 {
            grid-column: span 3;
            height: 380px;
        }

        @media (max-width: 1200px) {
            .item-1,
            .item-2,
            .item-3,
            .item-4,
            .item-5,
            .item-6 {
                height: 320px;
            }
        }

        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .item-1,
            .item-2,
            .item-3,
            .item-4,
            .item-5,
            .item-6 {
                grid-column: span 1;
                height: 300px;
            }
            .item-5 {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .item-1,
            .item-2,
            .item-3,
            .item-4,
            .item-5,
            .item-6 {
                grid-column: span 1;
                height: 250px;
            }
        }

        /* ======================================================================
           SECTION: ABOUT (006)
           ====================================================================== */
        .about-intro-section .kicker {
            display: block;
            color: var(--color-accent);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 1.25rem;
        }

        .about-intro-section .main-heading {
            font-size: 3.2rem;
            font-weight: 700;
            color: var(--color-dark);
            letter-spacing: -1.5px;
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }

        .about-intro-section .lead-text {
            font-size: 1.25rem;
            line-height: 1.6;
            color: var(--color-gray-text);
            max-width: 700px;
            margin: 0 auto;
        }

        @media (max-width: 992px) {
            .about-intro-section .main-heading {
                font-size: 3.5rem;
            }
            .about-intro-section .lead-text {
                font-size: 1.15rem;
            }
        }

        @media (max-width: 768px) {
            .about-intro-section .main-heading {
                font-size: 2.2rem;
                letter-spacing: -1px;
            }
            .about-intro-section .lead-text {
                
            }
        }

        /* ======================================================================
           SECTION: QUOTE + CTA (007)
           ====================================================================== */
        .quote-section {
            background-color: var(--color-white);
        }

        .blockquote-text {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--color-dark);
            letter-spacing: -1.2px;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .quote-author {
            font-size: 1rem;
            color: var(--color-gray-text);
        }

        .cta-banner {
            background-color: var(--color-accent);
            color: var(--color-white);
            padding: 4rem 0;
        }

        .cta-kicker {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            margin-bottom: 0.75rem;
            display: block;
            opacity: 0.9;
        }

        .cta-heading {
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: -1px;
            margin: 0;
            color: var(--color-white);
        }

        .cta-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .btn-icon-white {
            width: 52px;
            height: 52px;
            background-color: var(--color-white);
            color: var(--color-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-standard);
            border: none;
        }

        .btn-icon-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-icon-white svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        @media (max-width: 992px) {
            .blockquote-text {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 768px) {
            .blockquote-text {
                font-size: 2rem;
            }
            .cta-banner {
                padding: 3rem 0;
            }
            .cta-banner .row {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }
            .cta-actions {
                justify-content: center;
            }
            .cta-heading {
                font-size: 1.8rem;
            }
        }

        /* ======================================================================
           SECTION: WHAT WE BELIEVE (008)
           ====================================================================== */
        .what-we-believe-section .kicker {
            color: var(--color-accent);
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 2rem;
        }

        .what-we-believe-section .display-heading {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--color-dark);
            letter-spacing: -1.5px;
            line-height: 1.15;
            max-width: 850px;
            margin-bottom: 4rem;
        }

        .logo-banner-wrapper {
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
            padding: 2.5rem 0;
        }

        .banner-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .banner-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--color-dark);
            letter-spacing: -0.5px;
        }

        .banner-logos {
            display: flex;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .brand-logo svg {
            height: 32px;
            width: auto;
            display: block;
        }

        .logo-nbc svg {
            height: 36px;
        }
        .logo-cs svg {
            height: 20px;
        }
        .logo-ml svg {
            height: 28px;
        }

        @media (max-width: 992px) {
            .what-we-believe-section .display-heading {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 768px) {
            .what-we-believe-section .display-heading {
                font-size: 2.2rem;
                margin-bottom: 2.5rem;
            }
            .banner-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .banner-logos {
                gap: 2rem;
            }
        }

        @media (max-width: 576px) {
            .what-we-believe-section .display-heading {
                font-size: 1.8rem;
                letter-spacing: -1px;
            }
            .banner-text {
                font-size: 1.1rem;
            }
        }

        /* ======================================================================
           SECTION: CAPABILITIES (009)
           ====================================================================== */
        .capabilities-section {
            background-color: var(--color-bg-light);
        }

        .capabilities-section .lead-text {
            max-width: 90%;
        }

        .capabilities-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .capability-item {
            display: flex;
            align-items: flex-start;
            padding: 2rem 2.5rem;
            margin-left: -2.5rem;
            margin-right: -2.5rem;
            border-radius: 4px;
            transition: var(--transition-standard);
        }

        .capability-item:not(.active-card):hover {
            background-color: rgba(0, 0, 0, 0.02);
        }

        .active-card {
            background-color: var(--color-white);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
        }

        .cap-icon {
            width: 24px;
            height: 24px;
            margin-right: 1.5rem;
            margin-top: 4px;
            flex-shrink: 0;
            color: #4a4a4a;
        }

        .active-card .cap-icon {
            color: var(--color-accent);
        }

        .cap-icon svg {
            width: 100%;
            height: 100%;
            stroke: currentColor;
            stroke-width: 1.5;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .cap-content {
            flex-grow: 1;
        }

        .cap-title {
            font-size: 2rem;
            font-weight: 600;
            color: var(--color-dark);
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
            display: inline-flex;
            align-items: center;
        }

        .cap-desc {
             line-height: 1.5;
            color: var(--color-gray-text);
            margin-bottom: 0;
        }

        .active-card .cap-title {
            color: var(--color-accent);
        }

        .title-underline-wrapper {
            position: relative;
            display: inline-flex;
            align-items: center;
        }

        .title-underline-wrapper::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--color-accent);
        }

        .cap-arrow {
            margin-left: 10px;
            width: 16px;
            height: 16px;
            color: var(--color-accent);
        }

        @media (max-width: 992px) {
            .capabilities-section .display-heading {
                font-size: 3.5rem;
            }
            .capabilities-section .lead-text {
                max-width: 100%;
            }
            .capability-item {
                padding: 1.5rem;
                margin-left: 0;
                margin-right: 0;
            }
        }

        @media (max-width: 768px) {
            .capabilities-section .display-heading {
                font-size: 2.4rem;
            }
            .capabilities-list {
                gap: 1rem;
            }
            .capability-item {
                padding: 1.5rem 1rem;
            }
            .cap-icon {
                margin-right: 1rem;
            }
        }

        /* ======================================================================
           SECTION: SOCIAL IMPACT (010)
           ====================================================================== */
        .social-impact-section {
            position: relative;
            background-image: url('https://images.unsplash.com/photo-1592424090289-53e778ceca20?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 700px;
            display: flex;
            align-items: center;
        }

        .impact-card {
            background-color: var(--color-white);
            border-radius: 36px;
            padding: 4.5rem 4rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .impact-card::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(240, 62, 92, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .impact-card .brand-logo {
            display: flex;
            align-items: center;
            margin-bottom: 2.5rem;
        }

        .impact-card .brand-logo svg {
            height: 32px;
            width: auto;
        }

        .impact-card .kicker {
            display: inline-block;
            color: var(--color-accent-alt);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            margin-bottom: 1.2rem;
        }

        .impact-card .main-heading {
            font-size: 2.75rem;
            font-weight: 800;
            color: var(--color-dark);
            letter-spacing: -1.5px;
            margin-bottom: 1.5rem;
        }

        .impact-card .lead-text {
            
            line-height: 1.6;
            color: var(--color-gray-text);
            margin-bottom: 2.5rem;
        }

        .impact-card .btn-primary {
            background-color: var(--color-accent-alt);
        }

        .impact-card .btn-primary:hover {
            background-color: #d82a46;
            box-shadow: 0 6px 15px rgba(240, 62, 92, 0.25);
        }

        @media (max-width: 992px) {
            .impact-card {
                padding: 3.5rem 3rem;
            }
            .impact-card .main-heading {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 768px) {
            .social-impact-section {
                padding: 4rem 0;
                min-height: auto;
            }
            .impact-card {
                padding: 2.5rem 2rem;
                border-radius: 24px;
            }
            .impact-card .main-heading {
                font-size: 2rem;
                letter-spacing: -1px;
            }
            .impact-card .brand-logo {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 576px) {
            .impact-card .main-heading {
                font-size: 1.8rem;
            }
            .impact-card .lead-text {
                
            }
        }

        /* ======================================================================
           SECTION: BOOK (011)
           ====================================================================== */
        .book-section {
            display: flex;
            flex-wrap: wrap;
            border-radius: 8px;
            overflow: hidden;
            margin: 4rem auto;
            max-width: 1200px;
        }

        .book-section .col-left {
            flex: 0 0 50%;
            background: var(--color-red-gradient);
            padding: 4rem;
            color: var(--color-white);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .book-section .col-right {
            flex: 0 0 50%;
            background-color: var(--color-black);
            padding: 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .book-section .kicker {
            color: var(--color-white);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .book-section .title {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
            color: var(--color-white);
        }

        .book-section .description {
            
            line-height: 1.6;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            color: var(--color-white);
        }

        .book-section .btn-white {
            background: var(--color-white);
            color: #e82c4d;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            width: fit-content;
            transition: var(--transition-standard);
        }

        .book-section .btn-white:hover {
            transform: scale(1.05);
        }

        .tag-release {
            position: absolute;
            top: 2rem;
            left: 2rem;
            background: #e82c4d;
            color: white;
            padding: 6px 14px;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 992px) {
            .book-section .col-left,
            .book-section .col-right {
                flex: 0 0 100%;
                padding: 3rem;
            }
            .book-section .title {
                font-size: 2rem;
            }
        }

        /* ======================================================================
           SECTION: FOOTER (012)
           ====================================================================== */
        .site-footer {
            padding: 4rem 0;
            background-color: var(--color-bg-dark);
        }

        .footer-divider {
            border: 0;
            border-top: 1px solid var(--border-color);
            margin: 2rem 0;
        }

        .brand-logo-wrapper {
            display: flex;
            align-items: center;
            font-size: 1.6rem;
            font-weight: 600; 
            letter-spacing: -0.5px;
        }

        .brand-logo-wrapper svg {
            height: 28px;
            margin-right: 8px;
        }

        .footer-tagline {
            font-size: 1.15rem;
            font-weight: 500;
            color: var(--color-white);
        }

        .footer-heading {
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-text-muted);
            letter-spacing: 1px;
            margin-bottom: 1.25rem;
            text-transform: uppercase;
        }

        .footer-links li {
            margin-bottom: 0.85rem;
        }

        .footer-links a {
            
            color: var(--color-text-main);
        }

        .footer-links a:hover {
            color: var(--color-white);
            opacity: 0.8;
        }

        .nav-horizon-text {
            
            margin-bottom: 1.5rem;
            color: var(--color-white);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-bottom: 2rem;
        }

        .social-icons a {
            color: var(--color-text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-icons a:hover {
            color: var(--color-white);
        }

        .social-icons svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .contact-info-list {
            margin-bottom: 2rem;
            border-top: 1px solid var(--border-color);
            padding-top: 1.5rem;
            max-width: 280px;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
            color: var(--color-text-muted);
            
        }

        .contact-info-item svg {
            width: 16px;
            height: 16px;
            margin-right: 12px;
            fill: currentColor;
        }

        .contact-info-item strong {
            color: var(--color-white);
            font-weight: 600;
            margin-left: 5px;
        }

        .btn-secondary {
            background-color: var(--color-btn-dark);
            color: var(--color-text-main);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition-standard);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary:hover {
            background-color: #444;
            color: var(--color-white);
        }

        .btn-secondary svg {
            width: 14px;
            height: 14px;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .newsroom-text {
            
            color: var(--color-white);
            margin-bottom: 0;
        }

        .site-footer .btn-primary {
            background-color: #f02d55;
        }

        .site-footer .btn-primary:hover {
            background-color: #d12046;
        }

        @media (max-width: 768px) {
            .footer-links {
                margin-bottom: 2rem;
            }
            .btn-secondary {
                width: 100%;
                justify-content: center;
                margin-top: 1rem;
            }
        }
         
    </style>
</head>
<body>
 
<style>
        a,
        button {
            cursor: pointer;
            text-decoration: none;
            border: none;
            outline: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* ================================================================
               UTILITY
               ================================================================ */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .container-fluid {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -12px;
        }

        .col {
            flex: 1 0 0%;
            padding: 0 12px;
        }

        .col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 0 12px;
        }

        .text-uppercase {
            text-transform: uppercase;
        }

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

        /* ================================================================
               HEADER / NAVIGATION
               ================================================================ */
        .site-header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 18px 0;
            background: transparent;
            transition: var(--transition);
        }

        .site-header.scrolled {
            background: var(--dark);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
            padding: 12px 0;
        }

        .site-header .row {
            align-items: center;
            justify-content: space-between;
        }

        /* ---- Logo ---- */
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.5px; 
            flex-shrink: 0;
        }

        .brand-logo img {
            width: 200px; 
            fill: var(--color-white);
            transition: var(--transition);
        }

        .brand-logo:hover svg {
            fill: var(--primary-red);
        }

        /* ---- Navigation ---- */
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .primary-nav .nav-link {
            color: var(--color-white);
            font-size: 0.9rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
        }

        .primary-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: var(--transition);
        }

        .primary-nav .nav-link:hover::after,
        .primary-nav .nav-link.active::after {
            width: 100%;
        }

        .primary-nav .nav-link svg {
            width: 14px;
            height: 14px;
            fill: var(--color-white);
            opacity: 0.7;
            transition: var(--transition);
        }

        .primary-nav .nav-link:hover svg {
            opacity: 1;
            fill: var(--primary-red);
        }

        /* ---- Header CTA ---- */
        .header-cta {
            flex-shrink: 0;
        }

        .btn-outline-white {
            padding: 10px 28px;
            border: 1.5px solid rgba(255, 255, 255, 0.4);
            background: transparent;
            color: var(--color-white);
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 50px;
            transition: var(--transition);
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .btn-outline-white:hover {
            background: var(--color-white);
            color: var(--dark);
            border-color: var(--color-white);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
        }

        /* ---- Hamburger ---- */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            padding: 8px;
            cursor: pointer;
            z-index: 1001;
        }

        .menu-toggle span {
            display: block;
            width: 28px;
            height: 2.5px;
            background: var(--color-white);
            border-radius: 2px;
            transition: var(--transition);
            transform-origin: center;
        }

        .menu-toggle.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .menu-toggle.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ================================================================
               HERO SECTION
               ================================================================ */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background:
                linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.3)),
                url('../img/bg_01.webp') center center / cover no-repeat;
            padding: 120px 0 80px;
            overflow: hidden;
        }

        /* Subtle animated accent */
        .hero-section::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(224, 58, 58, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: pulseGlow 8s ease-in-out infinite alternate;
        }

        @keyframes pulseGlow {
            0% {
                transform: scale(1) translate(0, 0);
                opacity: 0.6;
            }
            100% {
                transform: scale(1.3) translate(-40px, 40px);
                opacity: 1;
            }
        }

        .hero-section .container {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .hero-section .row {
            align-items: center;
            gap: 40px 0;
        }

        /* ---- Hero Text ---- */
        .hero-text .kicker {
            display: inline-block;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            color: var(--primary-red);
            background: rgba(224, 58, 58, 0.15);
            padding: 6px 18px;
            border-radius: 50px;
            margin-bottom: 1.2rem;
            border: 1px solid rgba(224, 58, 58, 0.2);
            text-transform: uppercase;
        }

        .display-title {
            font-size: 4.6rem;
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -2px;
            color: var(--color-white);
            margin-bottom: 1.2rem;
        }

        .display-title .highlight {
            color: var(--primary-red);
            position: relative;
        }

        .display-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(224, 58, 58, 0.25);
            border-radius: 4px;
            z-index: -1;
        }

        .hero-text p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.75);
            max-width: 480px;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 40px;
            margin-top: 8px;
        }

        .hero-badges .badge-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .hero-badges .badge-item .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary-red);
            flex-shrink: 0;
        }

        /* ---- Contact Form ---- */
        .contact-form-wrapper {
            display: flex;
            justify-content: flex-end;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius);
            padding: 38px 34px;
            width: 100%;
            max-width: 440px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .contact-form:hover {
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
        }

        .contact-form .form-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-white);
            margin-bottom: 4px;
        }

        .contact-form .form-sub {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 24px;
        }

        .contact-form .form-group {
            margin-bottom: 16px;
        }

        .contact-form .form-group label {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 4px;
        }

        .contact-form .form-group input,
        .contact-form .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            color: var(--color-white);
            
            font-family: var(--font);
            transition: var(--transition);
            outline: none;
            resize: vertical;
        }

        .contact-form .form-group input::placeholder,
        .contact-form .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .contact-form .form-group input:focus,
        .contact-form .form-group textarea:focus {
            border-color: var(--primary-red);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 4px rgba(224, 58, 58, 0.1);
        }

        .contact-form .form-group textarea {
            min-height: 100px;
            max-height: 200px;
        }

        .contact-form .btn-submit {
            width: 100%;
            padding: 14px 28px;
            background: var(--primary-red);
            color: var(--color-white);
            
            font-weight: 700;
            border-radius: 8px;
            transition: var(--transition);
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 4px;
        }

        .contact-form .btn-submit:hover {
            background: var(--primary-red-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(224, 58, 58, 0.3);
        }

        .contact-form .btn-submit svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
            transition: var(--transition);
        }

        .contact-form .btn-submit:hover svg {
            transform: translateX(4px);
        }

        .form-footer-text {
            text-align: center;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.3);
            margin-top: 16px;
        }

        .form-footer-text a {
            color: var(--primary-red);
            transition: var(--transition);
        }

        .form-footer-text a:hover {
            color: var(--color-white);
        }

        /* ================================================================
               SCROLL INDICATOR
               ================================================================ */
        .scroll-indicator {
            position: absolute;
            bottom: 32px;
            right: 40px;
            width: 48px;
            height: 48px;
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2;
            transition: var(--transition);
            color: var(--color-white);
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(4px);
        }

        .scroll-indicator:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--color-white);
            transform: translateY(-4px);
        }

        .scroll-indicator svg {
            width: 20px;
            height: 20px;
            fill: var(--color-white);
            animation: bounceDown 2s ease-in-out infinite;
        }

        @keyframes bounceDown {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(6px);
            }
        }

        /* ================================================================
               RESPONSIVE – TABLETS & BELOW
               ================================================================ */
        @media (max-width: 1024px) {
            .display-title {
                font-size: 3.8rem;
            }

            .contact-form {
                max-width: 100%;
            }

            .contact-form-wrapper {
                justify-content: center;
            }
        }

        @media (max-width: 992px) {
            /* ---- Mobile Nav ---- */
            .primary-nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: var(--dark);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                padding: 40px 24px;
                transform: translateX(100%);
                transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                z-index: 999;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
            }

            .primary-nav.open {
                transform: translateX(0);
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .primary-nav .nav-link {
                font-size: 1.3rem;
                padding: 12px 0;
                border-bottom: none;
            }

            .primary-nav .nav-link::after {
                display: none;
            }

            .primary-nav .nav-link svg {
                width: 18px;
                height: 18px;
            }

            .menu-toggle {
                display: flex;
            }

            .header-cta {
                display: none;
            }

            /* ---- Hero ---- */
            .hero-section {
                min-height: auto;
                padding: 140px 0 80px;
            }

            .hero-section .row {
                flex-direction: column;
                gap: 48px;
            }

            .col-md-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .hero-text .mt-200 {
                margin-top: 0;
            }

            .display-title {
                font-size: 3.2rem;
            }

            .hero-text p {
                max-width: 100%;
                font-size: 1rem;
            }

            .contact-form-wrapper {
                justify-content: center;
            }

            .contact-form {
                max-width: 100%;
                padding: 30px 24px;
            }

            .scroll-indicator {
                bottom: 16px;
                right: 16px;
                width: 40px;
                height: 40px;
            }

            .scroll-indicator svg {
                width: 16px;
                height: 16px;
            }
        }

        @media (max-width: 576px) {
            .site-header {
                padding: 12px 0;
            }

            .brand-logo {
                font-size: 1.2rem;
            }

            .brand-logo svg {
                width: 22px;
                height: 22px;
            }

            .display-title {
                font-size: 2.4rem;
                letter-spacing: -1px;
            }

            .hero-section {
                padding: 120px 0 60px;
            }

            .contact-form {
                padding: 24px 18px;
                border-radius: 10px;
            }

            .contact-form .form-title {
                font-size: 1.1rem;
            }

            .contact-form .form-group input,
            .contact-form .form-group textarea {
                padding: 12px 14px;
                font-size: 0.9rem;
            }

            .contact-form .btn-submit {
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            .hero-badges {
                gap: 12px 24px;
            }

            .hero-badges .badge-item {
                font-size: 1rem;
            }

            .hero-text .kicker {
                font-size: 0.65rem;
                padding: 4px 14px;
            }

            .scroll-indicator {
                width: 34px;
                height: 34px;
                bottom: 12px;
                right: 12px;
            }

            .scroll-indicator svg {
                width: 14px;
                height: 14px;
            }
        }

        @media (max-width: 400px) {
            .display-title {
                font-size: 1.9rem;
            }

            .contact-form {
                padding: 18px 14px;
            }
        }