:root {
            --primary-green: #1e7e34;
            --dark-green: #145a32;
            --accent-gold: #ffc107;
            --light-gray: #f8f9fa;
            --text-dark: #212529;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
        }
        .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=2071&q=80');
            background-size: cover;
            background-position: center;
            min-height: 90vh;
            color: white;
            display: flex;
            align-items: center;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--primary-green);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        .btn-primary {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            padding: 10px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: var(--dark-green);
            border-color: var(--dark-green);
            transform: scale(1.05);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: rgba(30, 126, 52, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .icon-box i {
            font-size: 30px;
            color: var(--primary-green);
        }
        .training-card {
            border-top: 5px solid var(--primary-green);
            height: 100%;
        }
        .coach-img {
            height: 250px;
            object-fit: cover;
            object-position: top;
        }
        .testimonial-card {
            border-left: 4px solid var(--primary-green);
        }
        .footer {
            background-color: #1a1a1a;
            color: #ccc;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #333;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background-color: var(--primary-green);
            transform: translateY(-3px);
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            background-color: #2a2a2a;
            border-radius: 4px;
            margin: 5px;
            transition: all 0.3s ease;
            border: 1px solid #444;
        }
        .flink:hover {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            transform: translateY(-3px);
        }
        .player-pathway {
            background: linear-gradient(135deg, var(--light-gray) 0%, #e9f5eb 100%);
            padding: 60px 0;
            border-radius: 10px;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-green);
        }
        .facility-img {
            height: 250px;
            width: 100%;
            object-fit: cover;
            border-radius: 8px;
        }
        .badge-academy {
            background-color: var(--accent-gold);
            color: #000;
            font-weight: 600;
        }
        .news-card {
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
        }
        .news-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .contact-info-box {
            padding: 25px;
            border-radius: 8px;
            background-color: var(--light-gray);
            height: 100%;
        }
        .contact-info-box i {
            color: var(--primary-green);
            margin-bottom: 15px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-green);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top.show {
            opacity: 1;
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 70vh;
            }
            .stats-number {
                font-size: 2.5rem;
            }
            .section-title:after {
                width: 60px;
            }
        }
