/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, #0f3d3e 0%, #155e63 100%);
  color: #fff;
  text-align: center;
  padding: 50px 20px; /* reduced from 80px */
}

.about-logo {
  height: 60px;
  width: auto;
  margin-bottom: 10px;
}

.about-hero h1 {
  font-size: 2.1rem; /* smaller */
  margin-bottom: 8px;
}

.about-hero .highlight {
  color: #f9c74f;
}

.about-hero .subtitle {
  font-size: 1.05rem;
  color: #e8f1f1;
  margin-bottom: 10px;
}

/* Main content */
.about-content {
  background: #fff;
  padding: 40px 20px; /* reduced from 60px */
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
}

.about-content .container {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 14px; /* tighter spacing between paragraphs */
}

.about-content strong {
  color: #0d2b2c;
}

/* Promise box */
.about-promise {
  background: #f4fdfd;
  border-left: 5px solid #155e63;
  padding: 20px 18px; /* reduced */
  margin: 25px 0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.about-promise h2 {
  color: #155e63;
  margin-bottom: 6px;
  font-size: 1.3rem;
}

/* CTA */
.about-cta {
  text-align: center;
  margin-top: 35px;
}

.about-cta h3 {
  color: #0d2b2c;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.about-cta .cta-button {
  background: #155e63;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.25s ease;
}

.about-cta .cta-button:hover {
  background: #10484c;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    padding: 40px 15px;
  }

  .about-hero h1 {
    font-size: 1.8rem;
  }

  .about-content {
    padding: 30px 15px;
  }
}
