/* About Page Specific Styles */

/* Hero Section */
.hero-about {
  background-image: url('https://c.animaapp.com/mkzluyi7JZaEsw/img/generated-image-f3d0132f-88ef-469f-9ec4-03638fc2667f-1-8.png');
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 116px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}

.hero-description {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #FFFFFF;
  max-width: 800px;
  margin: 0 auto;
}

/* About Content Section */
.about-content-section {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.about-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1B1F26;
}

.section-title.centered {
  text-align: center;
}

.section-description {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(27, 31, 38, 0.72);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value-card {
  background: #F9F9F9;
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  transition: transform 0.2s ease;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1B1F26;
}

.value-description {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(27, 31, 38, 0.72);
}

/* Responsive Adjustments */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-about {
    height: 500px;
  }

  .hero-title {
    font-size: 56px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .hero-about {
    height: 400px;
    margin-top: 102px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 18px;
  }

  .about-content-section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .value-card {
    padding: 32px 20px;
  }
}
