/* ===== ABOUT PAGE — Global + Warranty Footer ===== */

/* ---------- PAGE BACKGROUND ---------- */
.about-us-page {
  background: linear-gradient(180deg, #ffffff 0%, #f5f6f7 100%);
}

/* ---------- WARRANTY SECTION ---------- */
.about-warranty {
  padding: 48px 20px 56px;
}

.about-warranty__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.about-warranty__image {
  flex: 0 0 45%;
  border-radius: 12px;
  overflow: hidden;
}

.about-warranty__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.about-warranty__content {
  flex: 1;
}

.about-warranty__label {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #237a2e;
  margin-bottom: 8px;
}

.about-warranty h3 {
  font-family: Inter, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.2;
}

.about-warranty__text {
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.about-warranty__text p {
  margin: 0 0 8px;
}

/* Warranty types list */
.about-warranty__types {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-warranty__type {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
}

.about-warranty__check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: #3eb049;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* CTA Button */
.about-warranty__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #1a1a1a;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.about-warranty__btn:hover {
  background: #333;
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.about-warranty__btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #3eb049;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .about-warranty__inner {
    flex-direction: column;
    gap: 24px;
  }

  .about-warranty__image {
    flex: none;
    width: 100%;
  }

  .about-warranty__image img {
    height: 220px;
  }

  .about-warranty {
    padding: 24px 20px 40px;
  }
}

@media (min-width: 768px) {
  .about-warranty h3 {
    font-size: 2rem;
  }
}
