/* About Page - Compact & Refined Styles */

.about-hero .about-hero-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.about-badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.about-intro {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: linear-gradient(135deg, #e8eef5 0%, #e2eaf2 40%, #f5ebe8 100%);
  position: relative;
}

.about-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 85%, rgba(5, 51, 96, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(227, 17, 26, 0.06) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.about-intro .container-xl {
  position: relative;
  z-index: 1;
}

.about-intro-content h1 {
  font-size: 1.6rem;
  font-weight: 700;
}

/* Clean, readable text - no dark boxes */
.about-intro .about-intro-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #2a2a2a;
  margin-bottom: 1rem;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

/* Ensure value card text is readable */
.value-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-intro-image img {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-values {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: linear-gradient(180deg, #f5f7fa 0%, #f0f4f8 100%) !important;
}

.value-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(5, 51, 96, 0.08);
  padding: 1.25rem !important;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08) !important;
}

.value-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 17, 26, 0.1);
  border-radius: 10px;
}

.value-card h4 {
  font-size: 1.1rem;
}

.about-cta {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.about-cta .button_1,
.about-cta .button_2 {
  padding: 12px 28px;
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .about-hero .about-hero-title {
    font-size: 1.6rem;
  }
  
  .about-intro-content h1 {
    font-size: 1.4rem;
  }
}
