 body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
      background: #f8f9fc;
      color: #333;
    }

     /* Header */
    header {
      background-color: #16243D;
      padding: 15px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: white;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    header h1 {
      margin: 0;
      font-size: 1.4rem;
      color: white;
    }

    nav {
      display: flex;
      gap: 25px;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: #4a90e2;
    }

    /* Hamburger Button */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: white;
      border-radius: 2px;
    }

    /* Footer */
    footer {
      background-color: #16243D;
      color: white;
      text-align: center;
      padding: 25px 10px;
      margin-top: 50px;
    }

    footer p {
      margin: 8px 0;
      font-size: 0.95rem;
    }

    footer a {
      color: #4a90e2;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    h1 {
      text-align: center;
      margin: 30px 0 10px;
      font-size: 2.8rem;
      color: #1a237e;
    }

    p.subtitle {
      text-align: center;
      font-size: 1.1rem;
      margin-bottom: 40px;
      color: #555;
    }

    .team-section {
      width: 95%;
      max-width: 1300px;
      margin: auto;
      padding-bottom: 50px;
    }

    /* CEO Card */
    .ceo-card {
      text-align: center;
      margin-bottom: 70px;
    }

    .ceo-card img {
      width: 220px;
      height: 220px;
      border-radius: 50%;
      object-fit: cover;
      border: 6px solid #4a90e2;
      box-shadow: 0px 6px 16px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }

    .ceo-card img:hover {
      transform: scale(1.07);
    }

    .ceo-card h2 {
      margin-top: 20px;
      font-size: 1.8rem;
      color: #222;
    }

    .ceo-card p {
      font-size: 1.1rem;
      color: #666;
    }

    /* Team Grid */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 35px;
    }

    .team-member {
      background: white;
      padding: 25px 20px;
      border-radius: 18px;
      text-align: center;
      box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .team-member:hover {
      transform: translateY(-10px);
      box-shadow: 0px 10px 22px rgba(0,0,0,0.18);
    }

    .team-member img {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #4a90e2;
      margin-bottom: 15px;
    }

    .team-member h3 {
      font-size: 1.3rem;
      margin: 12px 0 6px;
      color: #222;
    }

    .team-member p {
      font-size: 1rem;
      color: #555;
      margin-bottom: 12px;
    }

    .team-member a {
      display: inline-block;
      padding: 8px 16px;
      background: #4a90e2;
      color: white;
      text-decoration: none;
      font-size: 0.95rem;
      border-radius: 8px;
      transition: background 0.3s ease;
    }

    .team-member a:hover {
      background: #1a237e;
    }

     /* Mobile Menu */
    @media (max-width: 768px) {
      nav {
        display: none;
        flex-direction: column;
        background: #16243D;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 15px;
        border-radius: 0 0 0 10px;
      }

      nav.show {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }
    }
