/* ============================================
   ADDITIONAL STYLES FOR INLINE STYLE REPLACEMENTS
   ============================================ */

/* Hero section subtitle */
.hero-subtitle {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Section intro text */
.section-intro {
  text-align: center;
  max-width: 800px;
  margin: -1rem auto 2rem;
  color: var(--text-light);
  font-size: 1.1rem;
}

.section-intro-large {
  text-align: center;
  max-width: 800px;
  margin: -1rem auto 2rem;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.section-intro-xlarge {
  text-align: center;
  max-width: 900px;
  margin: -1rem auto 2rem;
  color: var(--text-dark);
  font-size: 1.1rem;
}

/* Step timeline text */
.step-timeline {
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.5rem;
}

/* Founder story section */
.founder-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.founder-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.founder-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.founder-text-italic {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: 600;
  font-style: italic;
}

/* Section with light background */
.section-light-bg {
  background: var(--bg-light);
}

/* Centered CTA container */
.cta-container {
  text-align: center;
  margin-top: 2rem;
}

/* FAQ section */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 0.75rem;
  border: 1px solid #E5E7EB;
}

.faq-question {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--text-light);
}

.faq-view-all {
  text-align: center;
  margin-top: 2rem;
}

.faq-view-all-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  font-size: 1.1rem;
}

/* Link styles */
.link-primary {
  color: var(--primary);
  text-decoration: underline;
}

