.team-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .team-container {
            max-width: 1360px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .team-member {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            align-items: flex-start;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .team-member:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .member-image {
            width: 200px;
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .member-info {
            flex: 1;
        }

        .member-name {
            font-size: 24px;
            font-weight: bold;
            color: #1e4a72;
            margin-bottom: 5px;
        }

        .member-title {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .member-description {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            text-align: justify;
            
        }

        .member-name-highlight {
           background-color: #fde428;
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: bold;
            color: #000; /* better contrast */
        }
        
        
        @media (max-width: 768px) {
  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .member-image {
    width: 150px;
    height: 180px;
    margin-bottom: 20px;
  }

  .member-info {
    text-align: center;
  }

  .member-description {
    text-align: left; /* keeps readability */
  }
}