body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(135deg, #fdf1e6, #fff8f2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
}

.container {
  animation: fadeIn 1.2s ease-in-out;
}

.card {
  display: flex;
  background: white;
  width: 750px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(255, 182, 193, 0.3);
  overflow: hidden;
}

.text-section {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-section h1 {
  color: #ff6fa5;
  margin-bottom: 20px;
}

.text-section p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.image-section {
  flex: 1;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button {
  align-self: flex-start;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background-color: #ffb6c1;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #ff69b4;
  transform: scale(1.05);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
