        :root {
            --primary-green: #1b4332;
            --light-green: #2d6a4f;
            --sage-green: #40916c;
            --mint-green: #52b788;
            --light-mint: #74c69d;
            --pale-green: #b7e4c7;
            --cream: #f8f9fa;
            --dark-text: #1b4332;
            --white: #ffffff;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--pale-green) 0%, var(--light-mint) 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .btn-primary-custom {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            color: var(--white);
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(27, 67, 50, 0.3);
        }
        
        .btn-primary-custom:hover {
            background-color: var(--light-green);
            border-color: var(--light-green);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(27, 67, 50, 0.4);
        }
        
        .btn-outline-custom {
            color: var(--primary-green);
            border-color: var(--primary-green);
            background-color: var(--white);
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 50px;
            border-width: 2px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-custom:hover {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(27, 67, 50, 0.3);
        }
        
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: none;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-green);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .feature-icon i {
            font-size: 24px;
            color: var(--white);
        }
        
        .section-title {
            color: var(--primary-green);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .feature-card h4 {
            color: var(--dark-text);
            font-weight: 600;
        }
        
        .text-muted-custom {
            color: #495057 !important;
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--pale-green) 0%, var(--light-mint) 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero-section h1 {
            color: var(--dark-text);
            font-weight: 700;
        }
        
        .hero-section .lead {
            color: #495057;
            font-weight: 400;
        }
        
        .navbar {
            padding: 1rem 0;
            background: var(--white) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-green) !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand img {
            height: 45px;
            width: auto;
            margin-right: 12px;
        }
        
        .nav-link {
            color: var(--dark-text) !important;
            font-weight: 500;
        }
        
        .nav-link:hover {
            color: var(--light-green) !important;
        }
        
        .stats-section {
            background-color: var(--primary-green);
            color: var(--white);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--white);
        }
        
        .stats-section p {
            color: var(--white);
            opacity: 0.9;
        }
        
        footer {
            background-color: var(--dark-text);
            color: var(--white);
        }
        
        footer h5, footer h6 {
            color: var(--white);
        }
        
        footer .text-muted {
            color: rgba(255,255,255,0.7) !important;
        }
        
        footer a.text-muted {
            color: rgba(255,255,255,0.7) !important;
        }
        
        footer a.text-muted:hover {
            color: var(--white) !important;
        }
        
        .hero-image {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }
        
        .hero-mascot {
            max-width: 300px;
            height: auto;
            animation: float 3s ease-in-out infinite;
        }
        
        .floating-mascot {
            position: absolute;
            right: -50px;
            top: 50%;
            transform: translateY(-50%);
            width: 80px;
            height: auto;
            opacity: 0.6;
            animation: float 4s ease-in-out infinite;
        }
        
        .mascot-small {
            width: 40px;
            height: auto;
            opacity: 0.7;
            margin-right: 8px;
        }
        
        .app-preview-placeholder {
            position: relative;
            display: inline-block;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding-top: 80px;
            }
            
            .hero-section h1 {
                font-size: 2.5rem;
            }
        }