:root {
    --nfs-cockatoo: #58c8b6;
    --nfs-cockatoo-rgb: 88, 200, 182;
    --nfs-whispering-lilac-dusk: #bfb1d2;
    --nfs-whispering-lilac-dusk-rgb: 191, 177, 210;
    --nfs-font-header: "RugenExp", sans-serif;
    --nfs-font-header-outline: "RugenExpOutline", sans-serif;
    --nfs-font-body: "Titillium Web", sans-serif;
}

/* Webfont: Rugen-Expanded */
@font-face {
    font-family: "RugenExp";
    src: url("assets/fonts/Rugen-Expanded.woff2") format("woff2");
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

/* Webfont: Rugen-ExpandedOutline */
@font-face {
    font-family: "RugenExpOutline";
    src: url("assets/fonts/Rugen-ExpandedOutline.woff2") format("woff2");
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

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

body,
html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: var(--nfs-font-body);
    font-weight: 300;
    font-size: clamp(16px, 1.5vw, 20px);
    background: linear-gradient(to right, var(--nfs-cockatoo) 50%, var(--nfs-whispering-lilac-dusk) 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.container {
    background: transparent;
    padding: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.header-block {
    background: transparent;
    width: 100%;
    height: 33.333vh;
    padding: clamp(20px, 3vw, 40px);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

h1 {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    font-family: var(--nfs-font-header);
    margin: 0;
    line-height: 1.2;
}

.content-block {
    background: transparent;
    width: 100%;
    height: 33.333vh;
    padding: clamp(20px, 3vw, 40px);
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.company-info {
    color: white;
    line-height: 1;
}

.section {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.section:last-child {
    margin-bottom: 0;
}

.section-content {
    flex: 1;
}

.address {
    margin-right: clamp(0px, 35vw, 400px);
    font-size: clamp(1.1rem, 3vw, 2rem);
    font-weight: 300;
    text-align: right;
}

.legal-info {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: white;
    font-weight: 300;
    margin-left: clamp(0px, 35vw, 400px);
    line-height: 1;
}

.legal-info p {
    margin: 2px 0;
}

.label {
    font-weight: 700;
    color: white;
}

.contact-info a:hover {
    opacity: 0.8;
}

.footer-block {
    width: 100%;
    height: 33.333vh;
    padding: clamp(20px, 3vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 40px);
    overflow: hidden;
}

.tagline {
    font-family: var(--nfs-font-header);
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: white;
    letter-spacing: 0.1em;
    white-space: nowrap;
    font-weight: 700;
}

#email-el {
    font-family: var(--nfs-font-header);
    font-size: clamp(0.8rem, 2vw, 1rem);
    margin-top: 10px;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
}

.logos img {
    height: 70px;
    object-fit: contain;
}

hr.divider {
    max-width: 3.25rem;
    border-width: 0.2rem;
    border-color: white;
    margin: 40px 0;
    opacity: 0.6;
}

@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    .header-block,
    .content-block {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .address {
      margin-right: 0;
    }

    .header-block,
    .content-block {
        padding: 30px 20px;
    }

    body {
        background: linear-gradient(to bottom, var(--nfs-cockatoo) 50%, var(--nfs-whispering-lilac-dusk) 50%);
    }

    .legal-info {
        margin-left: 0;
    }

    .footer-block {
        flex-direction: column;
        gap: clamp(15px, 5vw, 30px);
    }

    .logos {
        gap: clamp(15px, 5vw, 30px);
        flex-wrap: wrap;
    }

    .logos img {
        height: clamp(50px, 10vw, 70px);
    }
}
