 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
            background: #fff;
            color: #000;
            line-height: 1.6;
            font-weight: 300;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Enhanced Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid #e5e5e5;
            padding: 0.9rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 998;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            padding: 0.7rem 5%;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }

        .logo {
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            user-select: none;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 24px;
            width: auto;
            max-width: 140px;
            object-fit: contain;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .logo:hover img {
            transform: scale(1.05) translateY(-1px);
        }

        .navbar.scrolled .logo img {
            height: 22px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: #000;
            text-decoration: none;
            font-size: 0.75rem;
            font-weight: 400;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
            padding: 0.4rem 0;
        }

        .nav-links a:hover {
            color: #666;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: #000;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            width: 38px;
            height: 38px;
            border-radius: 6px;
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.08);
            cursor: pointer;
            position: relative;
            z-index: 1001;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            align-items: center;
            justify-content: center;
        }

        .mobile-toggle:hover {
            background: rgba(0, 0, 0, 0.06);
        }

        .mobile-toggle-inner {
            position: relative;
            width: 18px;
            height: 12px;
        }

        .mobile-toggle span {
            position: absolute;
            width: 100%;
            height: 2px;
            background: #000;
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            left: 0;
        }

        .mobile-toggle span:nth-child(1) { top: 0; }
        .mobile-toggle span:nth-child(2) { top: 5px; }
        .mobile-toggle span:nth-child(3) { top: 10px; }

        .mobile-toggle.active span:nth-child(1) {
            top: 5px;
            transform: rotate(45deg);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            top: 5px;
            transform: rotate(-45deg);
        }

        /* About Us Page Styles */
        .about-hero {
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8rem 5% 4rem;
            background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                repeating-linear-gradient(0deg, transparent 0 49px, rgba(0,0,0,0.08) 49px 50px),
                repeating-linear-gradient(90deg, transparent 0 49px, rgba(0,0,0,0.08) 49px 50px);
            background-size: 50px 50px;
            opacity: 0.5;
            z-index: 1;
        }

        .about-content {
            max-width: 900px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .about-badge {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 400;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #999;
            margin-bottom: 2rem;
            padding: 0.5rem 1rem;
            border: 1px solid #e5e5e5;
            border-radius: 50px;
            background: rgba(255,255,255,0.9);
        }

        .about-hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 300;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            color: #000;
        }

        .about-hero h1 .highlight {
            font-weight: 400;
        }

        .about-intro {
            font-size: clamp(1.05rem, 2vw, 1.3rem);
            color: #666;
            font-weight: 300;
            line-height: 1.7;
            margin-bottom: 3rem;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Mission Section */
        .mission-section {
            padding: 5.5rem 5%;
            background: #fff;
        }

        .mission-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .mission-image {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
            background: #f5f5f5;
        }

        .mission-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(20%);
            transition: all 0.6s ease;
        }

        .mission-image:hover img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .mission-text h2 {
            font-size: clamp(1.85rem, 4vw, 2.85rem);
            font-weight: 300;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
            color: #000;
        }

        .mission-text p {
            font-size: 1.05rem;
            color: #666;
            font-weight: 300;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Stats Section */
        .stats-section {
            padding: 5rem 5%;
            background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
        }

        .stats-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 2rem 1rem;
            background: #fff;
            border: 1px solid #e5e5e5;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            border-color: #000;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 300;
            color: #000;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #999;
            font-weight: 400;
        }

        /* Founder Section - NEW */
        .founder-section {
            padding: 5.5rem 5%;
            background: #fff;
        }

        .founder-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            align-items: center;
        }

        .founder-image {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
            background: linear-gradient(135deg, #000 0%, #333 100%);
            border-radius: 8px;
        }

        .founder-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s ease;
        }

        .founder-image:hover img {
            transform: scale(1.05);
        }

        .founder-text h2 {
            font-size: clamp(1.85rem, 4vw, 2.85rem);
            font-weight: 300;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            color: #000;
        }

        .founder-title {
            font-size: 1rem;
            color: #999;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .founder-text p {
            font-size: 1.05rem;
            color: #666;
            font-weight: 300;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .founder-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .founder-link {
            padding: 0.75rem 1.5rem;
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            border: 1px solid #e5e5e5;
            color: #000;
            transition: all 0.3s ease;
        }

        .founder-link:hover {
            background: #000;
            color: #fff;
            border-color: #000;
        }

        /* Team Section */
        .team-section {
            padding: 5.5rem 5%;
            background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
        }

        .team-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-badge {
            display: inline-block;
            font-size: 0.6rem;
            font-weight: 400;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #999;
            margin-bottom: 1.25rem;
            padding: 0.45rem 0.9rem;
            border: 1px solid #e5e5e5;
            border-radius: 50px;
            background: #fff;
        }

        .team-header h2 {
            font-size: clamp(1.85rem, 4vw, 2.85rem);
            font-weight: 300;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            color: #000;
        }

        .team-header p {
            font-size: 1.05rem;
            color: #666;
            font-weight: 300;
            line-height: 1.7;
        }

        .team-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .team-member {
            text-align: center;
            padding: 2.5rem 2rem;
            background: #fff;
            border: 1px solid #e5e5e5;
            transition: all 0.4s ease;
        }

        .team-member:hover {
            transform: translateY(-8px);
            border-color: #000;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .member-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, #000 0%, #333 100%);
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #fff;
            font-weight: 300;
        }

        .member-name {
            font-size: 1.15rem;
            font-weight: 400;
            letter-spacing: -0.01em;
            margin-bottom: 0.5rem;
            color: #000;
        }

        .member-role {
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #999;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .member-bio {
            font-size: 0.9rem;
            color: #666;
            font-weight: 300;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .member-links {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .member-link {
            padding: 0.5rem 0.9rem;
            font-size: 0.65rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-decoration: none;
            border: 1px solid #e5e5e5;
            color: #666;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .member-link:hover {
            background: #000;
            color: #fff;
            border-color: #000;
            transform: translateY(-2px);
        }

        /* Values Section */
        .values-section {
            padding: 5.5rem 5%;
            background: #fff;
        }

        .values-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .values-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .values-header h2 {
            font-size: clamp(1.85rem, 4vw, 2.85rem);
            font-weight: 300;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            color: #000;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .value-card {
            padding: 2.5rem 2rem;
            background: #fafafa;
            border: 1px solid #e5e5e5;
            transition: all 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
            background: #fff;
            border-color: #000;
            box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        }

        .value-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .value-title {
            font-size: 1.15rem;
            font-weight: 400;
            letter-spacing: 0.01em;
            margin-bottom: 0.75rem;
            color: #000;
        }

        .value-description {
            font-size: 0.9rem;
            color: #666;
            font-weight: 300;
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 5%;
            background: #000;
            color: #fff;
            text-align: center;
        }

        .cta-section h2 {
            font-size: clamp(1.85rem, 4vw, 2.85rem);
            font-weight: 300;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.05rem;
            color: #ccc;
            font-weight: 300;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 3rem;
            background: #fff;
            color: #000;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            border: 2px solid #fff;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: transparent;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(255,255,255,0.15);
        }

        /* Enhanced Footer */
        .footer {
            padding: 4rem 5% 2rem;
            background: #fff;
            border-top: 1px solid #e5e5e5;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto 2.5rem;
        }

        .footer-section h4 {
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 1rem;
            color: #000;
        }

        .footer-logo {
            margin-bottom: 1rem;
        }

        .footer-logo img {
            height: 24px;
            width: auto;
            max-width: 130px;
            object-fit: contain;
        }

        .footer-section p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #666;
            font-size: 0.9rem;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
            line-height: 1.6;
        }

        .footer-section a:hover {
            color: #000;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #e5e5e5;
            color: #666;
            font-size: 0.8rem;
        }

        .footer-legal {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 0.75rem;
            flex-wrap: wrap;
        }

        .footer-legal a {
            color: #999;
            text-decoration: none;
            font-size: 0.75rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: #000;
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .mission-container,
            .founder-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

        @media (max-width: 768px) {
            .mobile-toggle {
                display: flex;
            }

            .logo img {
                height: 22px;
                max-width: 120px;
            }

            .navbar.scrolled .logo img {
                height: 20px;
            }

            .nav-links {
                position: fixed;
                top: 68px;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 1.5rem 5%;
                gap: 1rem;
                border-bottom: 1px solid #e5e5e5;
                transform: translateY(-120%);
                opacity: 0;
                transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
                pointer-events: none;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .nav-links a {
                font-size: 0.8rem;
                padding: 0.5rem 0;
                width: 100%;
            }

            .about-hero {
                padding: 6rem 5% 3rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-legal {
                flex-direction: column;
                gap: 0.5rem;
            }

            .founder-links {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .logo img {
                height: 20px;
                max-width: 105px;
            }
        }