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

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

header {
  text-align: center;
  padding: 40px 20px;
  background-color: #ffe6f2;
  border-radius: 20px;
  margin-bottom: 40px;
}

header h1 {
  color: #ff3f81;
  font-size: 2.5rem;
}

header h2 {
  color: #444;
  font-weight: 400;
}

section {
  margin-bottom: 40px;
  background: #fff7fa;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255, 63, 129, 0.1);
}

section h2 {
  color: #ff3f81;
  margin-bottom: 15px;
}

ul {
  list-style: disc inside;
  margin-left: 15px;
}

a.highlight-link {
  color: #ff3f81;
  font-weight: bold;
  text-decoration: underline;
  transition: 0.3s;
}

a.highlight-link:hover {
  color: #ff007f;
}

footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 2px solid #ff3f81;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  header h1 {
    font-size: 2rem;
  }

  section {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.7rem;
  }

  header h2 {
    font-size: 1rem;
  }

  section {
    font-size: 0.95rem;
  }
}
