body {
    font-family: 'PT Sans', sans-serif;
    margin: 0;
    padding: 0;
}

/* HEADER – Desktop */
.topnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5vw;
    color: white;
    background-color: rgba(8, 55, 116, 1);
    padding: 1vw 2vw;
}

.top-name {
    font-size: 1.8vw;
    white-space: nowrap;
}

.topnav a,
.topnav a:visited,
.topnav a:hover {
    color: white;
    text-decoration: none;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 2vw;
}

.nav-links a,
.nav-links a:visited {
    color: white;
    text-decoration: none;
    font-size: 1.5vw;
    padding: 0.5vw 1vw;
}

.nav-links a:hover,
.topnav a:hover  {
    text-decoration: underline;
    color: rgba(122, 169, 250, 1);
}

.call {
    color: black;
    background-color: white;
    border-radius: 2vw;
    padding: 0.5vw 1vw;
    white-space: nowrap;
}

/* HAMBURGER - Hidden by default */
.hamburger {
    display: none;
}

/* MAIN CONTENT */
.together {
    display: flex;
    flex-wrap: wrap;
    margin: 3vw 4vw;
    align-items: flex-start;
}

img {
    width: 4vw;
    max-width: 90%;
    margin: 0 4vw 3vw 4vw;
}

.contacts {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 1vw;
}

.title {
    color: rgba(8, 55, 116, 1);
    font-size: 4vw;
    margin: 4vw;
    width: fit-content;
}

/* FOOTER */
footer {
    color: white;
    background-color: rgba(8, 55, 116, 1);
    height: 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2vw;
}

.year {
    margin-right: 1vw;
}

/* ✅ MOBILE STYLES */
@media screen and (max-width: 768px) {
    .topnav {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-name {
        font-size: 5vw;
        margin-bottom: 1vw;
    }

    .hamburger {
        display: block;
        font-size: 8vw;
        color: white;
        cursor: pointer;
        padding: 1vw 2vw;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(8, 55, 116, 1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 5vw;
        padding: 3vw 5vw;
        text-align: left;
    }

    .call {
        font-size: 4.5vw;
        padding: 2vw 4vw;
        margin: 2vw 0;
    }

    .together {
        flex-direction: column;
        align-items: center;
        margin: 5vw 4vw;
    }

    img {
        width: 5vw;
        margin: 2vw 0;
    }

    .contacts {
        font-size: 4.5vw;
        text-align: center;
        margin-top: 3vw;
    }

    .title {
        font-size: 7vw;
        text-align: center;
        margin: 4vw auto;
    }

    footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        padding: 3vw 0;
        text-align: center;
    }

    .year {
        margin-right: 0;
    }
}
