:root {
            --primary: #0D6EFD;
            --secondary: #E7F3FF;
            --text-body: #333333;
            --text-heading: #1a1a1a;
            --accent-white: #FFFFFF;
            --accent-light: #F8F9FA;
            --border: #E0E0E0;
            --font-head: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
            --transition: 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-body);
            line-height: 1.6;
            background: var(--accent-white);
            font-size: 16px;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-head);
            color: var(--text-heading);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .h1,
        h1 {
            font-size: 44px;
            font-weight: 700;
        }

        .h2,
        h2 {
            font-size: 36px;
            font-weight: 700;
        }

        .h3,
        h3 {
            font-size: 24px;
            font-weight: 600;
        }

        .subheadline {
            font-size: 24px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .text-small {
            font-size: 14px;
        }

        @media (max-width: 768px) {

            .h1,
            h1 {
                font-size: 32px;
            }

            .h2,
            h2 {
                font-size: 28px;
            }

            .h3,
            h3 {
                font-size: 22px;
            }

            .subheadline {
                font-size: 20px;
            }
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: 80px 0;
        }

        @media (max-width: 768px) {
            .section {
                padding: 50px 0;
            }
        }

        .bg-white {
            background-color: var(--accent-white);
        }

        .bg-light {
            background-color: var(--accent-light);
        }

        .bg-primary-light {
            background-color: var(--secondary);
            background-image: linear-gradient(135deg, var(--secondary) 0%, rgba(255, 255, 255, 0.5) 100%);
        }

        .text-center {
            text-align: center;
        }

        .text-primary {
            color: var(--primary);
        }

        .grid {
            display: grid;
            gap: 24px;
        }

        .grid-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .flex {
            display: flex;
        }

        .items-center {
            align-items: center;
        }

        .justify-center {
            justify-content: center;
        }

        .gap-4 {
            gap: 1rem;
        }

        .gap-8 {
            gap: 2rem;
        }

        @media (max-width: 992px) {
            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {

            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }

            .partnership-card {
                padding: 24px !important;
            }

            .hub-container {
                min-height: auto !important;
                padding: 40px 20px !important;
                flex-direction: column !important;
                align-items: stretch !important;
            }

            .hub-container>div[style*="expandRings"] {
                display: none !important;
            }

            .hub-hq {
                margin-bottom: 24px !important;
            }

            .hub-stat {
                position: static !important;
                animation: none !important;
                width: 100% !important;
                justify-content: flex-start !important;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
                margin-bottom: 12px !important;
            }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            min-height: 48px;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: #0b5ed7;
            box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
        }

        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hover-lift:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
        }

        .about-hero {
            position: relative;
            padding: 10rem 0 100px;
            overflow: hidden;
            background: radial-gradient(circle at 100% 0%, rgba(13, 110, 253, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 0% 100%, rgba(0, 198, 255, 0.08) 0%, transparent 50%),
                var(--accent-white);
        }

        .about-hero-content {
            position: relative;
            z-index: 2;
        }

        .about-title {
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--text-heading);
            letter-spacing: -2px;
        }

        .about-text-gradient {
            background: linear-gradient(135deg, var(--primary) 0%, #00c6ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-description {
            font-size: 22px;
            color: var(--text-body);
            margin-bottom: 0;
            line-height: 1.6;
            max-width: 580px;
        }

        /* Unique Visual: The Value Network */
        .value-network {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1200px;
        }

        .vn-core {
            position: absolute;
            width: 160px;
            height: 160px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(13, 110, 253, 0.3);
            border-radius: 50%;
            box-shadow: 0 0 60px rgba(13, 110, 253, 0.3), inset 0 0 20px white;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            animation: corePulse 4s infinite alternate ease-in-out;
        }

        .vn-core-logo {
            font-size: 42px;
            font-weight: 800;
            color: var(--primary);
            font-family: var(--font-head);
            letter-spacing: -2px;
            text-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
            justify-content: center;
            display: inline-flex;
        }
        .vn-core-logo img{
            width: 70%;
        }

        .vn-ring {
            position: absolute;
            border-radius: 50%;
            border: 1.5px dashed rgba(13, 110, 253, 0.3);
            transform-style: preserve-3d;
        }

        .vn-ring-1 {
            width: 320px;
            height: 320px;
            animation: spinRing1 20s linear infinite;
        }

        .vn-ring-2 {
            width: 480px;
            height: 480px;
            border: 1px solid rgba(0, 198, 255, 0.2);
            animation: spinRing2 30s linear infinite reverse;
        }

        @keyframes spinRing1 {
            0% {
                transform: rotateX(60deg) rotateY(20deg) rotateZ(0deg);
            }

            100% {
                transform: rotateX(60deg) rotateY(20deg) rotateZ(360deg);
            }
        }

        @keyframes spinRing2 {
            0% {
                transform: rotateX(70deg) rotateY(-20deg) rotateZ(0deg);
            }

            100% {
                transform: rotateX(70deg) rotateY(-20deg) rotateZ(360deg);
            }
        }

        .vn-node {
            position: absolute;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(13, 110, 253, 0.2);
            padding: 16px 24px;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 20;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            white-space: nowrap;
        }

        .vn-node:hover {
            transform: scale(1.05) translateY(-5px) !important;
            box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
            z-index: 30;
        }

        .vn-node-icon {
            width: 36px;
            height: 36px;
            background: var(--accent-light);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 18px;
        }

        .vn-node-text {
            font-weight: 700;
            font-size: 15px;
            color: var(--text-heading);
            font-family: var(--font-head);
        }

        .vn-node-sub {
            font-size: 11px;
            color: #666;
            margin-top: 2px;
            font-weight: 500;
        }

        .vn-node-1 {
            top: 15%;
            left: 5%;
            animation: floatNode 5s infinite ease-in-out;
            animation-delay: 0s;
        }

        .vn-node-2 {
            top: 5%;
            right: 10%;
            animation: floatNode 6s infinite ease-in-out;
            animation-delay: -2s;
        }

        .vn-node-3 {
            bottom: 20%;
            left: -5%;
            animation: floatNode 7s infinite ease-in-out;
            animation-delay: -4s;
        }

        .vn-node-4 {
            bottom: 10%;
            right: 5%;
            animation: floatNode 5.5s infinite ease-in-out;
            animation-delay: -1s;
        }

        @keyframes floatNode {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        /* Abstract Particles */
        .vn-particle {
            position: absolute;
            width: 8px;
            height: 8px;
            /*background: var(--primary);*/
            background: red;
            border-radius: 50%;
            box-shadow: 0 0 15px var(--primary);
        }

        @media (max-width: 992px) {
            .about-title {
                font-size: 48px;
            }

            .value-network {
                transform: scale(0.85);
                transform-origin: center center;
            }
        }

        @media (max-width: 768px) {
            .about-title {
                font-size: 38px;
            }

            .about-description {
                font-size: 18px;
            }

            /* Remove standard scaling for robust layout */
            .value-network {
                transform: none;
                height: 400px;
                margin-top: 30px;
            }

            /* Resize Core & Rings */
            .vn-core {
                width: 120px;
                height: 120px;
                box-shadow: 0 0 30px rgba(13, 110, 253, 0.3), inset 0 0 10px white;
            }

            .vn-core-logo {
                font-size: 32px;
            }

            .vn-ring-1 {
                width: 240px;
                height: 240px;
            }

            .vn-ring-2 {
                width: 340px;
                height: 340px;
                border-width: 1px;
            }

            /* Resize Nodes */
            .vn-node {
                padding: 12px 16px;
                border-radius: 10px;
                gap: 10px;
            }

            .vn-node:hover {
                transform: scale(1.05) translateY(-3px) !important;
            }

            .vn-node-icon {
                width: 30px;
                height: 30px;
                font-size: 16px;
                border-radius: 6px;
            }

            .vn-node-text {
                font-size: 13px;
            }

            .vn-node-sub {
                font-size: 10px;
            }

            /* Position specifically for <768px stacking layout */
            .vn-node-1 {
                left: 0%;
                top: 5%;
            }

            .vn-node-2 {
                right: 0%;
                top: 10%;
            }

            .vn-node-3 {
                left: 0%;
                bottom: 15%;
            }

            .vn-node-4 {
                right: 0%;
                bottom: 5%;
            }
        }

        @media (max-width: 480px) {
            .about-title {
                font-size: 32px;
                letter-spacing: -1px;
                margin-bottom: 16px;
            }

            .about-description {
                font-size: 16px;
            }

            .about-hero {
                padding: 7rem 0 40px;
            }

            /* Extremely tight layout for mobile portrait */
            .value-network {
                height: 320px;
                margin-top: 20px;
                perspective: 800px;
            }

            .vn-core {
                width: 100px;
                height: 100px;
                box-shadow: 0 0 20px rgba(13, 110, 253, 0.3), inset 0 0 8px white;
            }

            .vn-core-logo {
                font-size: 26px;
            }

            .vn-ring-1 {
                width: 200px;
                height: 200px;
            }

            .vn-ring-2 {
                width: 280px;
                height: 280px;
            }

            .vn-node {
                padding: 10px 14px;
                border-radius: 8px;
                gap: 8px;
            }

            .vn-node-icon {
                width: 24px;
                height: 24px;
                font-size: 14px;
            }

            .vn-node-text {
                font-size: 12px;
            }

            .vn-node-sub {
                font-size: 9px;
            }

            /* Hugging the edges tightly */
            .vn-node-1 {
                left: -5%;
                top: 5%;
                animation: floatNode 4s infinite ease-in-out;
            }

            .vn-node-2 {
                right: -5%;
                top: 15%;
                animation: floatNode 5s infinite ease-in-out;
            }

            .vn-node-3 {
                left: -5%;
                bottom: 15%;
                animation: floatNode 6s infinite ease-in-out;
            }

            .vn-node-4 {
                right: -5%;
                bottom: 5%;
                animation: floatNode 4.5s infinite ease-in-out;
            }
        }

        .eyebrow {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .stats-strip {
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
        }

        .stats-strip strong {
            color: var(--primary);
            font-size: 20px;
            font-weight: 700;
            display: block;
        }

        .timeline-scroll {
            display: flex;
            overflow-x: auto;
            padding-bottom: 20px;
            scroll-snap-type: x mandatory;
            gap: 24px;
        }

        .timeline-item {
            flex: 0 0 300px;
            scroll-snap-align: start;
            position: relative;
            padding-top: 40px;
        }

        .timeline-line {
            position: absolute;
            top: 15px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
            opacity: 0.3;
        }

        .timeline-dot {
            position: absolute;
            top: 8px;
            left: 0;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 0 4px var(--secondary);
        }

        .card {
            background: var(--accent-white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .card-icon {
            width: 48px;
            height: 48px;
            color: var(--primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .partner-section {
            display: flex;
            align-items: flex-start;
            gap: 40px;
            padding: 30px 0;
            border-bottom: 1px solid var(--border);
        }

        .partner-logo {
            flex: 0 0 200px;
            background: var(--accent-white);
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .check-list {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .check-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 8px;
        }

        .check-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--primary);
            font-weight: bold;
        }

        /* accordion & process to be added in next block */
        .accordion-item {
            border: 1px solid var(--border);
            border-radius: 8px;
            margin-bottom: 16px;
            overflow: hidden;
            background: var(--accent-white);
        }

        .accordion-header {
            padding: 20px 24px;
            width: 100%;
            text-align: left;
            background: transparent;
            border: none;
            font-size: 20px;
            font-weight: 600;
            font-family: var(--font-head);
            color: var(--text-heading);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .accordion-header::after {
            content: '+';
            font-size: 24px;
            color: var(--primary);
            transition: transform 0.3s;
        }

        .accordion-header.active::after {
            transform: rotate(45deg);
        }

        .accordion-content {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .accordion-item.active .accordion-content {
            padding: 0 24px 24px;
            max-height: 1000px;
        }

        .process-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
            position: relative;
            padding-left: 40px;
        }

        .process-list::before {
            content: '';
            position: absolute;
            left: 19px;
            top: 10px;
            bottom: 10px;
            width: 2px;
            background: var(--primary);
            opacity: 0.2;
        }

        .process-item {
            position: relative;
        }

        .process-icon {
            position: absolute;
            left: -40px;
            top: 0;
            width: 40px;
            height: 40px;
            background: var(--accent-white);
            border: 2px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            z-index: 1;
        }

        .map-container {
            position: relative;
            overflow: hidden;
            padding-top: 56.25%;
            border-radius: 12px;
        }

        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .timeline-vertical {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
            padding-left: 45px;
            text-align: left;
        }

        .timeline-vertical::before {
            content: '';
            position: absolute;
            left: 9px;
            top: 10px;
            bottom: 0;
            width: 2px;
            background: var(--primary);
            opacity: 0.2;
        }

        .timeline-v-item {
            position: relative;
            margin-bottom: 40px;
        }

        .timeline-v-item:last-child {
            margin-bottom: 0;
        }

        .timeline-v-dot {
            position: absolute;
            left: -45px;
            top: 4px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 0 6px var(--accent-light);
            z-index: 1;
        }

        .timeline-v-dot.active {
            box-shadow: 0 0 0 6px rgba(13, 110, 253, 0.2);
            animation: pulseDot 2s infinite;
        }

        @keyframes pulseDot {
            0% {
                box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(13, 110, 253, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
            }
        }



        .map-line {
            stroke-dasharray: 600;
            stroke-dashoffset: 600;
            animation: dash 3s linear infinite;
        }

        @keyframes dash {
            to {
                stroke-dashoffset: 0;
            }
        }

        .pulse-node {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--primary);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 10px var(--primary);
        }

        .pulse-node::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50%;
            border: 2px solid var(--primary);
            animation: ripple 2s infinite;
        }

        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }

            100% {
                transform: scale(4);
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            .partner-section {
                flex-direction: column;
                text-align: left;
            }

            .partner-section .partner-logo {
                max-width: 100%;
                text-align: center;
                padding: 20px;
                flex: 0 0 auto;
            }

            .orbital-container {
                transform: scale(0.65);
                min-height: 250px;
            }

            body,
            html {
                overflow-x: hidden;
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .orbital-container {
                transform: scale(0.5);
                min-height: 200px;
            }

            .timeline-v-dot {
                left: -35px;
                width: 16px;
                height: 16px;
            }

            .timeline-vertical {
                padding-left: 20px;
            }

            .timeline-vertical::before {
                left: -8px;
            }
        }
        
        /* ============================================
   Mission, Vision & Values Section
   ============================================ */

.mvv-section {
    position: relative;
    overflow: hidden;
}

.mvv-bg-decoration {
    position: absolute;
    pointer-events: none;
}

.mvv-bg-decoration-top {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.03) 0%, transparent 70%);
}

.mvv-bg-decoration-bottom {
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.03) 0%, transparent 70%);
}

.mvv-container {
    position: relative;
    z-index: 1;
}

.mvv-header {
    margin-bottom: 4rem;
}

.mvv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 110, 253, 0.08);
    padding: 8px 20px;
    border-radius: 24px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(13, 110, 253, 0.15);
}

