:root {
  --primary-color: #078400;
  --text-dark: #393939;
  --background-light: #e3ebed;
  --white: #ffffff;
  --black: #000000;
  --gray-light: #a7a7a7;
  --gray-dark: #3b3b3b;
  --card-bg: #60829a;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
}

* {
  box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

.container {
  max-width: 1242px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-title {
    color: var(--primary-color);
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 91px;
    letter-spacing: 0.72px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #056a00;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 40px;
        line-height: 1.2;
    }
}