body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #fff6fa;
  color: #444;
}

header {
  background: url("https://images.unsplash.com/photo-1526256262350-7da7584cf5eb?auto=format&fit=crop&w=1200&q=80") 
              center/cover;
  padding: 80px 20px;
  text-align: center;
  color: white;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Main layout */
.container {
  width: 90%;
  max-width: 900px;
  margin: 40px auto;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #d15b7e;
}

/* Fact Card */
#fact-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 7px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

#fact-card button {
  background: #d15b7e;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 8px;
}

/* Contact Form */
form {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 7px rgba(0,0,0,0.1);
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

form button {
  background: #d15b7e;
  color: white;
  padding: 12px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #777;
  margin-top: 30px;
}
