* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Karla', sans-serif;
  background-color: hsl(204, 43%, 93%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.card {
  max-width: 700px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.top-section {
  background-color: white;
  padding: 40px;
}
.top-section h1 {
  color: hsl(179, 62%, 43%);
  font-size: 2rem;
  margin-bottom: 20px;
}
.top-section h2 {
  color: hsl(71, 73%, 54%);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.top-section p {
  color: hsl(218, 22%, 67%);
  line-height: 1.8;
  font-size: 1rem;
}
.bottom-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.subscription {
  background-color: hsl(179, 62%, 43%);
  color: white;
  padding: 40px;
}
.subscription h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.amount {
  font-size: 2.2rem;
  font-weight: 700;
}
.month {
  color: rgba(255, 255, 255, 0.7);
}
.subscription p {
  margin-bottom: 30px;
}
.subscription button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 6px;
  background-color: hsl(71, 73%, 54%);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}
.subscription button:hover {
  background-color: hsl(71, 73%, 48%);
}
.why-us {
  background-color: #4abebd;
  color: white;
  padding: 40px;
}
.why-us h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.why-us ul {
  list-style: none;
}
.why-us li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .bottom-section {
    grid-template-columns: 1fr;
  }
  .top-section,
  .subscription,
  .why-us {
    padding: 30px;
  }
  .top-section h1 {
    font-size: 1.7rem;
  }
}
footer{
    text-align:center;
    text-decoration:none;
    color:hsl(213, 13%, 14%);
    margin:20px;
}