body {
  font-family: 'Segoe UI', sans-serif;
  background: #f0f2f5;
  color: #333;
  margin: 0;
  padding: 0;
}

main {
  max-width: 1100px;
  margin: 30px auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
}

h1, h2, h3 {
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 20px;
}

section {
  margin-bottom: 50px;
}

ul {
  padding-left: 25px;
  font-size: 17px;
}

a.button, .btn {
  background: #1a237e;
  color: white !important;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
  transition: background 0.3s ease;
}

a.button:hover, .btn:hover {
  background: #303f9f;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Reusable card box */
.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

/* TEAM LIST STYLING */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 30px;
}

.team-card {
  background: #fff;
  width: 250px;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #1a237e;
}

.team-card .role {
  font-weight: bold;
  color: #444;
  margin-bottom: 5px;
}

.team-card .phone {
  font-size: 14px;
  color: #666;
}

/* Responsive tweaks */
@media screen and (max-width: 768px) {
  main {
    padding: 20px 15px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  .btn {
    padding: 8px 16px;
  }

  .team-grid {
    gap: 15px;
  }

  .team-card {
    width: 100%;
    max-width: 300px;
  }
}
.aiwja-inner-header {
  background: #ffffff;
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 10;
}

.inner-header-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-logo img {
  height: 50px;
  max-width: 100%;
}

.header-title h1 {
  font-size: 24px;
  margin: 0;
  color: #1a237e;
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
  .inner-header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-title h1 {
    font-size: 20px;
  }

  .header-logo img {
    height: 40px;
  }
}
.aiwja-inner-header {
  background: #ffffff;
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 10;
}

.inner-header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.header-logo img {
  height: 60px;
}

.header-title h1 {
  font-size: 22px;
  margin: 0;
  color: #1a237e;
  font-weight: bold;
}

.header-menu {
  display: flex;
  gap: 20px;
}

.header-menu a {
  text-decoration: none;
  color: #1a237e;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s ease;
}

.header-menu a:hover {
  color: #d32f2f;
}

@media screen and (max-width: 768px) {
  .inner-header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-menu {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .header-logo img {
    height: 50px;
  }

  .header-title h1 {
    font-size: 18px;
  }
}
.team-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.team-filter-btn {
  background-color: #1a237e;
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.team-filter-btn:hover {
  background-color: #303f9f;
}
