/* ========================================
   About Page
   ======================================== */
.about-section {
  padding: 90px 0;
  display: block;
  margin: 0 auto;
}

.about-section:nth-child(even) {
  background: #f9fafb;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-row.reverse {
  direction: rtl;
}

.about-row.reverse > * {
  direction: ltr;
}

.about-image-box {
  height: 400px;
  background: linear-gradient(135deg, #e9d5ff 0%, #ddd6fe 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.about-image-box i {
  font-size: 80px;
  color: #7c3aed;
  opacity: 0.5;
}

.about-content-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.about-content-box p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.value-card--img {
  padding: 12px;
}

.value-card--img img {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.value-card i {
  font-size: 40px;
  color: #7c3aed;
  margin-bottom: 16px;
}

.value-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .about-section {
    padding: 56px 0;
  }

  .about-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image-box {
    height: 280px;
  }

  .values-grid {
    gap: 16px;
    margin-top: 24px;
  }
}
