.why-unnati-hero {
  background-image: url("assets/img/spice-about-page.jpg");
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.why-unnati-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.why-unnati-hero .hero-content {
  position: relative;
  z-index: 1;
}

.why-unnati-hero .hero-title {
  font-size: 48px;
  color: #fff;
  margin-bottom: 16px;
}

.why-unnati-hero .hero-description {
  font-size: 24px;
  color: #f0f0f0;
  font-style: italic;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.advantage-intro {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.intro-text {
  font-size: 18px;
  color: #1b2b4d;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto 24px;
  text-align: center;
}

.intro-text:last-child {
  margin-bottom: 0;
}

.intro-text em {
  color: #35419c;
  font-style: normal;
  font-weight: 500;
}

.advantages-grid {
  padding: 80px 0;
}

.grid-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.grid-row:last-child {
  margin-bottom: 0;
}

.advantage-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #35419c;
  border-radius: 50%;
}

.icon-wrapper svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
}

.advantage-card h3 {
  font-size: 24px;
  color: #1b2b4d;
  margin-bottom: 16px;
}

.advantage-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-unnati-hero {
    height: 250px;
  }

  .why-unnati-hero .hero-title {
    font-size: 36px;
  }

  .why-unnati-hero .hero-description {
    font-size: 20px;
  }

  .intro-text {
    font-size: 16px;
    padding: 0 16px;
  }

  .advantage-card {
    padding: 24px;
  }

  .advantage-card h3 {
    font-size: 20px;
  }

  .advantage-card p {
    font-size: 14px;
  }

  .icon-wrapper {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .icon-wrapper svg {
    width: 24px;
    height: 24px;
  }
}

