body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #111;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
  font-weight: bold;
  background: white;
}

.logo {
  font-size: 20px;
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #333;
}

nav a:hover {
  color: #ff4fa3;
}

/* HERO */
.hero {
  padding: 100px 8%;
  background: linear-gradient(to right, #ffffff, #ffe4ef);
}

.tagline {
  color: #ff4fa3;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 48px;
  max-width: 700px;
  margin: 15px 0;
  line-height: 1.2;
}

.hero-text {
  max-width: 560px;
  color: #555;
  line-height: 1.6;
}

/* BUTTONS */
button {
  background: linear-gradient(to right, #ff4fa3, #ff7ab8);
  border: none;
  padding: 14px 24px;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
  font-weight: bold;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 79, 163, 0.35);
}

/* SECTIONS */
.section {
  padding: 75px 8%;
  text-align: center;
}

.section h2 {
  font-size: 34px;
  margin-bottom: 35px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 18px;
  width: 270px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(255, 79, 163, 0.25);
}

.card p {
  color: #555;
  line-height: 1.5;
}

.price {
  color: #ff4fa3;
  font-size: 24px;
  font-weight: bold;
}

/* ABOUT */
.about-text {
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
  color: #444;
  font-size: 17px;
}

/* CONTACT */
.contact {
  background: #111;
  color: white;
  padding: 75px 8%;
  text-align: center;
}

.contact p {
  color: #ddd;
}

form {
  max-width: 520px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact input,
.contact textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-size: 15px;
  font-family: Arial, sans-serif;
}

.contact textarea {
  min-height: 140px;
  resize: vertical;
}

.email-link {
  color: #ff4fa3;
  text-decoration: none;
  font-weight: bold;
}

.email-link:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  font-size: 14px;
  color: #777;
  background: white;
}

/* MOBILE FIXES */
@media (max-width: 700px) {
  header {
    flex-direction: column;
    gap: 15px;
    padding: 20px 6%;
    text-align: center;
  }

  nav a {
    margin: 0 8px;
    font-size: 14px;
  }

  .hero {
    padding: 70px 6%;
    text-align: left;
  }

  .tagline {
    font-size: 13px;
    letter-spacing: 0.8px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.25;
  }

  .hero-text {
    font-size: 16px;
  }

  button {
    width: 100%;
    max-width: 280px;
  }

  .section {
    padding: 60px 6%;
  }

  .section h2 {
    font-size: 30px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 330px;
    box-sizing: border-box;
  }

  .about-text {
    font-size: 16px;
  }

  .contact {
    padding: 65px 6%;
  }

  form {
    max-width: 100%;
  }

  .contact input,
  .contact textarea {
    font-size: 15px;
  }

  .email-link {
    word-break: break-word;
  }
}

