:root {
    --primary: #55E6A5;
    --secondary: #32A873;
    --accent: #145C3C;
    --secondaryAccent: #9E9E9E;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
    font-family: Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
    background: white;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Normal Typography (Dark Background) */
.smol {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 12px;
    color: #D9D9D9;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: normal;
    margin: 0;
}
.smol-blk {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 12px;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: normal;
    margin: 0;
}
.xl-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 5vw, 56px);
    color: #FFFFFF;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}
.xl-headline-blk {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 5vw, 56px);
    color: #000000;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}
.xl-headline-color {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 5vw, 56px);
    color: #55E6A5;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}
.headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 38px);
    color: #55E6A5;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3;
}
.headline-blk {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 38px);
    color: #000000;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3;
}
.content {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.6;
    max-width: 800px;
}
.content-blk {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin: 0;
    line-height: 1.6;
    max-width: 800px;
}
.button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
    background-color: var(--primary);
    border: none;
    padding: 15px 30px;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
}
.button:hover {
    background-color: var(--secondary);
}
.button-blk {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    background-color: #32A873;
    border: none;
    padding: 15px 30px;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0;
}
.button-blk:hover {
    background-color: #145C3C;
}
.button-alt {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
    background-color: transparent;
    border: 2px solid var(--primary);
    padding: 15px 30px;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
}
.button-alt:hover {
    background-color: var(--primary);
    color: #000000;
}