.mvv-eyebrow {
    margin-bottom: 0;
    color: var(--text-heading);
    letter-spacing: 1px;
    font-size: 13px;
}

.mvv-title {
    font-size: 42px;
    margin-bottom: 1rem;
}

.mvv-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.mvv-cards-grid {
    margin-bottom: 0;
}

/* Card Base Styles */
.mvv-card {
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
}

.mvv-card-content {
    position: relative;
    z-index: 1;
}

.mvv-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mvv-card-title {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Mission Card (Primary Gradient) */
.mvv-card-mission {
    background: linear-gradient(135deg, #0D6EFD 0%, #0b5ed7 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.25);
}

.mvv-decoration-1 {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.mvv-decoration-2 {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.mvv-icon-mission {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.mvv-card-mission .mvv-card-title {
    color: white;
}

/* Vision Card (White with Border) */
.mvv-card-vision {
    background: white;
    border: 2px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.mvv-decoration-3 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.4;
}

.mvv-icon-vision {
    background: var(--secondary);
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.mvv-card-vision .mvv-card-title {
    color: var(--text-heading);
}

/* Values Card (Gradient Background) */
.mvv-card-values {
    background: linear-gradient(135deg, var(--accent-light) 0%, white 100%);
    border: 2px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.mvv-decoration-4 {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.3;
}

.mvv-icon-values {
    background: white;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.mvv-card-values .mvv-card-title {
    color: var(--text-heading);
}

/* List Styles */
.mvv-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 1.8;
}

.mvv-card-mission .mvv-list {
    color: rgba(255, 255, 255, 0.95);
}

.mvv-card-vision .mvv-list {
    color: var(--text-body);
}

.mvv-list-item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
}

.mvv-list-item-last {
    margin-bottom: 0;
}

.mvv-list-item span {
    font-weight: 500;
}

.mvv-check-icon {
    position: absolute;
    left: 0;
    top: 3px;
}

/* Values List Specific */
.mvv-values-list {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-body);
}

.mvv-value-item {
    margin-bottom: 12px;
}

.mvv-value-item-last {
    margin-bottom: 0;
}

.mvv-value-label {
    color: var(--text-heading);
    font-size: 16px;
}

.mvv-value-desc {
    display: block;
    margin-top: 2px;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .mvv-title {
        font-size: 36px;
    }
    
    .mvv-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .mvv-header {
        margin-bottom: 2.5rem;
    }
    
    .mvv-title {
        font-size: 28px;
    }
    
    .mvv-subtitle {
        font-size: 16px;
    }
    
    .mvv-card {
        padding: 32px 24px;
    }
    
    .mvv-card-title {
        font-size: 24px;
    }
    
    .mvv-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }
    
    .mvv-card-icon svg {
        width: 28px;
        height: 28px;
    }
}