
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: linear-gradient(135deg, #d16ba5, #86a8e7, #5ffbf1);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: white;
}
@keyframes gradientBG {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}
header {
  background: transparent;
  padding: 2rem 2rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}
nav a:hover {
  opacity: 0.8;
}
.hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
  max-width: 900px;
  margin: auto;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: white;
  color: #333;
  border-radius: 6px;
  text-decoration: none;
  margin: 0.5rem;
  font-weight: bold;
  transition: transform 0.2s;
}
.btn.alt {
  background: #ffffffcc;
}
.btn:hover {
  transform: scale(1.05);
}
section {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  color: white;
}
form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input, textarea, button {
  padding: 0.75rem;
  font-size: 1rem;
}
input, textarea {
  border: none;
  border-radius: 6px;
  width: 100%;
  background: #ffffffee;
  color: #333;
}
textarea {
  resize: vertical;
}
button {
  background: white;
  color: #333;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
}
button:hover {
  transform: scale(1.05);
}
footer {
  background: transparent;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: white;
}
footer a {
  color: white;
  text-decoration: underline;
}
