* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: hsl(225, 100%, 94%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Card container */
.card {
  background: #fff;
  width: 320px;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Top image */
.hero {
  width: 100%;
}

/* Content area */
.content {
  padding: 20px;
}

.content h2 {
  margin-bottom: 10px;
}

.content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* Plan section */
.plan {
  background: hsl(225, 100%, 98%);
  padding: 15px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.plan h4 {
  font-size: 14px;
}

.plan p {
  font-size: 13px;
  color: #777;
}

.plan a {
  font-size: 13px;
  color: blue;
  text-decoration: none;
  font-weight: bold;
}

/* Button */
.btn {
  width: 100%;
  padding: 12px;
  background: hsl(245, 75%, 52%);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 15px;
}

.btn:hover {
  background: hsl(245, 65%, 45%);
}

/* Cancel link */
.cancel {
  display: block;
  text-decoration: none;
  color: #777;
  font-size: 14px;
}

.cancel:hover {
  color: black;
}