:root {
            --primary-green: #006400;
            --secondary-gold: #FFD700;
            --accent-blue: #005A9C;
            --light-gray: #f8f9fa;
            --dark-gray: #343a40;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        .navbar-brand img { max-height: 60px; }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0;
        }
        .section-title {
            color: var(--primary-green);
            border-left: 5px solid var(--secondary-gold);
            padding-left: 15px;
            margin-bottom: 2rem;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .facility-icon {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }
        .btn-primary {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            padding: 10px 25px;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: #004d00;
            border-color: #004d00;
        }
        .footer {
            background-color: var(--dark-gray);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: background-color 0.3s;
        }
        .social-icon:hover {
            background-color: var(--secondary-gold);
            color: #000;
        }
        .friendlink a.flink {
            color: var(--accent-blue);
            text-decoration: none;
            padding: 8px 15px;
            border: 1px solid #dee2e6;
            border-radius: 4px;
            margin: 5px;
            display: inline-block;
            transition: all 0.3s;
        }
        .friendlink a.flink:hover {
            background-color: var(--light-gray);
            border-color: var(--accent-blue);
        }
        .coach-img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid var(--light-gray);
        }
        @media (max-width: 768px) {
            .hero-section { padding: 80px 0; }
            .display-4 { font-size: 2.2rem; }
        }
        .timeline-item {
            border-left: 3px solid var(--primary-green);
            padding-left: 25px;
            padding-bottom: 30px;
            position: relative;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -8px;
            top: 0;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--secondary-gold);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-green);
            display: block;
        }
