.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6a5acd;
    margin-bottom: 0.5rem;
  }
  
  .title-underline {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, #ecebfd 0%, #6a5acd 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
  }
  
  /* Content Card */
  .content-card {
    border-top: 5px solid #ecebfd;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(236, 235, 253, 0.5) !important;
    position: relative;
    overflow: hidden;
  }
  
  .content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(236, 235, 253, 0.7) !important;
  }
  
  .content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(236, 235, 253, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
  }
  
  /* Leadership Quote */
  .quote-container {
    text-align: center;
    position: relative;
    padding: 0 2rem;
  }
  
  .quote-icon {
    color: #ecebfd;
    font-size: 2.5rem;
    opacity: 0.7;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .leadership-quote {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 500;
    color: #6a5acd;
  }
  
  /* Leadership Image */
  .leadership-image-container {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .leadership-image {
    transition: transform 0.5s ease;
  }
  
  .content-card:hover .leadership-image {
    transform: scale(1.03);
  }
  
  /* Typography */
  .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #555;
    line-height: 1.8;
  }
  
  .content-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
  }
  
  /* Leadership Icons */
  .leadership-icons {
    padding: 2rem 0;
  }
  
  .icon-container {
    width: 70px;
    height: 70px;
    background-color: #ecebfd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: #6a5acd;
    transition: all 0.3s ease;
  }
  
  .icon-container:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #6a5acd;
    color: white;
    box-shadow: 0 5px 15px rgba(106, 90, 205, 0.3);
  }
  
  .icon-title {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
  }
  
  /* Leadership CTA */
  .leadership-cta {
    background-color: #ecebfd;
    margin-top: 2rem;
    transition: all 0.3s ease;
  }
  
  .leadership-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(106, 90, 205, 0.2);
  }
  
  .btn-primary {
    background-color: #6a5acd;
    border-color: #6a5acd;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #5a4abf;
    border-color: #5a4abf;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 90, 205, 0.4);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    
    .lead {
      font-size: 1.15rem;
    }
    
    .content-text {
      font-size: 1rem;
    }
    
    .content-card {
      padding: 2rem !important;
    }
    
    .leadership-quote {
      font-size: 1.2rem;
    }
    
    .icon-container {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
    }
  }