:root {
  --color-brand: #2c1810;
  --color-cta: #00B894;
  --font-main: Tahoma, Geneva, sans-serif;
  --text-muted: #888;
  --border: #ddd;
  --bg-warm: #f7f3ef;
  --text-dark: #1a1a1a;
  --text-body: #444;
}

* {
  font-family: var(--font-main);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-warm);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}

img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  max-width: 100%;
  border-collapse: collapse;
}

a {
  color: var(--color-brand);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-cta);
}

a:focus-visible {
  outline: 2px solid var(--color-cta);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  color: var(--color-brand);
  font-weight: 700;
  line-height: 1.65;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.15rem;
}

h3 a {
  color: var(--color-brand);
  transition: color 0.2s;
}

h3 a:hover {
  color: var(--color-cta);
}

p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
}

.btn-cta {
  display: inline-block;
  background-color: var(--color-cta);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  line-height: 1.4;
}

.btn-cta:hover {
  background-color: #009b7d;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.btn-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.btn-cta-outline {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid #fff;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s, color 0.2s;
  text-decoration: none;
  line-height: 1.4;
}

.btn-cta-outline:hover {
  background-color: #fff;
  color: var(--color-brand);
}

.btn-cta-outline:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 60px 0;
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .container {
    padding: 0 16px;
  }
  .section-padding {
    padding: 40px 0;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  h3 {
    font-size: 1.05rem;
  }
  p {
    font-size: 15px;
  }
}