
    /* Women Page Custom Styles */
    .hero-women {
      height: 100vh;
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                  url(../sources/woman\ hockey.jpg) no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }

    .hero-women h1 {
      font-size: 3.5rem;
      margin-bottom: 15px;
      color: #fff;
      font-family: "Bebas Neue", sans-serif;
    }

    .hero-women p {
      color: #ccc;
      font-size: 1.3rem;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Live Map Section */
    .map-section {
      padding: 80px 0;
      background: #000;
    }

    #live-map {
      height: 600px;
      width: 100%;
      border-radius: 15px;
      overflow: hidden;
      border: 1px solid #333;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    /* Custom Map Popup Styling */
    .map-popup {
      color: #333;
    }
    
    .map-popup h3 {
      color: #8C2131;
      margin-bottom: 5px;
      font-size: 16px;
    }
    
    .map-popup p {
      margin: 5px 0;
      font-size: 14px;
    }

    /* Academy List Section */
    .academies-section {
      background: #111;
      padding: 100px 20px;
    }

    .academies-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .academy-card {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      padding: 30px;
      text-align: center;
      transition: transform 0.3s, border-color 0.3s;
    }

    .academy-card:hover {
      transform: translateY(-8px);
      border-color: #8C2131;
    }

    .academy-card h3 {
      color: #8C2131;
      font-size: 1.6rem;
      margin-bottom: 20px;
    }

    .academy-card ul {
      list-style: none;
      padding: 0;
      color: #ccc;
      line-height: 1.8;
    }

    /* Gallery Section */
    .gallery {
      padding: 100px 20px;
      background: #000;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .gallery-grid img {
      width: 100%;
      border-radius: 15px;
      height: 250px;
      object-fit: cover;
      transition: transform 0.3s, opacity 0.3s;
    }

    .gallery-grid img:hover {
      transform: scale(1.05);
      opacity: 0.9;
    }
    
    /* Custom marker cluster styles */
    .marker-cluster-custom {
      background: #8C2131;
      border: 3px solid rgba(255,255,255,0.7);
      border-radius: 50%;
      color: #fff;
      font-weight: bold;
      text-align: center;
      line-height: 40px;
    }
    
    .marker-cluster-custom div {
      width: 30px;
      height: 30px;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .hero-women h1 {
        font-size: 2.5rem;
      }
      
      .hero-women p {
        font-size: 1.1rem;
      }
      
      #live-map {
        height: 400px;
      }
    }
