/* =========================
   ABOUT PAGE
========================= */
.about-hero {
  background: radial-gradient(1200px 600px at 10% 10%, rgba(255,255,255,0.12), transparent 60%),
              linear-gradient(135deg, #8e1b1b, #c62828);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.about-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 0.6rem;
}

.about-hero p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1rem;
  opacity: 0.95;
}

.about-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  filter: blur(2px);
}

.about-page {
  padding: 4rem 2rem;
  background: #ffffff;
}

.about-section {
  max-width: 1000px;
  margin: 0 auto 2.5rem;
}

.about-section h2 {
  color: #C62828;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.2px;
}

.about-section p {
  color: #444;
  line-height: 1.8;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.about-list li {
  margin-bottom: 0.7rem;
  padding-left: 1.5rem;
  position: relative;
  color: #333;
}

.about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #C62828;
  font-weight: 700;
}

.about-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.about-card {
  background: linear-gradient(180deg, #ffffff, #f9f7fb);
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: 0 12px 28px rgba(198,40,40,0.12);
  border: 1px solid rgba(198,40,40,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card h3 {
  margin-bottom: 0.7rem;
  color: #C62828;
  font-size: 1.2rem;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 12px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(198,40,40,0.06);
  border-radius: 50%;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(198,40,40,0.2);
}

.about-card ul {
  list-style: none;
  padding-left: 0;
}

.about-card ul li {
  margin-bottom: 0.5rem;
  color: #444;
}

.about-divider {
  height: 2px;
  background: linear-gradient(90deg, #c62828, #ff7a7a);
  border-radius: 999px;
  margin: 2rem 0;
}

.about-strip {
  margin: 0 auto 2.8rem;
  max-width: 1000px;
  background: linear-gradient(135deg, #ffe5e5, #fff3f3);
  border: 1px solid rgba(198,40,40,0.12);
  border-radius: 20px;
  padding: 1.6rem 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-strip .strip-item {
  text-align: center;
}

.about-strip .strip-item h4 {
  color: #C62828;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.about-strip .strip-item p {
  color: #555;
  font-size: 0.9rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.value-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  border-left: 4px solid #C62828;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

.value-card h4 {
  margin-bottom: 0.4rem;
  color: #C62828;
}

.cta-band {
  max-width: 1000px;
  margin: 3rem auto 0;
  background: linear-gradient(135deg, #C62828, #ff4b4b);
  color: #fff;
  border-radius: 22px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 18px 40px rgba(198,40,40,0.3);
}

.cta-band h3 {
  margin: 0;
  font-size: 1.6rem;
}

.cta-band p {
  margin: 0.3rem 0 0;
  opacity: 0.95;
}

.cta-band .cta-btn {
  background: #fff;
  color: #C62828;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
  transition: transform 0.3s ease;
}

.cta-band .cta-btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .about-strip {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
  }
}
