/* Fonts & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Layout for sticky footer */
html, body {
  height: 100%;
  width: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: #45a29e;
  line-height: 1.6;
  font-size: clamp(16px, 2.5vw, 18px);
  background: linear-gradient(135deg, #0B0C10, #1F2833);
}

/* Header & Navigation */
.header {
  background: #0b0c10;
  padding: clamp(0.5rem, 2vw, 1rem) 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
}
.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: clamp(1rem, 3vw, 2rem);
}
.nav-link {
  color: #45a29e;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 2vw, 16px);
  transition: color 0.3s;
}
.nav-link:hover {
  color: #FFC107;
  text-decoration: underline;
}
.nav-active {
  color: #66fcf1;
  border-bottom: 2px solid #FF8C00;
}

/* Content Sections */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.content {
  max-width: 800px;
  margin: clamp(1rem, 3vw, 2rem) auto;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
}
.content h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #66fcf1;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}
.content p {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

/* Team Member */
.team-member {
  border-radius: 12px;
  padding: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-left: 4px solid #585CA6;
}
.team-member h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: #66fcf1;
  margin-bottom: clamp(0.3rem, 1vw, 0.5rem);
}
.team-member p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #FFC107;;
}

/* Footer */
.footer {
  text-align: center;
  padding: clamp(1rem, 3vw, 2rem) clamp(0.5rem, 2vw, 1rem);
  background: #0b0c10;
  color: #66fcf1;
  font-size: clamp(14px, 2vw, 16px);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-list {
    flex-direction: column;
    gap: clamp(0.5rem, 2vw, 1rem);
  }
  .content h2 {
    font-size: clamp(1.3rem, 3.5vw, 1.75rem);
  }
  .team-member h3 {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
  }
}
@media (max-width: 480px) {
  .content {
    padding: clamp(0.3rem, 1.5vw, 0.5rem);
  }
  .team-member {
    padding: clamp(0.8rem, 1.5vw, 1rem);
  }
}