/* Standardized Section Headings and Subheadings */

/* Main Section Headings */
section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Section Intro Text */
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: var(--dark-gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Subheadings (h3) */
section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  margin-top: 40px;
}

/* Card Headings (h4) */
section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Special Subtitle Style */
.pricing-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  margin-top: 40px;
}

/* Ensure consistent spacing between sections */
section {
  padding: 80px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  section h2 {
    font-size: 2rem;
  }
  
  section h3 {
    font-size: 1.5rem;
  }
  
  .pricing-subtitle {
    font-size: 1.5rem;
  }
}
