/*
        СЕКЦИЯ ХЕДЕРА (НАЧАЛО)
*/

.header {
    background: white;
    backdrop-filter: none;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 80px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

    .nav-links a {
        color: #2c3e50;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: #dc2525;
    }

    .cta-talk {
        background: #dc2525;
        color: white;
        padding: 0.7rem 1.5rem;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        transition: background 0.3s ease;
    }

    .cta-talk:hover {
        background: #b91c1c;
    }

    @media (max-width: 768px) {
        .nav-links{
            display: none;
        }
    }


/*
        СЕКЦИЯ ХЕДЕРА (КОНЕЦ)
*/

