* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  color: #2d2d2d;
  background: #fff5f8;
  line-height: 1.6;
}
.header {
  background: #fff;
  padding: 16px 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 40px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: #2d2d2d;
  text-decoration: none;
  font-weight: 500;
}
.nav-links a:hover {
  color: #e91e8c;
}
.nav-links .cta {
  background: #e91e8c;
  color: #fff;
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 600;
}
.nav-links .cta:hover {
  background: #d8157e;
}
.hero {
  background: linear-gradient(135deg, rgba(233,30,140,0.05), rgba(156,39,176,0.05));
  padding: 80px 32px;
  text-align: center;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #e91e8c, #9c27b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 20px;
  color: #666;
  margin-bottom: 32px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.button-primary {
  background: #e91e8c;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 12px rgba(233,30,140,0.15);
  transition: all 0.2s ease;
}
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233,30,140,0.25);
}
.button-secondary {
  background: #fff;
  color: #e91e8c;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border: 2px solid #e91e8c;
  transition: all 0.2s ease;
}
.button-secondary:hover {
  background: rgba(233,30,140,0.05);
}
.services {
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.services h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  margin-bottom: 48px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.service-card {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(233,30,140,0.15);
  text-align: left;
  transition: all 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(233,30,140,0.25);
}
.service-card .service-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  margin-bottom: 12px;
}
.service-card p {
  color: #666;
  margin-bottom: 16px;
}
.service-card a {
  color: #e91e8c;
  text-decoration: none;
  font-weight: 600;
}
.service-card a:hover {
  text-decoration: underline;
}
.stats {
  background: linear-gradient(135deg, #e91e8c, #9c27b0);
  padding: 64px 32px;
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  color: #fff;
}
.stat .stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
}
.stat .stat-label {
  font-size: 14px;
  opacity: 0.9;
}
.cta-section {
  padding: 80px 32px;
  text-align: center;
  background: #fff;
}
.cta-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
}
.footer {
  background: #2d2d2d;
  color: #fff;
  padding: 64px 32px 32px;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
}
.footer-brand img {
  height: 32px;
  margin-bottom: 16px;
}
.footer-brand p {
  color: #999;
  font-size: 14px;
}
.footer-links h4 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 16px;
  font-size: 16px;
}
.footer-links a {
  display: block;
  color: #999;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid #444;
  text-align: center;
}
.footer-bottom p {
  color: #666;
  font-size: 14px;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .stats {
    gap: 32px;
  }
  .stat .stat-number {
    font-size: 32px;
  }
  .nav {
    flex-direction: column;
    gap: 16px;
  }
  .nav-links {
    gap: 16px;
  }
}
