* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", sans-serif;
}

body {
  background: #fff;
  color: #222;
  line-height: 1.6;
}

header {
  background: #ffe6f0;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  color: #d63384;
}

nav a {
  margin-left: 1.2rem;
  text-decoration: none;
  color: #d63384;
  font-weight: 500;
}

.hero {
  background: url(images/pexels-asadphoto-1654834.jpg) no-repeat center/cover;
  color: white;
  text-align: center;
  padding: 6rem 2rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.btn {
  background: #d63384;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
  display: inline-block;
}

.services {
  padding: 4rem 2rem;
  background: #fff0f5;
}

.services h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonials {
  padding: 3rem 2rem;
  background: #fce4ec;
  text-align: center;
}

blockquote {
  font-style: italic;
  margin-bottom: 1rem;
}

.contact {
  background: #ffe6f0;
  padding: 4rem 2rem;
  text-align: center;
}

footer {
  padding: 2rem;
  text-align: center;
  background: #fff0f5;
}

.socials a {
  margin: 0 0.5rem;
  color: #d63384;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero h2 {
    font-size: 2rem;
  }
}
