/* General layout fixes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 4rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.usp-section {
  background-color: #fff;
  text-align: center;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.usp-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.highlight-section {
  background-color: #f9f7f2;
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 3rem;
  border-radius: 12px;
}

.highlight-content {
  flex: 1;
}

.highlight-img {
  flex: 1;
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 8px;
}

.reviews-section {
  background-color: white;
  text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: #fdfdfd;
  padding: 2rem;
  border: 1px solid #eee;
  font-style: italic;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-author {
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .highlight-section {
    gap: 2rem;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro-image {
    order: -1;
  }

  .highlight-section {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .highlight-img {
    height: 300px;
    width: 100%;
  }

  .usp-grid {
    grid-template-columns: 1fr;
  }

  .intro-text p {
    width: 100%;
    margin-bottom: 1rem;
  }
}
