body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #fdfdfd;
  color: #333;
}

header {
  background: #1e1e2f;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

nav a.active {
  font-weight: bold;
  text-decoration: underline;
}
/* ===== Services Hero ===== */
.services-hero {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.services-hero h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #d76594;
}

.services-hero p {
  font-size: 1.1em;
  color: #555;
}

/* ===== Services Cards ===== */
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}

.services-cards .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.services-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.services-cards .card i {
  font-size: 2.5em;
  color: #c97b9b;
  margin-bottom: 15px;
}

.services-cards .card h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.services-cards .card p {
  font-size: 0.95em;
  color: #555;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.testimonials h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #d76594;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial p {
  font-style: italic;
  color: #555;
}

.testimonial h4 {
  margin-top: 15px;
  font-weight: bold;
  color: #c97b9b;
}

/* ===== Call-to-Action ===== */
.cta {
  text-align: center;
  padding: 60px 20px;
  background: #c97b9b;
  color: #fff;
}

.cta h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.cta .btn {
  display: inline-block;
  padding: 12px 25px;
  background: #fff;
  color: #c97b9b;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.cta .btn:hover {
  background: #c97b9b;
  color: #fff;
}


footer {
  text-align: center;
  padding: 1rem;
  background: #1e1e2f;
  color: #fff;
  margin-top: 2rem;
}