/* About Section Styles */
.about-section {
  background-color: var(--light-color);
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-text {
  padding-right: var(--space-md);
}

.about-text .section-title {
  text-align: left;
}

.about-text .section-title::after {
  left: 0;
  transform: none;
}

.about-text p {
  color: var(--dark-light);
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
  line-height: 1.6;
}

.quality-points {
  margin-top: var(--space-lg);
}

.quality-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  animation: slideInRight 0.6s ease-out;
  animation-fill-mode: both;
}

.quality-item:nth-child(1) { animation-delay: 0.1s; }
.quality-item:nth-child(2) { animation-delay: 0.3s; }
.quality-item:nth-child(3) { animation-delay: 0.5s; }

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.quality-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  font-size: 1.2rem;
  margin-right: var(--space-sm);
  margin-top: 4px;
}

.quality-info h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.2rem;
}

.quality-info p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.about-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 400px;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive styles */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .about-text {
    padding-right: 0;
    order: 2;
  }
  
  .about-image {
    order: 1;
  }
}

@media (max-width: 768px) {
  .about-image {
    min-height: 300px;
  }
  
  .quality-item {
    margin-bottom: var(--space-sm);
  }
  
  .quality-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  
  .quality-info h3 {
    font-size: 1.1rem;
  }
}