:root {
            --primary-blue: #1e88e5;
            --secondary-blue: #64b5f6;
            --accent-orange: #ff9800;
            --water-cyan: #00bcd4;
            --dark-blue: #0d47a1;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
        }
        .navbar-brand {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--dark-blue), var(--water-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(30, 136, 229, 0.8), rgba(0, 188, 212, 0.8)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .section-title {
            color: var(--dark-blue);
            border-left: 5px solid var(--accent-orange);
            padding-left: 15px;
            margin: 40px 0 25px;
            font-weight: 700;
        }
        .content-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            border-top: 5px solid var(--primary-blue);
        }
        .content-card:hover {
            transform: translateY(-5px);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        .ride-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-left: 4px solid var(--water-cyan);
        }
        .ride-card:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        .info-box {
            background: linear-gradient(135deg, var(--primary-blue), var(--water-cyan));
            color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 20px 0;
        }
        .highlight-text {
            background: linear-gradient(transparent 60%, rgba(255, 152, 0, 0.3) 40%);
            font-weight: 600;
        }
        .water-wave {
            position: relative;
            overflow: hidden;
        }
        .water-wave::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 10px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%2300bcd4">');
            background-size: cover;
        }
        footer {
            background: var(--dark-blue);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        .social-icons a:hover {
            color: var(--secondary-blue);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
            .content-card {
                padding: 20px;
            }
        }
