body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #FFFFFF;
  color: #111827;
}

header {
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5E7EB;
}

header .logo {
  height: 25px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #6B7280;
  font-weight: 500;
}

.hero {
  padding: 100px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto;
}

.ecosystem {
  padding: 60px 20px;
  text-align: center;
}

.ecosystem h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1C355E;
}

.carousel {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.carousel img {
  width: 120px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.carousel img:hover {
  filter: grayscale(0%);
}

.contact {
  padding: 40px 20px;
  text-align: center;
}

.contact a {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1C355E;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.contact a:hover {
  background-color: #8B5CF6;
}

footer {
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: #6B7280;
  border-top: 1px solid #E5E7EB;
  margin-top: 40px;
}
