* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #e6eff6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CARD */
.wrapper {
  width: 720px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* TOP */
.top {
  padding: 40px;
}

.top h1 {
  color: #2ab2af;
  margin-bottom: 15px;
}

.top h2 {
  color: #c0df34;
  margin-bottom: 15px;
  font-size: 18px;
}

.top p {
  color: #98a6bd;
  line-height: 1.6;
}

/* BOTTOM */
.bottom {
  display: flex;
}

/* LEFT */
.subscription {
  background: #2ab2af;
  color: white;
  padding: 35px;
  width: 50%;
}

.subscription h3 {
  margin-bottom: 15px;
}

.price {
  margin-bottom: 10px;
  opacity: 0.9;
}

.price span {
  font-size: 32px;
  font-weight: bold;
}

.access {
  margin-bottom: 25px;
  opacity: 0.8;
}

button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  background: #c0df34;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

/* RIGHT */
.why-us {
  background: #4bbfbd;
  color: white;
  padding: 35px;
  width: 50%;
}

.why-us h3 {
  margin-bottom: 15px;
}

.why-us ul {
  list-style: none;
  font-size: 14px;
  opacity: 0.9;
}

.why-us li {
  margin-bottom: 6px;
}

/* MOBILE */
@media (max-width: 375px) {
  .wrapper {
    width: 90%;
  }

  .bottom {
    flex-direction: column;
  }

  .subscription,
  .why-us {
    width: 100%;
  }
}
