 :root {
     --primary-green: #004b2b;
     --primary-gold: #ffcd00;
     --dark-bg: #121212;
     --light-bg: #f8f9fa;
     --text-dark: #333333;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Open Sans', sans-serif;
     color: var(--text-dark);
     background-color: var(--light-bg); 
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 .navbar-brand {
     font-family: 'Montserrat', sans-serif;
     font-weight: 800;
 }


 .text-gold {
     color: var(--primary-gold) !important;
 }

 .text-green {
     color: var(--primary-green) !important;
 }

 .bg-green {
     background-color: var(--primary-green) !important;
 }

 .bg-gold {
     background-color: var(--primary-gold) !important;
 }


 .btn-gold {
     background-color: var(--primary-gold);
     color: #000;
     font-weight: 600;
     border: none;
     transition: all 0.3s ease;
 }

 .btn-gold:hover {
     background-color: #e6b800;
     color: #000;
     transform: translateY(-2px);
 }

 .btn-outline-gold {
     border: 2px solid var(--primary-gold);
     color: var(--primary-gold);
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .btn-outline-gold:hover {
     background-color: var(--primary-gold);
     color: #000;
     transform: translateY(-2px);
 }


 .navbar {
     background-color: var(--primary-green);
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }

 .navbar-brand {
     font-size: 1.8rem;
     color: #fff !important;
 }

 .nav-link {
     color: rgba(255, 255, 255, 0.9) !important;
     font-weight: 600;
     margin: 0 5px;
     transition: color 0.3s;
 }

 .nav-link:hover {
     color: var(--primary-gold) !important;
 }


 .hero {
     position: relative;
     background: linear-gradient(rgba(0, 75, 43, 0.85), rgba(0, 0, 0, 0.7)),
         url('../img/hero.jpeg') center/cover no-repeat;
     color: white;
     padding: 120px 0;
     text-align: center;
 }

 .hero h1 {
     font-size: 3.5rem;
     text-transform: uppercase;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
 }

 .hero p.lead {
     font-size: 1.25rem;
     max-width: 800px;
     margin: 0 auto;
 }

 .about-card-horizontal {
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .about-card-horizontal:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
 }

 .service-card,
 .about-card,
 .sport-card,
 .review-card {
     background: #fff;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     height: 100%;
     overflow: hidden;
     border: 1px solid rgba(0, 0, 0, 0.05);
 }

 .service-card:hover,
 .about-card:hover,
 .sport-card:hover,
 .review-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .service-icon {
     font-size: 3rem;
     color: var(--primary-green);
     margin-bottom: 20px;
 }

 .img-wrapper {
     height: 380px;
     overflow: hidden;
 }

 .img-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .sport-card:hover .img-wrapper img,
 .about-card:hover .img-wrapper img {
     transform: scale(1.05);
 }


 .accordion-button:not(.collapsed) {
     background-color: var(--primary-green);
     color: white;
 }

 .accordion-button:not(.collapsed)::after {
     filter: brightness(0) invert(1);
 }

 .accordion-button:focus {
     box-shadow: none;
     border-color: rgba(0, 0, 0, 0.125);
 }






 #age-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.95);
     z-index: 10000;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: white;
 }

 .age-box {
     background: #1a1a1a;
     padding: 40px;
     border-radius: 12px;
     border: 2px solid var(--primary-gold);
     max-width: 500px;
     width: 90%;
 }

 #cookie-banner {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: #222;
     color: white;
     padding: 15px 20px;
     z-index: 9990;
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     align-items: center;
     transform: translateY(100%);
     transition: transform 0.4s ease-in-out;
 }

 #cookie-banner.show {
     transform: translateY(0);
 }

 body.no-scroll {
     overflow: hidden;
 }


 .section-title {
     position: relative;
     display: inline-block;
     margin-bottom: 40px;
     color: var(--primary-green);
 }

 .section-title::after {
     content: '';
     position: absolute;
     width: 50%;
     height: 4px;
     background-color: var(--primary-gold);
     bottom: -10px;
     left: 25%;
     border-radius: 2px;
 }

 footer {
     width: 100%;
 }

 .bg-dark {
     background: #111827;
 }

 .text-white {
     color: #fff;
 }

 .text-muted {
     color: rgba(255, 255, 255, 0.65);
 }

 .text-center {
     text-align: center;
 }

 .py-5 {
     padding-top: 3rem;
     padding-bottom: 3rem;
 }

 .container {
     width: 100%;
     max-width: 1140px;
     margin: 0 auto;
     padding-left: 15px;
     padding-right: 15px;
     box-sizing: border-box;
 }


 h3,
 p,
 a,
 span,
 address {
     margin-top: 0;
 }

 h3 {
     font-size: 1.75rem;
     line-height: 1.3;
     font-weight: 700;
 }

 p {
     font-size: 1rem;
     line-height: 1.7;
 }

 .small {
     font-size: 0.875rem;
     line-height: 1.6;
 }


 .mb-2 {
     margin-bottom: 0.5rem;
 }

 .mb-3 {
     margin-bottom: 1rem;
 }

 .mb-4 {
     margin-bottom: 1.5rem;
 }

 .me-3 {
     margin-right: 1rem;
 }

 .m-1 {
     margin: 0.25rem;
 }


 .badge {
     display: inline-block;
     padding: 0.55rem 0.9rem;
     border-radius: 999px;
     font-size: 0.75rem;
     font-weight: 600;
     line-height: 1;
     letter-spacing: 0.03em;
     text-transform: uppercase;
 }

 .bg-secondary {
     background: #4b5563;
     color: #fff;
 }


 .d-flex {
     display: flex;
 }

 .flex-wrap {
     flex-wrap: wrap;
 }

 .justify-content-center {
     justify-content: center;
 }

 .align-items-center {
     align-items: center;
 }

 .gap-4 {
     gap: 1.5rem;
 }


 a {
     color: inherit;
     text-decoration: none;
     transition: opacity 0.25s ease, color 0.25s ease;
     cursor: pointer;
 }

 a:hover {
     opacity: 0.85;
 }

 .text-decoration-underline {
     text-decoration: underline;
 }


 .img-blog a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 0.4rem 0.7rem;
     background: rgba(255, 255, 255, 0.04);
     border-radius: 10px;
 }

 .img-blog img {
     display: block;
     max-height: 40px;
     width: auto;
     object-fit: contain;
 }


 nav a {
     display: inline-block;
     margin-bottom: 0.5rem;
     font-weight: 500;
 }


 address {
     font-style: normal;
     line-height: 1.7;
 }

 address a {
     text-decoration: underline;
 }


 @media (max-width: 768px) {
     .container {
         padding-left: 20px;
         padding-right: 20px;
     }

     h3 {
         font-size: 1.4rem;
     }

     p {
         font-size: 0.95rem;
     }

     .gap-4 {
         gap: 1rem;
     }

     nav a,
     .mb-3.small a {
         display: inline-block;
         margin-right: 0.75rem;
         margin-bottom: 0.5rem;
     }
 }.policy-header {
            background: linear-gradient(rgba(0, 75, 43, 0.9), rgba(0, 75, 43, 0.9)), url('../img/hero.jpeg') center/cover;
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .policy-content {
            background: #fff;
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
            margin-top: -40px;
            margin-bottom: 60px;
        }

        .policy-content h2 {
            color: var(--primary-green);
            margin-top: 40px;
            margin-bottom: 20px;
            font-size: 1.8rem;
            border-bottom: 2px solid var(--light-bg);
            padding-bottom: 10px;
        }

        .policy-content h3 {
            color: var(--text-dark);
            margin-top: 25px;
            margin-bottom: 15px;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .policy-content ul {
            margin-bottom: 20px;
        }

        .policy-content li {
            margin-bottom: 10px;
        } 
        .thank-you-section {
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 15px;
            background: linear-gradient(rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.9)), url('../img/hero.jpeg') center/cover;
        }

        .thank-you-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            padding: 50px 40px;
            max-width: 600px;
            width: 100%;
            text-align: center;
            border-top: 5px solid var(--primary-gold);
        }

        .icon-circle {
            width: 100px;
            height: 100px;
            background-color: rgba(0, 75, 43, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px auto;
        }