* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

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

.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.hero {
  background: linear-gradient(135deg, #ffb6d5, #ffd6e7);
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.intro {
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.primary {
  background: #ff4da6;
  color: white;
}

.primary:hover {
  background: #e63c91;
}

.secondary {
  background: white;
  color: #ff4da6;
  border: 2px solid #ff4da6;
}

.secondary:hover {
  background: #ff4da6;
  color: white;
}

/* SERVICES GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

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

.card h3 {
  margin-bottom: 10px;
}

.card strong {
  display: block;
  margin-top: 10px;
  color: #ff4da6;
}

/* WHY SECTION */
.why ul {
  list-style: none;
  margin-top: 20px;
}

.why li {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

/* CONTACT */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.contact button {
  background: #ff4da6;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.contact button:hover {
  background: #e63c91;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  background: #f8f8f8;
  margin-top: 40px;
}

/* WHATSAPP BUTTON */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.info-box ul {
  list-style: none;
  margin-top: 15px;
}

.info-box li {
  margin-bottom: 10px;
}