/* ===== About Us & Reports Section ===== */
.about-reports {
  padding: 80px 0;
  background: var(--color-white);
}

.about-reports__header {
  text-align: center;
  margin-bottom: 48px;
}

.about-reports__title {
  font-size: 36px;
  font-weight: var(--fw-bold);
  margin-bottom: 16px;
  color: var(--color-black);
}

.about-reports__description {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-text-light);
}

.about-reports__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.about-reports__section {
  padding: 32px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-reports__section:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-reports__section-title {
  font-size: 22px;
  font-weight: var(--fw-bold);
  margin-bottom: 20px;
  color: var(--color-black);
}

.about-reports__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-reports__item {
  margin-bottom: 12px;
}

.about-reports__item:last-child {
  margin-bottom: 0;
}

.about-reports__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--fw-medium);
  transition: opacity 0.3s ease;
}

.about-reports__link:hover {
  opacity: 0.8;
}

.about-reports__link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .about-reports {
    padding: 60px 0;
  }

  .about-reports__header {
    margin-bottom: 32px;
  }

  .about-reports__title {
    font-size: 28px;
  }

  .about-reports__description {
    font-size: 16px;
  }

  .about-reports__grid {
    gap: 24px;
  }

  .about-reports__section {
    padding: 24px;
  }

  .about-reports__section-title {
    font-size: 18px;
  }

  .about-reports__link {
    font-size: 15px;
  }
}
