* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #dec894;
  background-color: #fff0f6;
}
.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 2rem 0;
}
.hero {
  background-image: url(ban.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffd0b7;
  text-align: center;
  padding: 4rem 2rem;
}
.hero h1 {
  font-size: 3rem;
}
.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.2rem;
  background-color: #ffe5e4;
  color: #d63384;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.about,
.services,
.contact {
  background-color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}
h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.card {
  background: rgb(255, 240, 246);
  color: #cc3366;
  border-radius: 8px;
  padding: 1.2rem;
  box-shadow: 0 4px 10px rgba(255, 105, 180, 0.2);
}

.card span {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #e1c27a;
}

.images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.images-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
}
.images-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.social-icons a {
  color: #ffd0b7;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #ffd0b7;
  color: white;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .service-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
/* Tablet View (2 columns) */
@media (max-width: 900px) {
  .images-card {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile View (1 column) */
@media (max-width: 600px) {
  .images-card {
    grid-template-columns: 1fr;
  }
}
