html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

h1 {
    font-family: var(--heading-font);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    color: var(--dark-color);
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h3 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h4 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

p {
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1rem;
}

strong,
b {
    font-weight: 700;
}

em,
i {
    font-style: italic;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}


section {
    padding: 3rem 0;
}

.section-title-container {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem;
}

.section-title-container h2 {
    background: var(--beige-bg);
    padding: 0.5rem 1rem;
    margin: 0;
    display: inline-block;
}

.section-title-container .view-all {
    font-weight: bold;
}