/* ===== USP SECTION ===== */
.usp-section {
  background-color: #f9f9f9;
  padding: 96px 0;
}

/* ===== GRID LAYOUT ===== */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 101px;
  align-items: center;
}

/* ===== LEFT: IMAGE ===== */
.usp-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

/* Placeholder — remove when using real image */
.usp-img-placeholder {
  width: 100%;
  height: 480px;
  background-color: #b5c9b7;
  border-radius: 20px;
}

/* Real image styles — uncomment when using img tag */
.usp-img {
  width: 100%;
  display: block;
}

/* ===== RIGHT: CONTENT ===== */
.usp-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== TITLE ===== */
.usp-title {
  font-size: 3rem;
  color: #181c20;
  line-height: 125%;
  margin-bottom: 32px;
}

.usp-title-green {
  color: #006e25;
}

/* ===== PARAGRAPHS ===== */
.usp-text {
  font-size: 1.125rem;
  color: #3e4a3c;
  line-height: 150%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .usp-grid {
    gap: 40px;
  }

  .usp-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .usp-grid {
    grid-template-columns: 1fr; /* Stack on mobile */
    gap: 30px;
  }

  .usp-img-placeholder,
  .usp-img {
    height: 320px;
  }

  .usp-title {
    font-size: 1.6rem;
  }

  .usp-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .usp-section {
    padding: 56px 0;
  }
  .usp-img-placeholder,
  .usp-img {
    height: auto;
  }

  .usp-title {
    font-size: 1.75rem;
  }

  .usp-text {
    text-align: justify;
  }
}
