
  :root {
    --primary-color: #16a085;
    --accent-color: #16a085;
    --text-dark: #2c3e50;
    --gradient-primary: linear-gradient(135deg, #16a085 0%, #264db9d5 100%);
    --gradient-secondary: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    --modal-bg: rgba(22,34,44,0.9);
    --card-shadow: 0 8px 32px rgba(22,160,133,0.10);
  }

  /* Reset and Base Styles */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #e2f7fa 0%, #f8fafc 100%);
  }

  /* Management Section */
  .management {
    padding: 2rem 1rem;
    min-height: 100vh;
  }

  .management h1 {
    font-size: clamp(2rem, 6vw, 2.7rem);
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
  }

  /* Card Container */
  .card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  /* Individual Cards */
  .card {
    background: rgba(255,255,255,0.95);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1.5px solid rgba(22,160,133,0.08);
    animation: fadeInUp 0.8s cubic-bezier(0.4,0,0.2,1);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .card:hover {
    box-shadow: 0 16px 48px rgba(22,160,133,0.18);
    transform: translateY(-8px);
  }

  .cards {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(22,160,133,0.10);
    background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
    background-size: 200% 100%;
  }

  .cards img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 10px;
    display: block;
  }

  .card:hover .cards img {
    transform: scale(1.05);
  }

  .card h3 {
    margin: 1rem 0 0.5rem;
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
  }

  .card p {
    margin: 0.5rem 0 1rem;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: var(--text-dark);
  }

  .card button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 16px;
    cursor: pointer;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(22,160,133,0.10);
    transition: all 0.3s ease;
    margin: 1rem auto;
    min-height: 44px;
    width: 100%;
    max-width: 200px;
  }

  .card button:hover,
  .card button:focus {
    background: var(--accent-color);
    transform: scale(1.05);
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }

  /* Social Icons */
  .social-icons {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.5rem 0;
  }

  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--primary-color);
    font-size: 1.3rem;
    background: var(--gradient-secondary);
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 1px 8px rgba(22,160,133,0.08);
    transition: all 0.3s ease;
  }

  .social-icons a:hover,
  .social-icons a:focus {
    transform: scale(1.1);
    color: #fff;
    background: var(--gradient-primary);
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }

  /* Modal Styling */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--modal-bg);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
  }

  .modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 24px;
    width: 100%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 8px 32px rgba(22,160,133,0.18);
    animation: fadeInUp 0.3s ease-out;
    margin: auto;
  }

  /* Team Modal Specific Styles */
  .team-modal-content {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    font-family: 'Inter', sans-serif;
    max-width: 95vw;
    padding: 1rem;
  }

  .team-modal-left {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 1rem;
  }

  .team-modal-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(22,160,133,0.12);
    margin-bottom: 1rem;
    background: #fff;
  }

  .team-modal-social {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.7rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .team-modal-right {
    flex: 1;
    overflow-y: auto;
    max-height: 70vh;
    padding-right: 1rem;
  }

  .team-modal-name {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
  }

  .team-modal-role {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--accent-color);
    margin: 0.5rem 0 1rem;
    font-weight: 600;
  }

  .team-modal-bio {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
    color: var(--text-dark);
    text-align: justify;
    margin: 10px 0;
  }

  .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    background: var(--gradient-primary);
    border-radius: 50%;
    padding: 0.5rem;
    box-shadow: 0 2px 12px rgba(22,160,133,0.12);
    z-index: 10;
    transition: all 0.3s ease;
    border: none;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .close-btn:hover {
    background: var(--accent-color);
    transform: rotate(90deg);
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Responsive Breakpoints */
  @media (max-width: 768px) {
    .card-container {
      gap: 1.5rem;
      padding: 0 0.5rem;
    }

    .team-modal-content {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      padding: 0.5rem;
    }

    .team-modal-left {
      flex-direction: row;
      gap: 1rem;
      align-items: flex-start;
      justify-content: center;
      padding-left: 0;
      flex: 1 1 100%;
      width: 100%;
    }

    .team-modal-img {
      width: 120px;
      height: 120px;
    }

    .team-modal-right {
      max-height: 60vh;
      padding-right: 0;
    }

    .modal-content {
      padding: 1rem;
      max-height: 90vh;
    }
  }

  @media (max-width: 480px) {
    .management {
      padding: 1rem 0.5rem;
    }

    .card-container {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .card {
      margin: 0;
      padding: 1rem;
    }

    .cards {
      aspect-ratio: 4/3;
    }

    .team-modal-content {
      padding: 0.25rem;
    }

    .team-modal-img {
      width: 100px;
      height: 100px;
    }

    .team-modal-right {
      max-height: 50vh;
    }

    .close-btn {
      top: 0.5rem;
      right: 0.5rem;
      width: 2.5rem;
      height: 2.5rem;
      font-size: 1.2rem;
    }
  }

  /* Accessibility Improvements */
  @media (prefers-contrast: high) {
    .card {
      border: 2px solid var(--primary-color);
    }
    
    .social-icons a {
      border: 1px solid var(--primary-color);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    * {
      animation: none !important;
      transition: none !important;
    }
  }

  /* Focus styles for accessibility */
  button:focus-visible,
  a:focus-visible,
  .close-btn:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
  }

  /* Word breaking for long text */
  .team-modal-name,
  .team-modal-role,
  .team-modal-bio,
  .card h3,
  .card p {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
