/* Китайские шрифты */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700;900&display=swap');

body {
    font-family: 'Noto Sans SC', 'Open Sans', sans-serif;
}

#banner h2 {
    font-weight: 700;
}

#logo {
    font-weight: 900 !important;
    letter-spacing: 0.1em !important;
}

/* Адаптация для китайского текста */
p, li, a {
    line-height: 1.8em;
}

/* Улучшение читаемости */
.wrapper.style1 {
    background-color: #fafafa;
}

/* Отступы для контактной информации */
dl.contact dt {
    font-weight: 700;
    color: #404248;
}

dl.contact dd {
    margin-bottom: 1.5em;
}

/* Стили для cookie баннера */
#cookie-banner a {
    text-decoration: underline;
}

#cookie-banner a:hover {
    text-decoration: none;
}

/* Адаптивность для мобильных */
@media screen and (max-width: 736px) {
    #cookie-banner {
        padding: 10px;
        font-size: 12px;
    }
    
    #cookie-banner > div {
        flex-direction: column;
        text-align: center;
    }
    
    #cookie-banner span {
        margin-right: 0;
        margin-bottom: 10px;
    }
}