<style>
/* Typography: Headline */
.pricing-headline {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1A1A1A;
  margin-top: 0;
  margin-bottom: 48px;
  display: flex;
  justify-self: center;
}

/* Grid Layout */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Card Styling */
.pricing-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Card Content Styles */
.pricing-tier-name {
  color: #1877F2; /* Standard Blue */
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
}

.pricing-cost {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.1;
}

.pricing-subtext {
  font-size: 14px;
  color: #6B7280;
  font-weight: 500;
  margin-bottom: 24px;
}

.pricing-description {
  font-size: 16px;
  color: #4B5563;
  line-height: 1.5;
  margin: 0;
}

/* Bottom CTA Button */
.pricing-cta-wrapper {
  text-align: center;
  margin-top: 40px;
}
.pricing-btn-compare {
  border: 1px solid #1877F2;
}

.pricing-btn-compare:hover {
  border: 1px solid #1877F2;
  background-color: #F0F7FF;
}
/* Responsive Breakpoints */

/* Tablet: 2 columns */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-headline {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
</style>