:root {
  --accent: #b29f76;
  --dark: #000000;
  --grey: #f9f9f9;
  --light: #ffffff;
  --primary: #525252;
  --primary-dark: #373737;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background: var(--dark);
  color: var(--light);
  font-family: "Montserrat", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.ai-section {
  padding: 4rem 2rem;
  background: linear-gradient(120deg, #131313 0%, #1d1d1d 100%);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--accent);
}

.table-container {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.ai-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #181818;
  color: var(--light);
}

.ai-table th,
.ai-table td {
  padding: 1rem;
  border-bottom: 1px solid #2c2c2c;
  text-align: left;
}

.ai-table thead {
  background-color: #222;
}

.note {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  color: var(--light);
}

.btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta,
.cta-secondary {
  display: inline-block;
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.9rem 1.8rem;
  transition: var(--transition);
  text-decoration: none;
  width: auto;
}

.cta {
  background: var(--accent);
  color: var(--dark);
}

.cta:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.cta-secondary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.cta-secondary:hover {
  background: var(--accent);
  color: var(--dark);
}

@media (max-width: 600px) {
  .btn-group {
    flex-direction: column;
  }
}

