        :root {
            --primary: #1a73e8;
            --primary-dark: #0d47a1;
            --primary-light: #e8f0fe;
            --secondary: #34a853;
            --dark: #202124;
            --light: #f8f9fa;
            --gray: #5f6368;
            --gray-light: #dadce0;
            --accent: #fbbc05;
            --gradient-blue: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
            --gradient-green: linear-gradient(135deg, #34a853 0%, #0f9d58 100%);
            --gradient-purple: linear-gradient(135deg, #673ab7 0%, #9c27b0 100%);
            --gradient-orange: linear-gradient(135deg, #fbbc05 0%, #ea4335 100%);
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
            --border-radius: 12px;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--dark);
        }
        
        .section-title .title-line {
            height: 4px;
            width: 80px;
            background: var(--gradient-blue);
            border-radius: 10px;
            margin-top: 15px;
        }
        
        .hero-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: "";
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: var(--gradient-blue);
            border-radius: 50%;
            opacity: 0.08;
            z-index: 1;
        }
        
        .hero-section::after {
            content: "";
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 500px;
            height: 500px;
            background: var(--gradient-green);
            border-radius: 50%;
            opacity: 0.06;
            z-index: 1;
        }
        
        .hero-content h1 {
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-content h1 span {
            background: var(--gradient-blue);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }
        
        .hero-image-container {
            position: relative;
            z-index: 2;
        }
        
        .hero-image-container img {
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            transform: perspective(1000px) rotateY(-10deg);
            transition: transform 0.5s ease;
        }
        
        .hero-image-container img:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .feature-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid var(--gray-light);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            color: white;
        }
        
        .icon-blue {
            background: var(--gradient-blue);
        }
        
        .icon-green {
            background: var(--gradient-green);
        }
        
        .icon-purple {
            background: var(--gradient-purple);
        }
        
        .icon-orange {
            background: var(--gradient-orange);
        }
        
        .values-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%);
            position: relative;
            overflow: hidden;
        }
        
        .value-item {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            border-left: 5px solid var(--primary);
        }
        
        .value-item:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-md);
        }
        
        .value-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 1.3rem;
        }
        
        .team-section {
            position: relative;
        }
        
        .team-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .team-img {
            height: 250px;
            overflow: hidden;
        }
        
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-card:hover .team-img img {
            transform: scale(1.05);
        }
        
        .team-info {
            padding: 1.5rem;
        }
        
        .team-info h4 {
            margin-bottom: 0.3rem;
            color: var(--dark);
        }
        
        .team-info p {
            color: var(--gray);
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
        }
        
        .stats-section {
            background: var(--gradient-blue);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .stat-item {
            text-align: center;
            padding: 2rem;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            font-family: 'Poppins', sans-serif;
        }
        
        .stat-text {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .investors-section {
            background: var(--light);
        }
        
        .investor-logo {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            border: 1px solid var(--gray-light);
        }
        
        .investor-logo:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-md);
        }
        
        .investor-logo img {
            max-width: 100%;
            max-height: 60px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .investor-logo:hover img {
            filter: grayscale(0);
            opacity: 1;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border-radius: 20px;
            padding: 4rem;
            position: relative;
            overflow: hidden;
            margin: 5rem auto;
            box-shadow: var(--shadow-lg);
        }
        
        .cta-section::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .cta-section::after {
            content: "";
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .btn-primary-custom {
            background: var(--gradient-blue);
            border: none;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            color: white;
        }
        
        .btn-outline-custom {
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-custom:hover {
            background: white;
            color: var(--primary);
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .cta-section {
                padding: 3rem 1.5rem;
            }
        }