/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #f1f1f1;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
  }
  
  /* Coach Intro Section with Background */
  .coach-intro {
    background: url('background\ coach\ intro.png') center/cover no-repeat;
    text-align: center;
    padding: 5rem 0;
    position: relative;
    color: #f1f1f1;
  }
  
  .coach-intro::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }
  
  .coach-intro .container {
    position: relative;
    z-index: 2;
  }
  
  .coach-intro h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .coach-intro p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Experience Sections Base Style */
  .experience-section {
    padding: 1rem 0;
  }
  
  .experience-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
  }
  
  .experience-content.reverse {
    flex-direction: row-reverse;
  }
  
  .experience-image,
  .experience-description {
    flex: 1 1 45%;
  }
  
  .experience-image img {
    width: 100%;
    height: 80px;
    width: 300px;
    height: auto;
    border-radius: 8px;
  }
  
  .experience-description h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #e60000;
  }
  
  .experience-description p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
  }
  
  /* Specific Section Background Colors if needed */
  .athletism {
    background-color: #111;
  }
  
  .personal-training {
    background-color: #222;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .experience-content {
      flex-direction: column;
    }
    .experience-content.reverse {
      flex-direction: column;
    }
    .experience-image,
    .experience-description {
      flex: 1 1 100%;
    }
  }
  