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

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

.hidden {
    display: none !important;
}

.header {
    background-color: #000;
    color: white;
    padding: 15px 0;
    border-bottom: 1px solid #e6e9ec;
    position: relative;
    z-index: 1000;
}

.header .container { 
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.header .logo img {
    height: 40px;
}

.header .nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.header .nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.header .nav a:hover {
    opacity: 0.75;
}

.lang-selector {
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .header .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 20px;
        display: none;
    }

    .header .nav.active {
        display: flex;
    }

    .lang-selector {
        display: none
    }
}

.privacy-policy {
    background-color: #fff;
    color: #222;
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
}
 

.privacy-policy h1 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #222;
}

.privacy-policy h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
}

.privacy-policy p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
}

.footer {
    background-color: #000;
    color: #fff;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

 

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left,
.footer-right {
    flex: 1 1 500px;
    min-width: 300px;
}

.footer-right {
    text-align: right;
}

.footer__logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer__address-heading {
    font-weight: bold;
    margin: 20px 0 10px;
}

.footer__info-text {
    margin-bottom: 15px;
    font-size: 16px;
    color: #fff;
}

.policy {
    text-align: center;
    margin-top: 40px;
}

.copyright {
    font-size: 20px;
}

.policy-link {
    color: #fff;
    text-decoration: underline;
    font-size: 16px;
}

/* Адаптив */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer__logo img {
        margin: 0 auto 20px;
    }

    .footer__info {
        margin-top: 30px;
    }
}