.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('/assets/images/index_hero_bg.svg') no-repeat center center;
    background-size: cover;
}

.spacer {
  flex-grow: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    line-height: 4rem;
}

.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
  font-family: Arial, sans-serif;
  color: #333;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  font-size: 1.2rem;
  color: #666;
}

.pricing-card .button {
 width: 100%;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}

.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  flex: 1 1 300px;
  width: 25%;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pricing-card h1 {
  font-size: 2.5rem;
  margin-top: 0.5rem;
  color: #222;
  text-align: left;
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0077cc;
  margin-bottom: 1rem;
  text-align: left;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 0;
  text-align: left;
}

.pricing-card div {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.2rem;
}

.pricing-card ul {
  list-style: none;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.pricing-marketing {
  margin-top: 4rem;
  background-color: #eef6fb;
  padding: 2rem;
  /*border-radius: 8px;*/
}

.pricing-marketing h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #0077cc;
}

.pricing-marketing p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #444;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pricing-card {
    width: 95%;
  }
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}


