* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 96%;
  max-width: 1400px;
  margin: auto;
}

/* PRODUCT HERO */

.product-hero {
  position: relative;
  height: 400px;

  background: url("../assets/Products.png") center/cover no-repeat;

  display: flex;
  align-items: flex-end;
}

/* PURPLE OVERLAY */

.product-overlay {
  position: absolute;
  inset: 0;

  background: #320242c4;
}

/* TEXT */

.product-content {
  position: relative;
  padding: 40px 5%;
}

.product-content h1 {
  color: #ffc107;
  font-size: 42px;
  font-weight: 700;
}

/*Section*/

.solutions-section {
  background: #ffff;
  padding: 80px 0;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  margin-bottom: 0px;
}

/* ROW */

.solution-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 60px;
}

.solution-row.reverse {
  flex-direction: row-reverse;
}

/* TEXT */

.solution-text {
  width: 48%;
}

.solution-text h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.solution-text h2 span {
  color: #e3a200;
}

.solution-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

.solution-text ul {
  padding-left: 20px;
}

.solution-text li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.built-for {
  background: #f5f0fa;
  border-left: 4px solid #4a0057;
  padding: 14px 18px;
  border-radius: 6px;
  color: #2b0033;
  font-size: 15px;
  line-height: 1.7;
  margin-top: 10px;
}

/* IMAGE */

.solution-image {
  width: 42%;
}

.solution-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

/* RESPONSIVE DESIGN */

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .product-hero {
    height: 350px;
  }

  .product-hero h1 {
    font-size: 38px;
  }

  .solution-row {
    gap: 40px;
  }

  .solution-text h2 {
    font-size: 26px;
  }
}

/* Mobile (767px) */
@media (max-width: 767px) {
  .product-hero {
    height: 300px;
    justify-content: center;
  }

  .product-content {
    padding: 30px 20px;
    text-align: center;
  }

  .product-hero h1 {
    font-size: 32px;
  }

  .solutions-section {
    padding: 60px 0;
  }

  .solution-row,
  .solution-row.reverse {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    margin-bottom: 70px;
  }

  .solution-text {
    width: 100%;
  }

  .solution-text ul {
    text-align: left;
    display: inline-block;
  }

  .solution-image {
    width: 100%;
  }

  .solution-image img {
    height: auto;
  }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
  .product-hero h1 {
    font-size: 28px;
  }

  .solution-text h2 {
    font-size: 24px;
  }

  .solution-image img {
    height: 250px;
  }
}
