body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f3f6fa;
      margin: 0;
      padding: 40px 0;
    }

    h1 {
      text-align: center;
      color: #333;
      margin-bottom: 40px;
    }

    .team-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      padding: 0 20px;
    }

    .member-card {
      background-color: #fff;
      width: 220px;
      text-align: center;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 20px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .member-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

    .member-card img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
      border: 3px solid #009688;
    }

    .member-name {
      font-size: 18px;
      font-weight: 600;
      color: #333;
      margin-bottom: 5px;
    }

    .member-position {
      font-size: 15px;
      color: #777;
    }

    /* Responsive Design */
    @media (max-width: 600px) {
      .member-card {
        width: 80%;
      }
    }
	
	
	  table {
      width: 90%;
      max-width: 900px;
      margin: auto;
      border-collapse: collapse;
      background: #fff;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      overflow: hidden;
    }

    thead {
      background-color: #007b83;
      color: white;
    }

    th, td {
      padding: 14px 18px;
      text-align: left;
      border-bottom: 1px solid #ddd;
      font-size: 17px;
    }

    tbody tr:hover {
      background-color: #f0fafa;
    }

    th {
      font-size: 18px;
    }

    td {
      color: #333;
    }

    @media (max-width: 600px) {
      table, thead, tbody, th, td, tr {
        display: block;
      }

      thead {
        display: none;
      }

      tr {
        background: #fff;
        margin-bottom: 15px;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      }

      td {
        padding: 10px 10px 10px 50%;
        position: relative;
        text-align: right;
      }

      td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        text-align: left;
        font-weight: bold;
        color: #007b83;
      }
    }