:root {
  --primary-color: #C08447;
  --text-white: #ffffff;
  --bg-color: #f8f9fa;
}

.banner-about-section {
  padding: 60px 0;
  background-color: #fff;
  overflow: hidden;
}

.banner-about-card {
  position: relative;
  width: 100%;
  border-radius: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 20px 40px rgba(198, 138, 82, 0.2);
}
.banner-about-card__info {
  padding: 40px 0 40px 50px;
}

/* Typography */
.banner-about-card__title {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .banner-about-card__title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .banner-about-card__title {
    font-size: 1.75rem;
  }
  .banner-about-card {
    border-radius: 20px;
  }
}

/* Button */
.btn-custom {
  background-color: #fff;
  color: #C08447;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 18px 35px;
  border-radius: 25px;
  border: none;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #a36b35;
  background-color: #fff;
}

.btn-custom:active {
  transform: scale(0.98);
}

.btn-icon {
  background: #C08447;
  border-radius: 13px;
  padding: 2px;
  color: #fff;
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.btn-custom:hover .btn-icon {
  transform: translateX(3px);
}

/* Lady Image */
.banner-about-card__image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 110%; /* Slightly taller to allow parallax movement without clipping */
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 2;
  transform-origin: bottom center;
}

.banner-about-card__lady {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  margin-right: 35%;
}

/* Decorations / Circles */
.banner-about-card__decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.decor-circle {
  position: absolute;
  opacity: 0.9;
}

.decor-circle--green {
  width: 100px;
  top: -20px;
  left: 55%;
}

.decor-circle--orange {
  width: 40px;
  top: 100px;
  left: 62%;
}

/* Extra circles implied by design vibe but maybe cut off in crop */
.decor-circle--green-right {
  width: 120px;
  bottom: 15%;
  right: -40px;
}

.decor-circle--orange-right {
  width: 60px;
  bottom: 10%;
  right: 15%;
  z-index: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .banner-about-card__lady {
    margin-right: -20px;
    opacity: 0.3;
  }
  .decor-circle--green {
    left: 70%;
  }
}