/* About section styles */
.about {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  background-color: var(--light-gray);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  text-align: left;
  margin-bottom: var(--spacing-md);
}

.about-content p {
  margin-bottom: var(--spacing-lg);
}

.about-images {
  flex: 1;
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-template-rows: auto auto;
  gap: var(--spacing-md);
}

.image-top {
  grid-column: 1 / 3;
  grid-row: 1;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.image-bottom {
  grid-column: 2;
  grid-row: 2;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-images img:hover {
  transform: scale(1.05);
}

@media (max-width: 1200px) {
  .about {
    gap: var(--spacing-lg);
  }
}

@media (max-width: 992px) {
  .about {
    flex-direction: column;
  }
  
  .about-content {
    width: 100%;
    order: 2;
  }
  
  .about-content h2 {
    text-align: center;
  }
  
  .about-images {
    width: 100%;
    order: 1;
    margin-bottom: var(--spacing-lg);
  }
}

@media (max-width: 576px) {
  .about-images {
    grid-template-columns: 1fr;
  }
  
  .image-top, .image-bottom {
    grid-column: 1;
  }
  
  .image-top {
    grid-row: 1;
  }
  
  .image-bottom {
    grid-row: 2;
  }
}