        /* Mission Page Specific Styles */
        .nav-links a.active {
            color: var(--color-gold);
        }

        /* Hero Section */
        .mission-hero {
            padding: 30px 0 60px;
            background: linear-gradient(180deg, var(--color-white) 0%, var(--color-off-white) 100%);
            text-align: center;
            overflow: hidden;
        }

        .hero-hands-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 420px;
            margin-bottom: 40px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-hand {
            position: absolute;
            height: 380px;
            width: auto;
            object-fit: contain;
        }

        .hero-hand-left {
            left: -20px;
            top: -60px;
        }

        .hero-hand-right {
            right: -15px;
            bottom: -80px;
            height: 350px;
        }

        @keyframes envelope-float {
            0%, 100% {
                transform: rotate(-8deg) translateY(0);
            }
            50% {
                transform: rotate(-6deg) translateY(-12px);
            }
        }

        .hero-envelope {
            position: relative;
            z-index: 2;
            height: 260px;
            width: auto;
            object-fit: contain;
            transform: rotate(-8deg);
            animation: envelope-float 3s ease-in-out infinite;
        }

        .mission-hero-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .mission-hero h1 {
            font-size: 2.8rem;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--color-black);
        }

        .hero-tagline {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--color-gold);
            text-transform: uppercase;
        }

        /* Story Cards Section */
        .mission-story {
            padding: 60px 0 50px;
            background: var(--color-white);
        }

        .story-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .story-card {
            background: var(--color-light-gray);
            border-radius: var(--radius-lg);
            padding: 45px 40px;
        }

        .story-card h2 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--color-black);
        }

        .story-card p {
            font-size: 1rem;
            color: var(--color-dark-gray);
            line-height: 1.8;
        }

        /* Quote Divider */
        .quote-divider {
            padding: 40px 0;
            background: var(--color-black);
        }

        .quote-divider blockquote {
            margin: 0;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .quote-divider p {
            font-size: 1.5rem;
            font-weight: 500;
            font-style: italic;
            color: var(--color-white);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .quote-divider cite {
            font-size: 1rem;
            color: var(--color-gold);
            font-style: normal;
            font-weight: 600;
            display: block;
        }

        /* Values Section */
        .values-section {
            padding: 60px 0 50px;
            background: var(--color-white);
        }

        .values-section .section-title {
            margin-bottom: 30px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .value-card {
            background: var(--color-light-gray);
            border-radius: var(--radius-lg);
            padding: 32px;
            text-align: left;
        }

        .value-icon {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 56px;
            height: 56px;
            margin-bottom: 20px;
            color: var(--color-gold);
        }

        .value-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--color-black);
        }

        .value-card p {
            font-size: 0.9rem;
            color: var(--color-dark-gray);
            line-height: 1.65;
        }


        /* Responsive */
        @media (max-width: 1024px) {
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-hands-wrapper {
                max-width: 750px;
                height: clamp(200px, 32vw, 320px);
            }

            .hero-hand {
                height: clamp(150px, 26vw, 260px);
            }

            .hero-hand-left {
                top: -20px;
            }

            .hero-hand-right {
                bottom: -20px;
            }

            .hero-envelope {
                height: clamp(100px, 22vw, 170px);
            }
        }

        @media (max-width: 768px) {
            .mission-hero h1 {
                font-size: 2rem;
            }

            .hero-hands-wrapper {
                max-width: 100%;
                padding: 0 20px;
                height: clamp(180px, 40vw, 280px);
            }

            .hero-hand {
                height: clamp(120px, 22vw, 200px);
            }

            .hero-envelope {
                height: clamp(80px, 18vw, 140px);
            }

            .hero-hand-left {
                left: -10px;
                top: -10px;
            }

            .hero-hand-right {
                right: -10px;
                bottom: -10px;
            }

            .story-cards {
                grid-template-columns: 1fr;
            }

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

            .quote-divider .container {
                padding: 20px 0;
            }

            .quote-divider p {
                font-size: 0.95rem;
            }

            .quote-divider cite {
                font-size: 0.85rem;
            }

            .story-card {
                padding: 35px 30px;
            }

            .hero-hands-wrapper {
                overflow: hidden;
            }
        }

        @media (max-width: 480px) {
            .mission-hero h1 {
                font-size: 1.6rem;
            }

            .story-card {
                padding: 25px 20px;
            }
        }
