
* {
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f7fa;
  color: #0a1f44;
  line-height: 1.6;
  scroll-behavior: smooth;
}
header {
  background: #0a1f44;
  padding: 1rem 0;
  text-align: center;
}
nav a {
  color: #ffffff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
nav a:hover {
  color: #00b7c2;
}
.hero {
  background: linear-gradient(to right, #00b7c2, #008c9e);
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
  animation: fadeIn 1s ease-in;
}
.hero h1 {
  margin-bottom: 20px;
  font-size: 2.5rem;
}
.hero p {
  margin: 10px auto;
  max-width: 600px;
  font-size: 1.1rem;
}
.contact-info, .team-member {
  background: #ffffff;
  text-align: center;
  padding: 50px 20px;
  margin: 40px auto;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  border-radius: 10px;
  max-width: 1000px;
}
.contact-info h2, .team-member h2 {
  color: #0a1f44;
}
footer {
  background: #0a1f44;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  margin-top: 60px;
}
a {
  color: #00b7c2;
}
a:hover {
  text-decoration: underline;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
