

body {
  background: #131313;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header, footer {
  background: #111;
  color: #00b3b3;
  padding: 2.5rem 0 1.5rem 0;
  text-align: center;
  border: none;
  box-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #00b3b3;
  margin-top: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

section {
  padding: 1.5rem 0 1.5rem 0;
  max-width: 700px;
  margin: 0 auto;
  background: none;
  border-radius: 0;
  margin-bottom: 0.5rem;
  box-shadow: none;
  border: none;
}

ul, p {
  margin: 0.5rem 0 1rem 0;
  line-height: 1.7;
}

.team {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  background: none;
  box-shadow: none;
}
.team-member {
  background: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
  width: 160px;
  color: #fff;
  box-shadow: none;
}
.team-member img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
  border: 2px solid #00b3b3;
}
.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  background: none;
  box-shadow: none;
}
.partner-logo {
  height: 36px;
  background: none;
  color: #00b3b3;
  border-radius: 0;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  font-weight: 500;
  border: 1px solid #00b3b3;
}
.cta {
  text-align: center;
  margin: 2rem 0 1rem 0;
}
.btn {
  display: inline-block;
  background: #00b3b3;
  color: #131313;
  padding: 0.7rem 1.7rem;
  border-radius: 4px;
  font-weight: 600;
  margin: 0.5rem 0.3rem;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  transition: background 0.2s, color 0.2s;
  box-shadow: none;
}
.btn:hover {
  background: #fff;
  color: #131313;
}
footer {
  font-size: 0.95rem;
  color: #aaa;
  background: #111;
  border-top: 1px solid #00b3b3;
  box-shadow: none;
}
.quick-links a {
  color: #00b3b3;
  margin: 0 0.5rem;
  font-size: 0.95rem;
}
.quick-links a:hover {
  color: #fff;
}
hr {
  border: none;
  border-top: 1px solid #222;
  margin: 2rem 0;
}
