body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #1f2937;
    background: #ffffff;
}

main {
    flex: 1 0 auto;
}

.site-footer {
    flex-shrink: 0;
}

.with-fixed-navbar {
    padding-top: 76px;
}

.site-logo {
    max-height: 42px;
    width: auto;
}

.navbar .nav-link:hover,
.navbar .navbar-brand:hover {
    color: var(--site-primary);
}

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

.site-hero {
    background: linear-gradient(135deg, rgba(18, 102, 241, .1), rgba(20, 184, 166, .12));
    padding: 6rem 0;
}

.site-hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
}

.is-wrapper {
    width: 100%;
}

.newsletter-band {
    background: #f3f6fb;
    border-top: 1px solid #e5e7eb;
    padding: 2rem 0;
}

.contact-form {
    max-width: 920px;
}

.site-footer {
    background: #111827;
    color: #f9fafb;
}

.site-footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(16rem, 1fr) minmax(14rem, 1fr) minmax(16rem, 1fr);
    gap: 2rem;
    align-items: end;
    min-height: 5.5rem;
}

.site-footer-company {
    align-self: start;
}

.site-footer-company address {
    font-style: normal;
}

.site-footer-copy {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: max-content;
    max-width: min(90vw, 32rem);
    transform: translateX(-50%);
    text-align: center;
}

.site-footer-right {
    display: grid;
    gap: .35rem;
    justify-items: end;
    align-self: start;
    grid-column: 3;
    text-align: right;
}

.site-footer-right a,
.site-footer-right button {
    color: inherit;
}

.site-footer address {
    display: grid;
    gap: .35rem;
}

.footer-link-button {
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    text-decoration: none;
}

.has-fixed-footer {
    padding-bottom: 72px;
}

@media (max-width: 767px) {
    .site-footer-grid {
        grid-template-columns: 1fr;
        align-items: start;
        min-height: 0;
    }

    .site-footer-copy {
        position: static;
        width: auto;
        max-width: 100%;
        transform: none;
        text-align: left;
    }

    .site-footer-right {
        text-align: left;
        justify-items: start;
    }
}
