* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #f3f3f3;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  background: #fff;
  width: 90%;
  max-width: 960px;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  gap: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  align-items: center;
  justify-content: space-between;
}

.left img {
  width: 250px;
}

.right {
  flex: 1;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #111;
}

p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

button {
  background: transparent;
  border: 2px solid #000;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #000;
  color: #fff;
}

