/* center align */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b5b9bf;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1e293b;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: #e5b73b;
  margin: 1rem auto;
}

.text-highlight {
  color: #095763;
  position: relative;
  display: inline-block;
}

/* left align */
.section-header-start {
  text-align: left;
  margin-bottom: 2rem;
}

.title-underline-start {
  width: 80px;
  height: 4px;
  background: #e5b73b;
  margin: 1rem 0px;
}

.text-highlight-start {
  color: #095763;
  position: relative;
  display: inline-block;
}

/* text */
.lead-text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.global-text {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #095763;
  color: white;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #157a8a;
  transform: translateY(-2px);
  color: white;
}

/* cta */
.support-cta {
  background: #f8fafc;
  padding: 3rem 0;
}

.support-cta .cta-content {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-top: -100px;
}

@media (max-width: 768px) {
  .support-cta .cta-content {
    flex-direction: column;
    text-align: center;
  }
}

.support-cta .cta-text h3 {
  font-size: 1.5rem;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.support-cta .cta-text p {
  color: #4a5568;
  max-width: 600px;
}

.support-cta .cta-button svg {
  width: 18px;
  height: 18px;
  stroke: white;
  stroke-width: 2;
  fill: none;
  margin-right: 0.5rem;
}

.cta-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.cta-outline:hover {
  background: #fff;
  color: #095763;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(9, 87, 99, 0.2);
}