/* Theme Colors */
:root {
  --primary: #39ad68;
  --secondary: #ffffff;
  --dark: #222;
  --light: #f9f9f9;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  color: white;
}
.hero-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-text h1 {
  font-size: 2.5rem;
  margin: 0;
  color: white;
}
.hero-text p {
  font-size: 1.2rem;
}

/* Content Section */
.content {
  padding: 2rem 10%;
}
.content h2 {
  color: var(--primary);
}

/* Services */
.services {
  padding: 2rem 10%;
  background: white;
}
.services h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--light);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: center;
}
.service-card img {
  width: 100%;
  border-radius: 10px;
}
.service-card h3 {
  color: var(--primary);
  margin: 1rem 0 0.5rem;
}

/* CTA Section */
.cta {
  text-align: center;
  background: var(--primary);
  color: white;
  padding: 2rem 1rem;
}
.cta .btn {
  display: inline-block;
  margin-top: 1rem;
  background: white;
  color: var(--primary);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.cta .btn:hover {
  background: #2e8751;
  color: white;
}
