/* About Section Styles */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  position: relative;
}

.image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 125%;
  border-radius: 4px;
  overflow: hidden;
}

.image-container::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 80%;
  height: 80%;
  border: 4px solid #A7988D;
  z-index: -1;
  opacity: 0.6;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  position: relative;
}

.about-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: #666;
}

.about-btn {
  align-self: flex-start;
  margin-top: 24px;
  background-color: transparent;
  color: #333;
  border: 2px solid #A7988D;
  padding: 12px 32px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background-color: #A7988D;
  color: #fff;
  transform: translateY(-5px);
}

/* Media Queries */
@media screen and (max-width: 991px) {
  .about {
    padding: 80px 40px;
    gap: 40px;
  }
  
  .about-content h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .about {
    grid-template-columns: 1fr;
    padding: 80px 24px;
  }
  
  .image-container {
    padding-bottom: 75%;
  }
  
  .about-content h2 {
    font-size: 1.8rem;
  }
}