.fashion-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1c1c1c;
  color: #fff;
  margin: 10rem 0;
  padding: 2rem;
}

.fashion-text {
  max-width: 50%;
  padding-right: 1rem;
  padding-left: 2rem; /* Increase space between text and screen edge */
}

.fashion-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.fashion-text p {
  font-size: 1rem;
  line-height: 1.8;
}

.fashion-image {
  max-width: 540px;
  height: 540px;
  overflow: hidden;
  margin-right: 1rem; /* Reduce space between image and text */
}

.fashion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Media query for mobile version */
@media (max-width: 768px) {
  .fashion-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .fashion-text {
    max-width: 100%;
    padding-right: 0;
    padding-left: 1rem; /* Adjust padding for mobile */
  }

  .fashion-text h1 {
    font-size: 1.5rem; /* Reduce font size for mobile */
  }

  .fashion-text p {
    font-size: 0.875rem; /* Reduce font size for mobile */
  }

  .fashion-image {
    display: none; /* Hide image on mobile */
  }
}