body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
}

.rounded-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: white;
  margin-bottom: 30px;
}

.hero {
  background: url('/img/hero.png') center/cover no-repeat;
  color: white;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero h1,
.hero p {
  position: relative;
  z-index: 1;
}

.hero .btn {
  margin-top: 20px;
}

footer {
  background-color: #343a40;
  color: #ccc;
  padding: 30px 0;
}

footer a {
  color: #ccc;
  text-decoration: none;
  margin-right: 15px;
}

footer a:hover {
  color: white;
}


/* Equal height for cards using flex */
.equal-height-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.equal-height-row > .col-md-6,
.equal-height-row > .col-md-4 {
  display: flex;
}

.equal-height-row .rounded-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Ensure content inside card grows properly */
.rounded-card img {
  max-height: 250px;
  object-fit: cover;
  width: 100%;
}


.rounded-card {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}



.contact-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 30px;
  background-color: #0d6efd;
  color: white;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.contact-floating:hover {
  background-color: #0b5ed7;
}

.tier-features p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.tier-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
}

.rounded-card-tier {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}

.tier-features {
  flex-grow: 1; /* This section fills vertical space */
}

.tier-footer {
  margin-top: auto; /* Pushes this block to the bottom */
  text-align: center;
}

.rounded-card-longterm {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
