/* ==================== ABOUT PAGE - HERO ==================== */
.about-hero {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, var(--secondary-color), #374151);
  color: var(--white);
}

.about-hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.page-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
  line-height: 1.7;
}

/* ==================== WHO WE ARE ==================== */
.who-we-are {
  padding: 100px 0;
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.content-text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-image {
  position: relative;
}

.content-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

/* ==================== OUR APPROACH ==================== */
.our-approach {
  padding: 100px 0;
  background: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.approach-card {
  background: linear-gradient(135deg, var(--accent-color), var(--white));
  padding: 3rem 2.5rem;
  border-radius: 20px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 2px solid transparent;
}

.approach-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.approach-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.1);
  line-height: 1;
}

.approach-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--white);
}

.approach-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.approach-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ==================== WHY IT MATTERS ==================== */
.why-matters {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.matters-intro {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.matters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.matter-point {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.matter-point:hover {
  transform: translateX(10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.matter-point i {
  font-size: 2.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.matter-point h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.matter-point p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==================== ABOUT CTA ==================== */
.about-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--secondary-color), #374151);
}

.about-cta .cta-content {
  text-align: center;
  color: var(--white);
}

.about-cta h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
}

.about-cta p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .approach-grid,
  .matters-grid {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1.1rem;
  }

  .about-cta h2 {
    font-size: 2rem;
  }
}

/* ==================== OUR APPROACH - NEW STYLE ==================== */
.approach-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.approach-card-new {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.approach-card-new:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.approach-icon-new {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  color: var(--white);
  transition: var(--transition);
}

.approach-card-new:hover .approach-icon-new {
  transform: scale(1.1) rotate(5deg);
}

.approach-card-new h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--secondary-color);
}

.approach-card-new p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  text-align: center;
}

/* ==================== MOBILE RESPONSIVE - APPROACH ==================== */
@media (max-width: 968px) {
  .approach-grid-new {
    display: block;
    overflow: visible;
  }

  .approach-grid-new .swipeable-wrapper {
    gap: 1.5rem;
    padding: 0 20px;
  }

  .approach-grid-new .approach-card-new {
    min-width: calc(100vw - 80px);
    max-width: 400px;
  }
}

@media (max-width: 640px) {
  .approach-card-new {
    padding: 2.5rem 2rem;
  }

  .approach-icon-new {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .approach-card-new h3 {
    font-size: 1.2rem;
  }

  .approach-card-new p {
    font-size: 0.95rem;
  }
}