/* Advisors Hero Section */
.advisor-hero {
    background: linear-gradient(to bottom right, #001f3f, #004080, #0059b3);
    color: white;
    padding: 60px 20px;
    text-align: center;
  }
  
  .advisor-hero h1 {
    font-family: 'Abril Fatface', cursive;
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .advisor-hero p {
    font-size: 18px;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .advisor-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
  }
  
  
  /* Profile Layout */
  .advisor-profiles {
    /* padding: 80px 20px; */
    background-color: #f8f9fa;
  }
  
  .advisor-profile {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    /* max-width: 1100px; */
    margin: 0 auto 80px auto;
    align-items: flex-start;
  }
  
  .advisor-section {
    width: 100%;
    margin: 0;
    padding: 80px 20px;
  }
  
  
  .advisor-section.light {
    background-color: #f8f9fa;
  }
  
  .advisor-section.dark {
    background-color: #ffffff;
  }
  
  .advisor-photo {
    flex: 1 1 300px;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }
  
  .advisor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .advisor-bio {
    flex: 2 1 600px;
    max-width: 800px;
  }
  
  .advisor-bio h2 {
    font-family: 'Abril Fatface', cursive;
    font-size: 32px;
    color: #001f3f;
    margin-bottom: 20px;
  }
  
  .advisor-bio p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    font-weight: 300;
  }
  
  
  /* Responsive */
  @media (max-width: 768px) {
    .advisor-profile {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }
  
    .advisor-bio {
      text-align: left;
    }
  }
  