/* mentors.css */

/* Fonts are already linked in HTML */
body {
    margin: 0;
    padding: 0;
    font-family: 'Lexend', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
  }
  .header-container {
    background-color: #0d141f;
    }
  
  /* Sections */
  .story-content {
    padding: 60px 20px;
    margin-top: 40px;
    background-color: #ffffff;
    color: #24487f;
  }
  
  .story-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .story-text {
    flex: 1 1 600px;
  }
  
  .story-text h2 {
    font-size: 42px;
    font-family: 'EB Garamond', serif;
    margin-bottom: 20px;
    color: #24487f;
  }
  
  .story-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #24487f;
  }
  
  .story-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
  }
  
  .story-image img {
    max-width: 100%;
    border-radius: 10px;
    height: 380px;
    object-fit: cover;
    margin-top: 40px;
  }
  
  /* Requirements Section */
  .background-content {
    padding: 60px 20px;
    background-color: #142a4a;
    color: #ffffff;
  }
  
  .background-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .background-text {
    flex: 1 1 800px;
  }
  
  .background-text h2 {
    font-size: 42px;
    font-family: 'EB Garamond', serif;
    margin-bottom: 20px;
  }
  
  .background-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #ececec;
  }
  
  /* Application Section */
  .impact-content {
    padding: 60px 20px;
    background-color: #ffffff;
    color: #fbbd48;
  }
  
  .impact-flex {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .impact-text {
    flex: 1 1 800px;
  }
  
  .impact-text h2 {
    font-size: 42px;
    font-family: 'EB Garamond', serif;
    margin-bottom: 20px;
    color: #24487f;
  }
  
  .impact-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #24487f;
  }
  footer {
    background-color: #172842;
    margin-top: -50px;
  }
  .footer-container {
      background-color: #172842;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .story-flex,
    .background-flex,
    .impact-flex {
      flex-direction: column;
      text-align: center;
    }
  
    .story-image img {
      height: auto;
      max-height: 300px;
    }
  
    .footer-container {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
    .background-text {
      margin-bottom: -370px;
    }
    .impact-text {
      max-height: 370px;
    }
    
  }
  .alumni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  .alumni-box {
    background-color: #ffffff;
    border: 2px solid #fbbd48;
    padding: 20px;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #24487f;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  