body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #fafafd;
  color: #111;
  margin: 0;
  padding: 0;
}

.header {
  background: #7519f5;
  color: white;
  padding: 0.5em 0 0.5em 1em;
  margin-bottom: 40px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.main-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem 2rem 1rem;
}

.hero {
  margin-bottom: 2.5rem;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1.25em;
}
.cta-button {
  padding: 0.7em 1.4em;
  background: #7519f5;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  margin-bottom: 2.5rem;
  transition: background 0.2s;
}
.cta-button:hover {
  background: #5613ad;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 0.5em;
}
.accent-bar {
  width: 9px;
  height: 35px;
  background: #7519f5;
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title {
  font-size: 1.3rem;
  font-weight: 700;
}

.section-content,
.team-description {
  font-size: 0.97rem;
  color: #222;
  margin: 0 0 1.2em 0;
}

.coming-soon-button {
  margin-top: 12px;
  padding: 0.6em 1.2em;
  background: #b2b2b2;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-size: 1em;
  opacity: 0.7;
  cursor: not-allowed;
}

.team-section {
  margin-bottom: 1.5rem;
}
.team-grid {
  display: flex;
  gap: 1.2em;
  flex-wrap: wrap;
}
.team-card {
  flex: 1 1 220px;
  border-radius: 8px;
  padding: 1.15em 1em 1em 1em;
  background: #fff;
  margin-bottom: 0.5em;
  border: 1.5px solid #eee;
}
.visit-button {
  display: inline-block;
  padding: 0.6em 1.4em;
  background: #7519f5;
  color: #fff;
  text-decoration: none;
  border-radius: 22px;
  font-weight: 600;
  font-size: 1em;
  border: none;
  cursor: pointer;
  margin-top: 0.6em;
  transition: background 0.2s;
}
.visit-button:hover {
  background: #5613ad;
}

.footer {
  background: #7519f5;
  color: #fff;
  text-align: center;
  padding: 2.5em 1em 1.2em 1em;
  font-size: 1rem;
}
.footer-quote {
  font-size: 1.15rem;
  margin-bottom: 1em;
  font-style: italic;
  font-weight: 500;
}
.quote-author {
  display: block;
  font-size: 1em;
  font-style: normal;
  margin-top: 0.2em;
  color: #c3fada;
  font-weight: bold;
}
.footer-info {
  font-size: 0.88em;
  opacity: 0.64;
  margin-top: 0.6em;
}
.footer-copyright {
  margin: 0.6em 0 0.1em 0;
  font-size: 0.95em;
  font-weight: 600;
  opacity: 0.9;
}

@media (max-width: 700px) {
  .main-content { max-width: 96vw; }
  .team-grid { flex-direction: column; gap: 1em; }
  .team-card { padding: 1em; }
  .hero-title { font-size: 2rem; }
}
