@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #f7f7f7;
  color: #222;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 60px 0 60px;
  background: #fff;
}
.logo {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 1px;
}
.nav {
  display: flex;
  gap: 36px;
}
.nav a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}
.nav a:hover {
  color: #b6ff3b;
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 60px 0 60px;
  background: #fff;
}
.hero-content {
  max-width: 500px;
}
.hero-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero-desc {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 30px;
}
.hero-cta {
  background: #b6ff3b;
  color: #222;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 14px 36px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-cta:hover {
  background: #eaffb6;
}
.hero-card {
  background: #222;
  color: #fff;
  border-radius: 18px;
  padding: 32px 36px;
  min-width: 260px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-size: 1.2rem;
  margin-left: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.stats {
  display: flex;
  gap: 40px;
  padding: 40px 60px 0 60px;
}
.stat {
  background: #fff;
  border-radius: 16px;
  padding: 24px 32px;
  min-width: 160px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.stat-title {
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 8px;
}
.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #b6ff3b;
}
.services {
  background: #f3f7f0;
  border-radius: 24px;
  margin: 40px 60px 0 60px;
  padding: 36px 0 36px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 18px;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
}
.section {
  margin: 60px 60px 0 60px;
}
.section-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.section-content {
  display: flex;
  gap: 32px;
}
.section-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  flex: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.section-card-desc {
  color: #555;
  font-size: 1rem;
}
.footer {
  background: #fff;
  padding: 32px 60px;
  margin-top: 60px;
  text-align: center;
  color: #888;
  font-size: 1rem;
  border-top: 1px solid #eee;
}
@media (max-width: 1100px) {
  .hero, .stats, .section, .services {
    flex-direction: column;
    padding: 24px;
    margin: 0 0 0 0;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .header, .hero, .stats, .section, .services, .footer {
    padding: 12px !important;
    margin: 0 !important;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}
