.about-page {
  overflow: hidden;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--sky-blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.about-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(20, 33, 61, 0.92), rgba(20, 33, 61, 0.72), rgba(20, 33, 61, 0.35)),
    url("../img/carousel-2.jpg") center center / cover no-repeat;
}

.about-hero p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.7;
}

.about-card {
  height: 100%;
  padding: 32px;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(20, 33, 61, 0.08);
  transition: 0.35s;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 55px rgba(20, 33, 61, 0.14);
}

.about-card i {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--sky-blue);
  font-size: 24px;
}

.image-panel {
  position: relative;
}

.image-panel img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.image-panel .floating-box {
  position: absolute;
  right: 30px;
  bottom: 30px;
  max-width: 360px;
  padding: 28px;
  background: #ffffff;
  border-left: 5px solid var(--sky-blue);
  box-shadow: 0 15px 45px rgba(20, 33, 61, 0.16);
}

.values-section {
  background:
    linear-gradient(rgba(245, 248, 255, 0.94), rgba(245, 248, 255, 0.94)),
    url("../img/service-1.jpg") center center / cover no-repeat;
}

.support-section {
  background:
    linear-gradient(rgba(245, 248, 255, 0.95), rgba(245, 248, 255, 0.95)),
    url("../img/service-2.jpg") center center / cover no-repeat;
}

.process-section {
  background:
    linear-gradient(rgba(245, 248, 255, 0.95), rgba(245, 248, 255, 0.95)),
    url("../img/service-3.jpg") center center / cover no-repeat;
}

.value-card,
.support-card,
.process-card {
  height: 100%;
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(20, 33, 61, 0.08);
  transition: 0.35s;
}

.value-card:hover,
.support-card:hover,
.process-card:hover {
  transform: translateY(-5px);
}

.value-card i,
.support-card i {
  margin-bottom: 18px;
  color: var(--sky-blue);
  font-size: 38px;
}

.parts-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.parts-list li {
  padding: 15px 18px;
  color: var(--sky-navy);
  background: #ffffff;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(20, 33, 61, 0.06);
}

.parts-list li i {
  color: var(--sky-blue);
  margin-right: 10px;
}

.process-card span {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--sky-blue);
  font-size: 34px;
  font-weight: 900;
}

.quality-section {
  position: relative;
  background:
    linear-gradient(rgba(20, 33, 61, 0.88), rgba(20, 33, 61, 0.88)),
    url("../img/feature.jpg") center center / cover no-repeat;
}

.quality-section p {
  color: rgba(255, 255, 255, 0.86);
}

.cta-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(20, 33, 61, 0.9), rgba(40, 94, 167, 0.86)),
    url("../img/carousel-1.jpg") center center / cover no-repeat;
}

.faq-section {
  background: #ffffff;
}

.faq-card {
  height: 100%;
  padding: 30px;
  background: var(--light);
  border-left: 4px solid var(--sky-blue);
  transition: 0.35s;
}

.faq-card:hover {
  background: #ffffff;
  box-shadow: 0 15px 45px rgba(20, 33, 61, 0.1);
  transform: translateY(-4px);
}

@media (max-width: 991.98px) {
  .about-hero {
    min-height: 460px;
  }

  .about-hero p {
    font-size: 17px;
  }

  .image-panel img {
    min-height: 420px;
  }
}

@media (max-width: 575.98px) {
  .about-hero h1 {
    font-size: 38px;
  }

  .parts-list {
    grid-template-columns: 1fr;
  }

  .image-panel img {
    min-height: 320px;
  }

  .image-panel .floating-box {
    position: static;
    max-width: 100%;
    margin-top: 20px;
  }
}