:root {
  --color-primary: #1c7229;
  --color-secondary: #fecb76;
  --color-text-light: #ffffff;
  --color-text-dark: #1c2424;
  --color-text-muted: #3e4038;
  --color-text-subtle: #6c6c6c;
  --font-family-main: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-main);
  background-color: #ffffff;
  color: var(--color-text-dark);
  overflow-x: hidden;
}

.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1296px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

ul {
  list-style: none;
}

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

.section-title-bar {
  display: flex;
  align-items: center;
  gap: 24px;
}

.section-title-bar__text {
  color: var(--color-text-subtle);
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-title-bar__line {
  flex-grow: 1;
  height: 2px;
  background-color: #ededed;
  border-radius: 32px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: rgba(12, 83, 24, 0.4);
}

.btn-light-outline {
  color: var(--color-text-light);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-light-solid {
  background-color: var(--color-text-light);
  color: #012105;
}

.btn-light-solid img {
  margin-right: 12px;
}