
        .aboutsection {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #000000;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Hero About Section */
        .about-hero {
            min-height: 70vh;
            background: #000000;
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
            pointer-events: none;
        }

        .about-content {
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .about-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 25px;
            text-transform: uppercase;
        }

        .about-hero h1 {
            font-size: clamp(40px, 6vw, 64px);
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .about-hero p.lead {
            font-size: clamp(18px, 2.5vw, 22px);
            color: #999;
            line-height: 1.7;
            max-width: 800px;
            margin-bottom: 15px;
        }

        /* Stats Section */
        .stats-section {
            padding: 60px 0;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: clamp(36px, 5vw, 48px);
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #ffffff 0%, #999 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 15px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Foundation Section */
        .foundation-section {
            padding: 80px 0;
            background: #000000;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            margin-bottom: 15px;
            color: #ffffff;
            letter-spacing: 1px;
        }

        .section-header p {
            font-size: clamp(16px, 2vw, 18px);
            color: #999;
        }

        /* Foundation Cards */
        .foundation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .foundation-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .foundation-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
        }

        .foundation-image {
            width: 100%;
            height: 240px;
            object-fit: cover;
            display: block;
            filter: grayscale(100%) brightness(0.9);
            transition: all 0.4s ease;
        }

        .foundation-card:hover .foundation-image {
            filter: grayscale(0%) brightness(1);
            transform: scale(1.05);
        }

        .foundation-content {
            padding: 30px;
        }

        .foundation-title {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .foundation-description {
            font-size: 15px;
            line-height: 1.7;
            color: #aaa;
            margin-bottom: 20px;
        }

        .foundation-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .foundation-list li {
            font-size: 14px;
            color: #999;
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            line-height: 1.6;
        }

        .foundation-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #ffffff;
            font-weight: 700;
        }

        /* Values Section */
        .values-section {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.01);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .values-intro {
            max-width: 800px;
            margin: 0 auto 50px;
            text-align: center;
            padding: 0 20px;
        }

        .values-intro h3 {
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .values-intro p {
            font-size: 16px;
            color: #999;
            line-height: 1.7;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .value-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            text-align: center;
        }

        .value-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.08);
        }

        .value-image-container {
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.02);
        }

        .value-image {
            width: 60%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%) brightness(0.8);
            transition: all 0.4s ease;
        }

        .value-card:hover .value-image {
            filter: grayscale(0%) brightness(1);
            transform: scale(1.1);
        }

        .value-content {
            padding: 25px 20px;
        }

        .value-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .value-text {
            font-size: 14px;
            color: #999;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 20px;
            text-align: center;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .cta-content h2 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 18px;
            color: #999;
            margin-bottom: 30px;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: #ffffff;
            color: #000000;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
            color: #000000;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-hero {
                padding: 80px 0 60px;
                min-height: 60vh;
            }

            .foundation-grid {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .stats-section {
                padding: 40px 0;
            }
        }