
        :root {
            --ocean-blue: #0077be;
            --ocean-dark: #004d7a;
            --sea-foam: #7dd3c0;
        }
        .bg-ocean-blue { background-color: var(--ocean-blue); }
        .bg-ocean-dark { background-color: var(--ocean-dark); }
        .bg-sea-foam { background-color: var(--sea-foam); }
        .text-ocean-blue { color: var(--ocean-blue); }
        .text-ocean-dark { color: var(--ocean-dark); }
        
        .hero-section { 
            background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-dark)); 
            position: relative;
            overflow: hidden;
        }
        /*
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.05"><path d="M0,0 Q250,50 500,0 T1000,0 V100 H0 Z"/></svg>');
            background-size: 100% 100px;
        }*/
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        
        .stats-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .stats-card:hover {
            transform: translateY(-5px);
        }
        
        .stats-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--ocean-blue);
            line-height: 1;
        }
        
        .timeline {
            position: relative;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--sea-foam);
        }
        
        .timeline-item {
            position: relative;
            padding-left: 60px;
            margin-bottom: 2rem;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 11px;
            top: 8px;
            width: 18px;
            height: 18px;
            background: var(--ocean-blue);
            border: 3px solid white;
            border-radius: 50%;
            box-shadow: 0 0 0 3px var(--sea-foam);
        }
        
        .team-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .team-photo {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 50%;
            margin: 0 auto 1rem;
            border: 4px solid var(--sea-foam);
        }
