/* Global Styles */
:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: #f5f5f5;
  color: #000;
}

/* Buttons - Global */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "aktiv-grotesk", sans-serif;
}

.btn-primary {
  background: #000;
  color: #fff;
  border: 2px solid #000;
}

.btn-primary:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: #000;
  border: 2px solid #000;
}

.btn-secondary:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* CTA Section - Global */
.cta-section {
  background: #000;
  color: #fff;
  padding: 60px 40px;
  margin-top: 60px;
  border-radius: 8px;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 15px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 18px;
  margin: 0 0 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CTA Section button overrides */
.cta-section .btn-primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.cta-section .btn-primary:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-section .btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* Responsive - Buttons & CTA */
@media (max-width: 768px) {
  .cta-section {
    padding: 40px 20px;
    margin-top: 40px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}
