.contactSection {
  padding-bottom: 5rem;
  background-color: #f9fafb;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.3rem 1rem;
}


.green700 { background-color: #15803d; }
.green600 { background-color: #16a34a; }
.green500 { background-color: #22c55e; }
.green400 { background-color: #4ade80; }
.green300 { background-color: #86efac; }

.pricingSection {
  padding: 3rem 1rem 0;
  background-color: #f9fafb;
}

.pricingGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pricingGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricingCard {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  position: relative;
}

.popularCard {
  border: 2px solid #00A63E;
  transform: scale(1.05);
}

.popularBadge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.popularBadgeContent {
  background-color: #00A63E;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.planHeader {
  text-align: center;
  margin-bottom: 2rem;
}

.planName {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
}

.planDescription {
  color: #6b7280;
  margin-bottom: 1rem;
}

.priceContainer {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price {
  font-size: 2.25rem;
  font-weight: bold;
  color: #111827;
}

.period {
  color: #6b7280;
  margin-left: 0.25rem;
}

.featuresList {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.featureItem {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.featureText {
  color: #374151;
}

.planButton {
  padding: .75rem 1.5rem;
  border-radius: .5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  width: 100%;
  display: block;
  text-align: center;
}

.primaryPlanBtn {
  background-color: #00A63E;
  color: white;
}

.primaryPlanBtn:hover {
  background-color: #008a35;
}

.secondaryPlanBtn {
  background-color: #f3f4f6;
  color: #111827;
}

.secondaryPlanBtn:hover {
  background-color: #e5e7eb;
}

.pricingFooter {
  text-align: center;
  margin-top: 3rem;
}

.pricingFooterText {
  color: #6b7280;
  margin-bottom: 1rem;
}
.sectionTitle {
  text-align: center;
  margin-bottom: 4rem;
}

.mainTitle {
  font-size: 1.875rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .mainTitle {
    font-size: 2.25rem;
  }
}