/* Reset default spacing and box model */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f8f8;
    font-weight: 505;
  }

/* Programs Page General Styling */
.programs-page {
    font-family: 'Arial', sans-serif;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 80px;
  }
  
 
  #hero {
    background-color: #fff;
    padding: 4rem 2rem; 
    border-radius: 12px; 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    max-width: 1000px;
    margin: auto; 
}

  
  /* Hero Section */
  .programs-hero h1 {
    font-size: 2rem;
    color: #0056b3;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .programs-hero p {
    font-size: 1.2rem;
    color: #555;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Coaching Section */

  .programs-training {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3); 
    font-size: 1.2rem; 
    color: #333; 
    line-height: 1.6; 
    text-align: left; 
    padding: 20px; 
    max-width: 800px; 
    margin: auto; 
    margin-top: 20px;
  }
  

  .programs-competitions {
    background-color: #fff;
    padding: 4rem 2rem; 
    border-radius: 12px; 
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3); 
    max-width: 1000px;
    margin: auto; 
    display: flex;
    flex-direction: column; 
    gap: 20px;
    margin-top: 20px;
  }
  



  .programs-training h2,
  .programs-competitions h2,
  .cta h2 {
    font-size: 1.6rem;
    color: #1444b3;
    margin-bottom: 1rem;
  }
  
  .programs-training p,
  .programs-competitions p,
  .cta p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
  }
  
  /* List in Competitions */
  .programs-competitions ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .programs-competitions li {
    background-color: #f1f1f1;
    padding: 1rem;
    border-left: 4px solid #0056b3;
    font-weight: 500;
  }
  
  /* Blockquote */
  .programs-competitions blockquote {
    font-style: italic;
    color: #555;
    border-left: 4px solid #ccc;
    padding-left: 1rem;
    margin-top: 1rem;
    font-size: 1rem;
  }
  
  /* CTA Section */
  .cta {
    text-align: center;
    background-color: #e3f0ff;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 20px;
    }
  
  .cta h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .cta a {
    display: inline-block;
    margin-top: 1rem;
    background-color: #0f1a8c;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    font-size: 1rem;
  }
  
  .cta a:hover {
    background-color: #51900e;
  }
  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .programs-page {
      padding: 1.2rem;
    }
  
    .programs-hero h1 {
      font-size: 1.3rem;
    }
  
    .programs-competitions h2,
    .cta h2, 
    .programs-training h2{
      font-size: 1.2rem;
    }

    .programs-hero p,
    .programs-training p,
    .programs-competitions p,
    .cta p {
      font-size: 1rem;
    }

    
  
    .cta a {
      padding: 0.7rem 1.2rem;
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .programs-competitions li {
      font-size: 1.1rem;
    }

    .programs-hero h1 {
      font-size: 1.3rem;
    }
  
    .programs-hero p,
    .programs-training p,
    .programs-competitions p,
    .cta p {
      font-size: 0.9rem;
    }

    
    .programs-training h2 {
      font-size: 1.2rem;
    }

    .cta a {
      display: inline-block;
      margin-top: 1rem;
      background-color: #0f1a8c;
      color: white;
      padding: 0.8rem 1.5rem;
      text-decoration: none;
      border-radius: 6px;
      transition: background-color 0.3s ease;
      font-size: 1rem;
    }
  }
  