* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f0f4ff;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  padding: 14px 24px;
  background-color: rgba(0, 123, 255, 0.1);
  color: #007bff;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #007bff;
}

.logo img {
  height: 39px;
  width: auto;
  margin-left: -1px;
  transform: rotate(-6deg);
  transform-origin: center;
}

.logo span {
  margin-left: -5px;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  background-color: #e0e7ff;
  color: #1a237e;
  padding: 8px 12px;
  border-radius: 6px;
  user-select: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: cornflowerblue;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: indigo;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 30px 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image img {
  width: 280px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-content {
  max-width: 650px;
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #1a73e8;
}

.about-content p {
  text-align: justify;
  font-size: 1.04rem;
}

.team-section {
  padding: 40px 20px;
}

.team-section h2 {
  text-align: center;
  color: #1a73e8;
  margin-bottom: 30px;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.team-member {
  flex: 1 1 220px;
  max-width: 220px;
  text-align: center;
}

.team-member img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}

.team-member p {
  font-weight: 600;
  color: #333;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #1a73e8;
  color: #fff;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #e0e7ff;
    width: 180px;
    display: none;
    padding: 20px 15px;
    border-bottom-left-radius: 10px;
    box-shadow: -4px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 110;
    margin-right: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .about-image img {
    width: 180px;
    margin-bottom: 10px;
  }

  .about-container {
    gap: 15px;
  }

  .team-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
  }

  .team-member {
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .about-content p {
    font-size: 1.06rem;
  }
}