* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
}

.site-header {
    background: #30261b;
    border-bottom: 1px solid #30261b;
    height: 100px;
}

.container {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 90px;
}

.logo img {
    height: 75px;
    width: auto;
    display: block;
    margin-top: 5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 52px;
    margin-left: auto;
    margin-right: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #9e2213;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: #b72716;
    color: white;
    text-decoration: none;

    padding: 14px 26px;
    border-radius: 12px;

    font-size: 17px;
    font-weight: 700;

    transition: background 0.2s;
}

.phone-btn:hover {
    background: #9e2213;
}

.phone-icon {
    width: 20px;
    height: 20px;
}