/*section*/

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  background-color: #fff;
}

.section {
  padding: 60px 20px;
}

.section-light {
  background-color: #fff;
}

.section-gray {
  background-color: #efefef;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
}

.content.image-left {
  flex-direction: row;
}

.content.image-right {
  flex-direction: row;
}

.content img {
  width: 320px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.text-content {
  max-width: 520px;
}

.text-content h2 {
  margin: 0 0 14px;
  color: #b59246;
  font-weight: 700;
  font-size: 1.4rem;
}

.text-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #222;
}

/* Responsive - stack vertically on smaller screens */
@media (max-width: 767px) {
  .content {
    flex-wrap: wrap;
    flex-direction: column !important;
    gap: 20px;
  }

  .content.image-right,
  .content.image-left {
    flex-direction: column !important;
  }

  .content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .text-content {
    max-width: 100%;
  }
}