/* ============ FOOTER ABOUT SECTION ============ */
.footer_about {
  background: var(--green-dark);
  padding: 48px 24px;
  text-align: center;
  border-top: 4px solid var(--green-mid);
}

.about_us {
  max-width: 800px;
  margin: 0 auto;
}

.about-text {
  font-family: var(--font);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--cream-dark);
  margin: 0;
  white-space: pre-line; /* Respects the line breaks in your translation string */
  position: relative;
}


.about-text-icon {
  display: block;
  opacity: 0.9;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}


.about-text strong {
  color: var(--amber-light);
  font-weight: 700;
}

/* ============ MOBILE ADJUSTMENTS ============ */
@media (max-width: 768px) {
  .footer_about {
    padding: 36px 20px;
  }

  .about-text {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .about-text::before {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}