body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffcc33;
  color: #222;
}

.header {
  text-align: center;
  padding: 20px;
  position: relative;
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 120px;
  height: auto;
}

.title-container {
  flex: 1 1 100%;
  text-align: center;
}

.title-container h1 {
  font-family: "Garbata", serif;
  font-size: 3rem;
  margin: 0;
}
@media (max-width: 600px) {
  .title-container {
    padding-top: 100px;
  }
}
.tagline {
  font-size: 1rem;
  margin: 5px 0 0 0;
}

.hero-image {
  display: block;
  max-width: 600px;
  width: 90%;
  margin: 20px auto;
  border-radius: 8px;
}

.about {
  background: #fff;
  padding: 20px;
  color: #222;
}

.about h2 {
  text-align: center;
  font-family: "Garbata", serif;
  font-size: 2.5rem;
}

.highlight {
  color: #ffcc33;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.about-content p {
  max-width: 500px;
}

.map-image {
  width: 300px;
  max-width: 100%;
}

.delivery-info {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 10px;
}

.plans {
  padding: 20px;
}

.plans h2 {
  text-align: center;
  font-family: "Garbata", serif;
  font-size: 2.5rem;
}

.trial {
  text-align: center;
  font-weight: bold;
}

.plan-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.plan {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px; /* Adjust as needed for consistent card heights */
}

.plan p {
  font-weight: bold;
  margin-top: auto; /* Pushes price to the bottom */
  padding-bottom: 10px;
}

.plan img {
  display: block;
  margin: 0 auto;
  width: 75%; /* Or a max-width if you don’t want full card width */
  border-radius: 8px;
}

.plan ul {
  list-style: none;
  padding: 0;
}

.plan ul li {
  margin: 5px 0;
}

.contact {
  background: #fff;
  padding: 20px;
  text-align: center;
}

.contact h2 {
  color: #ffcc33;
  font-family: "Garbata", serif;
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .plan-cards {
    flex-direction: column;
    align-items: center;
  }
}
