:root {
  --bg-light: #f2ebe3;
  --bg-dark: #1c2125;
  --bg-dark-accent: #282e33;
  --text-light: #ffffff;
  --text-dark: #000000;
  --text-muted-light: #cccccc;
  --text-muted-dark: #666666;
  --primary-accent: #943e25;
  --secondary-accent: #bc923f;
  --border-light: #dad3cc;
  --border-dark: #333333;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--bg-light);
  font-family: 'Switzer Variable';
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Stabil Grotesk', sans-serif !important; 
  font-weight: 300;
  margin: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding-top: 80px;
  padding-bottom: 80px;
}

.text-center {
  text-align: center;
}

.text-accent {
  color: var(--primary-accent);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
 
  border-radius: 40px;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button--dark {
  background-color: #1C2125;
  border: 1px solid var(--text-light);
  color: var(--text-light);
}

.cta-button--light {
  background-color: var(--bg-light);
  border: 1px solid var(--text-muted-dark);
  color: var(--text-dark);
}

.cta-button .arrow-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--text-muted-dark);
}

.cta-button--dark .arrow-icon {
  border-color: var(--text-muted-dark);
}

.cta-button--light .arrow-icon {
  border-color: var(--border-light);
}

.horizontal-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

.horizontal-scroll::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}