html {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.container {
    flex: 1;
}


.pricing-card {
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 15px;
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: scale(1.015);
}

.pricing-card .price {
  font-size: 38px;
  font-weight: bold;
  margin-top: 5px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 40px 30px 0;
}

.pricing-card ul li {
  margin: 10px 0;
  font-size: 18px;
}

.quote {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #05407a;
    font-weight: 400;
    font-family: "Lucida Console", "Monaco", monospace;
    line-height: 1.5;
}

.quote-small {
    margin-top: 20px;
    font-size: 1rem;
    color: #05407a;
    font-weight: 400;
    font-family: "Lucida Console", "Monaco", monospace;
    line-height: 1.5;
}



.image {
  margin: auto;
  border-radius: 30px;
  overflow: hidden;
  max-width: 100%;
}

.image img {
  display: block;
  width: clamp(70%, 80vw, 600px); /* smoothly scale */
  height: auto;
  border-radius: inherit;        /* always rounded */
  margin-inline: auto;           /* center horizontally */
}

.check {
  color: #33c58e;
}

.cross {
  color: #ff4c4c;
}

.basic {
  border-top: 5px solid #33c58e;
  margin-top: 15px;
}

.standard {
  border-top: 5px solid #4a90e2;
  margin-top: 15px;
}

.premium {
  border-top: 5px solid #f36f38;
  margin-top: 15px;
}

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    height: 50px;
    text-align: center;
    line-height: 20px;