body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #333;
}

/* Hero section */
.hero {
  position: relative;
  text-align: center;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Centered logo overlay in hero */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-logo {
  width: 150px;
  display: block;
  margin: 0 auto;
  animation: fadeIn 2s ease-in-out;
}

/* Fade-in animation for logo */
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -60%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

/* Services section */
.services {
  padding: 40px 20px;
  text-align: center;
}

.services h2 {
  margin-bottom: 20px;
  font-size: 1.8em;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Service cards styled like Instagram story size */
.service-card {
  width: 300px;
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect: zoom + shadow */
.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.service-card img {
  width: 100%;
  height: 500px; /* Instagram story style vertical rectangle */
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Image zoom on hover */
.service-card:hover img {
  transform: scale(1.08);
}

.service-card h3 {
  margin: 10px;
  font-size: 1.2em;
}

.service-card p {
  margin: 0 10px 20px;
  font-size: 0.95em;
  color: #555;
}

/* Contact section */
.contact {
  padding: 40px 20px;
  text-align: center;
  background: #f8f0f5;
}

.contact h2 {
  margin-bottom: 10px;
}

.contact p {
  margin-bottom: 20px;
  color: #555;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

form button {
  background: #d46a92;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.3s ease;
}

form button:hover {
  background: #b94f78;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #f8f0f5;
}
