.hero-section {
  padding: 6rem 5%;
  text-align: center;
  background: radial-gradient(circle at center, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text-main);
}

.subtitle {
  font-size: 1.4rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.team-features {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(2, 132, 199, 0.2);
  margin-bottom: 2rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.team-features h3 {
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.team-features ul {
  list-style-position: inside;
  color: var(--text-muted);
}

.team-features li {
  margin-bottom: 0.5rem;
}

.highlight-text {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.highlight-note {
  color: #b91c1c;
  font-weight: bold;
}

.cta-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all var(--transition-speed);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
