
/* Management Introduction */
.management-intro {
    padding: 3rem 0;
    background: #fff;
    text-align: center;
  }
  
  .intro-text {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .intro-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
  }
  
  /* Management Section */
  .management-section {
    padding: 5rem 0;
    position: relative;
  }
  
  .management-section.bg-light {
    background-color: #f9f9f9;
  }
  
  .section-title-container {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ff7f50);
    border-radius: 2px;
  }
  
  .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .management-profile {
    margin-bottom: 4rem;
  }
  
  .management-profile:last-child {
    margin-bottom: 0;
  }
  
  .profile-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  
  .profile-image img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
  }
  
  .profile-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
    z-index: 1;
  }
  
  .profile-content {
    padding: 1.5rem;
  }
  
  .profile-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .profile-name::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ff7f50);
    border-radius: 2px;
  }
  
  .profile-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  
  .profile-contact {
    margin-top: 1.5rem;
  }
  
  .profile-contact p {
    margin-bottom: 0.5rem;
  }
  
  .profile-contact a {
    color: #ff6b6b;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .profile-contact a:hover {
    color: #ff7f50;
    text-decoration: underline;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .profile-content {
      padding: 1.5rem 0;
      margin-top: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .page-header {
      padding: 3rem 0;
    }
  
    .page-header h1 {
      font-size: 2rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .profile-name {
      font-size: 1.5rem;
    }
  
    .cta-content h2 {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 576px) {
    .intro-text p {
      font-size: 1rem;
    }
  
    .profile-image {
      max-width: 250px;
      margin: 0 auto;
    }
  }
  
  