.about-section {
  position: relative;
  padding: 140px 0 100px; 
  background-color: #ffffff;
  overflow: visible; 
  z-index: 15; 
}

.about-container {
  width: 90% !important;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.about-box {
  display: flex;
  background-color: #ffffff; 
  border-radius: 4px;
  overflow: visible;
  margin: 0 auto;
  padding: 5%;
  margin-top: -8%; 
  position: relative;
  z-index: 20; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}


.olives-decoration {
 
  z-index: 30;
  width: 250px;
  height: 250px;
}

.olives-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}


.about-image-column {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.about-image-column:hover .about-image {
  transform: scale(1.05);
}

.about-content-column {
  flex: 0 0 50%;
  padding: 60px 50px;
  display: flex;
  margin-left: 5%;
  max-width: 650px;
  flex-direction: column;
  justify-content: center;
}

.about-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--primary-dark);
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: var(--primary-dark);
}

.about-title {
  font-family: var(--font-heading);
  font-size: 62px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 30px;
}

.about-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-button {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  background-color: transparent;
  border: 1px solid var(--primary-dark);
  padding: 12px 24px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
  align-self: flex-start;
}

.about-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--primary-dark);
  transition: width var(--transition-medium);
  z-index: -1;
}

.about-button:hover {
  color: var(--text-color);
}

.about-button:hover::before {
  width: 100%;
}

.about-image-column, .about-content-column {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-image-column.animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.about-content-column.animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

@media (max-width: 1024px) {
  .about-section {
    padding: 120px 0 80px;
  }
  
  .about-content-column {
    padding: 50px 40px;
  }
  
  .about-title {
    font-size: 36px;
  }
  
  .olives-decoration {
    width: 120px;
    height: 120px;
    top: -30px;
    right: -20px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 100px 0 60px;
  }
  
  .about-box {
    flex-direction: column;
    margin-top: -80px; 
  }
  
  .about-image-column, .about-content-column {
    flex: 0 0 100%;
  }
  
  .about-image-column {
    height: 350px;
  }
  
  .about-content-column {
    padding: 40px 30px;
  }
  
  .olives-decoration {
    width: 100px;
    height: 100px;
    top: -25px;
    right: -15px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 80px 0 40px;
  }
  
  .about-box {
    margin-top: -60px;
  }
  
  .about-image-column {
    height: 250px;
  }
  
  .about-content-column {
    padding: 30px 25px;
  }
  
  .about-title {
    font-size: 30px;
  }
  
  .about-label {
    padding-left: 30px;
  }
  
  .about-label::before {
    width: 20px;
  }
  
  .olives-decoration {
    width: 80px;
    height: 80px;
    top: -20px;
    right: -10px;
  }
}