body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-header);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}

.container {
    max-width: var(--spacing-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

@media (max-width: 768px) {
    .container {
        padding-left: var(--gutter-mobile);
        padding-right: var(--gutter-mobile);
    }
}

section {
    padding-top: var(--spacing-section-desktop);
    padding-bottom: var(--spacing-section-desktop);
}

@media (max-width: 768px) {
    section {
        padding-top: var(--spacing-section-mobile);
        padding-bottom: var(--spacing-section-mobile);
    }
}

.bg-ice {
    background-color: var(--color-bg-ice);
}

.text-center {
    text-align: center;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}