.laundry-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
  padding: 0 1rem;
}

.laundry-content {
  display: flex;
  flex-direction: row;
  max-width: 1830px;
  width: 100%;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.laundry-image {
  /* flex: 1; */
  position: relative;
  right: 10vw;
  display: flex;
  justify-content: center;
}

.laundry-image img {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  object-fit: cover;
}

.laundry-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 40px;
  padding-left: 8%;
}

.laundry-text h2 {
  max-width: 620px;
  font-weight: 700;
  font-size: 56px;
  line-height: 66px;
  color: var(--text-dark);
}

.laundry-text p {
  max-width: 700px;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  margin-top: -20px;
  color: var(--text-gray);
}

.btn-green-laundry {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 394px;
  height: 64px;
  border-radius: 999px;
  border: none;
  gap: 12px;
  background-color: #3fb84b;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.btn-green-laundry:hover {
  background-color: #45c75a;
  color: #fff;
  border: 2px solid #45c75a;
  box-shadow: var(--XXSoftXSsoft) var(--YYSoftXSsoft) var(--BlurBlurSoftXSsoft)
      var(--SpreadSpreadSoftXSsoft) var(--PrimaryButtonsShadow),
    var(--XXHardXShard) var(--YYHardXShard) var(--BlurBlurHardXShard)
      var(--SpreadSpreadHardXShard) var(--PrimaryButtonsShadow);
}

.btn-green-laundry .btn-icon {
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.btn-green-laundry .btn-icon path {
  fill: #fff;
  transition: fill 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 1607px) {
  .laundry-image {
    flex: 1;
    position: relative;
    right: 0;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 1199px) {
  .laundry-content {
    flex-direction: column;
    gap: 2rem;
  }

  .laundry-text {
    padding-left: 4%;
    align-items: center;
  }

  .laundry-text h2 {
    max-width: fit-content;
    font-size: 40px;
    line-height: 52px;
  }

  .laundry-text p {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }

  .btn-green-laundry {
    width: 300px;
    height: 56px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .laundry-content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
  }

  .laundry-text {
    padding-left: 0;
    text-align: center;
    gap: 1.5rem;
  }

  .laundry-text h2 {
    font-size: 48px;
    line-height: 40px;
    width: 100%;
    color: var(--text-dark);
  }

  .laundry-text p {
    font-size: 20px;
    line-height: 30px;
    max-width: 830px;
  }

  .btn-green-laundry {
    width: 100%;
    max-width: 280px;
    height: 48px;
    font-size: 0.9rem;
    align-self: center;
  }

  .laundry-image img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .laundry-text h2 {
    font-size: 28px;
  }
}
