body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #FDECEF, #ffffff);
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
}

.logo img {
  height: 80px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: radial-gradient(circle at top left, #F8C8DC, #FDECEF);
}

.hero-content {
  max-width: 500px;
}

.hero-image img {
  width: 300px;
  border-radius: 20px;
}

section {
  padding: 60px 20px;
  text-align: center;
}

.cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  width: 260px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.2s;
}

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

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
}

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

button {
  padding: 12px;
  background: #333;
  color: white;
  border: none;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 20px;
}
