body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #E6E6FA;
  color: #333;
}

.container {
  text-align: center;
  padding: 2rem 1rem;
}

.title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.image-box img {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.message {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #666;
  padding: 0 1rem;
}

.form-section {
  background: pink;
  padding: 2rem 1rem;
  text-align: center;
}

.form-section h2 {
  margin-bottom: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

select, textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  text-align: center;
}

button {
  background: black;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #005fcc;
}

@media (max-width: 420px) {
  .title {
    font-size: 1.8rem;
  }

  .message {
    font-size: 1rem;
  }
}