/* About banner: image pre-cropped to fit without stretching */
.about-banner .banner-overlay {
  background-size: cover;
  background-position: center center;
}

.about-intro {
  background: linear-gradient(to right, #fff 50%, #004D8E 50%);
}

.about-intro .about-content {
  color: #fff;
}

.about-intro .about-content .section-label,
.about-intro .about-content .section-title,
.about-intro .about-content p,
.about-intro .about-content h4,
.about-intro .about-content .value-item p {
  color: inherit;
}

.about-intro .about-content .section-title { color: #fff; }
.about-intro .about-content .section-title::after { background: #2BA9E0; }
.about-intro .about-content p { color: rgba(255, 255, 255, 0.9); }
.about-intro .about-content .section-label { color: rgba(255, 255, 255, 0.7); }

.about-intro .about-content .brand-slogan {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2BA9E0 !important;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.about-intro .about-content .value-item {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: #2BA9E0;
}

.about-intro .about-content .value-item h4 { color: #fff; }
.about-intro .about-content .value-item p { color: rgba(255, 255, 255, 0.85); }

.about-intro .about-content .value-icon {
  background: #2BA9E0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 16px;
}

.founded-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #004D8E;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  padding: 16px 24px;
  border-radius: 12px;
}

.about-content p { color: rgba(6, 27, 54, 0.75); line-height: 1.8; }

.about-values { margin-top: 30px; }

.value-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(43, 169, 224, 0.08);
  border-radius: 8px;
  border-left: 3px solid #004D8E;
}

.value-item h4 { font-size: 15px; font-weight: 700; color: #061B36; margin-bottom: 4px; }
.value-item p { font-size: 13px; color: rgba(6, 27, 54, 0.75); }

.value-icon {
  width: 44px;
  height: 44px;
  background: #004D8E;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  background: #004D8E;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 12px;
  transition: bottom 0.3s;
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  color: #fff;
  font-size: 16px;
  transition: color 0.2s;
}

.team-social a:hover { color: rgba(255, 255, 255, 0.9); }

.team-info {
  padding: 20px;
}

.team-info h3 { font-size: 16px; font-weight: 700; color: #061B36; margin-bottom: 4px; }
.team-info span { font-size: 12px; color: #004D8E; font-weight: 600; display: block; margin-bottom: 8px; }
.team-info p { font-size: 13px; color: rgba(6, 27, 54, 0.75); line-height: 1.5; }

.cta-simple {
  background: linear-gradient(135deg, #061B36 0%, #004D8E 100%);
  padding: 70px 20px;
  text-align: center;
}

.cta-simple h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-simple p { color: rgba(255,255,255,0.85); margin-bottom: 30px; }

.btn-cta {
  display: inline-block;
  background: #2BA9E0;
  color: #fff;
  padding: 14px 40px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-cta:hover { filter: brightness(1.1); transform: translateY(-2px); }

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-intro {
    background: #fff;
  }
  .about-intro .about-content {
    background: #004D8E;
    padding: 32px 24px;
    border-radius: 12px;
  }
  .about-img img {
    height: 320px;
    min-height: 240px;
  }
  .founded-badge {
    font-size: 18px;
    padding: 12px 18px;
    bottom: 20px;
    right: 20px;
  }
  .about-intro .section-title {
    font-size: 26px;
  }
  .about-values {
    margin-top: 24px;
  }
  .value-item {
    padding: 14px;
  }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
  .about-intro {
    padding: 40px 0;
  }
  .about-intro .about-content {
    padding: 28px 20px;
  }
  .about-img img {
    height: 280px;
    min-height: 200px;
  }
  .founded-badge {
    font-size: 16px;
    padding: 10px 16px;
    bottom: 16px;
    right: 16px;
  }
  .about-intro .section-title {
    font-size: 22px;
  }
  .value-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
  }
  .value-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .team-grid { grid-template-columns: 1fr; }
}
