body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f6fb;
  color: #222;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #232946;
  padding: 1em 2em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: #ffd803;
}

main {
  padding: 0;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #eebfcb 0%, #ffd803 100%);
  padding: 3em 2em 2em 2em;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
.hero-content {
  max-width: 500px;
}
.hero h1 {
  font-size: 2.7em;
  margin-bottom: 0.3em;
}
.highlight {
  color: #232946;
  background: #ffd803;
  padding: 0.1em 0.3em;
  border-radius: 6px;
}
.subtitle {
  font-size: 1.2em;
  color: #232946;
  margin-bottom: 1.5em;
}
.hero-image img {
  max-width: 350px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.cta {
  display: inline-block;
  margin: 1em 0;
  padding: 0.9em 2em;
  background: #232946;
  color: #ffd803;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.15em;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: background 0.2s, color 0.2s;
}
.cta.large {
  font-size: 1.3em;
  padding: 1.1em 2.5em;
}
.cta:hover {
  background: #ffd803;
  color: #232946;
}

.cards-section {
  margin: 3em 2em 0 2em;
}
.cards-section h2 {
  font-size: 1.5em;
  margin-bottom: 1em;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5em;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 1.5em 1em;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
}
.card h3 {
  margin-top: 0;
  color: #232946;
  font-size: 1.15em;
}
.card p {
  color: #555;
  font-size: 1em;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2em 1em;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-image {
    margin-top: 2em;
  }
  .cards-section {
    margin: 2em 1em 0 1em;
  }
}
