.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.table-section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

.table-iframe {
  width: 100%;
  height: 80vh;
  min-height: 800px;
  border: none;
  margin-bottom: var(--spacing-lg);
}

.company-links {
  padding: var(--spacing-lg);
  width: 100%;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: var(--spacing-md);
}