.about-section {
  padding: 80px 0;
  background: #fff;
}

.about-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-image-container {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image-container:hover .about-img {
  transform: scale(1.03);
}

.about-text-content {
  flex: 1;
  padding: 30px;
}

.section-subtitle {
  color: #9f7e5e;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #9f7e5e;
}

.about-text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}




@media (max-width: 992px) {
  .about-content-wrapper {
      flex-direction: column;
  }

  .about-image-container {
      width: 100%;
  }

  .about-img {
      height: 400px;
  }

  
}

@media (max-width: 768px) {
  .about-section {
      padding: 50px 0;
  }

  .section-title {
      font-size: 2rem;
  }

  .about-img {
      height: 300px;
  }

}