/* About page container */
.about-container {
  max-width: 75% !important;
  margin: 0 auto !important;
}

.about-row {
  margin-bottom: 0;
  row-gap: 40px;
}

/* Image styling */
.about-image {
  overflow: hidden;
  margin-bottom: 20px;
  text-align: center;
}

.about-image img {
  max-width: 90%;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* Text styling */
.about-text {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 400;
  color: #816459;
}

.about-text h3 {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 400;
  color: #816459;
}

.about-text p {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Responsive styles */
/* Large devices (desktops, less than 1200px) */
@media (max-width: 991px) {
  .about-container {
    max-width: 80% !important;
  }

  .about-image img {
    max-width: 95%;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text h3 {
    font-size: 24px;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 768px) {
  .about-container {
    max-width: 90% !important;
  }

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

  .about-row {
    row-gap: 30px;
  }

  .about-text {
    padding: 15px;
  }

  .about-text h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .about-text h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .about-text p {
    font-size: 16px;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 576px) {
  .about-container {
    max-width: 95% !important;
  }

  .about-image {
    margin-bottom: 10px;
  }

  .about-row {
    row-gap: 20px;
  }

  .about-text {
    padding: 10px 0;
    text-align: left;
  }

  .about-text h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .about-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .about-text p {
    font-size: 15px;
    margin-bottom: 12px;
  }
}
