* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}

.theme-3 {
  --accent: #10b981;
  --accent-dark: #059669;
  --text-primary: #1a1a1a;
  --text-secondary: #6b7280;
  --bg-light: #f9fafb;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.navigation {
  background: white;
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: var(--accent);
}

.hero-area {
  padding: 120px 0;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  text-align: center;
}

.hero-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.main-heading {
  font-size: 54px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.15;
}

.main-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.primary-btn {
  display: inline-block;
  padding: 16px 48px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
}

.primary-btn:hover {
  background: var(--accent-dark);
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.3);
}

.services-section {
  padding: 100px 0;
  background: white;
}

.section-heading {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
  color: var(--text-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-box {
  padding: 40px 32px;
  background: var(--bg-light);
  border-radius: 16px;
  border-left: 4px solid var(--accent);
  transition: transform 0.3s;
}

.service-box:hover {
  transform: translateX(8px);
}

.service-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-box h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-box p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.process-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 32px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.step h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step p {
  color: var(--text-secondary);
  font-size: 15px;
}

.arrow {
  font-size: 32px;
  color: var(--accent);
  font-weight: 700;
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 20px;
  opacity: 0.9;
}

.site-footer {
  background: var(--text-primary);
  color: white;
  padding: 32px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 36px;
  }

  .nav-menu {
    gap: 16px;
    font-size: 14px;
  }

  .arrow {
    display: none;
  }

  .process-steps {
    flex-direction: column;
  }
}
