.page-content, .entry-content, .entry-summary {
    margin: 0;
}

.page {
    margin: 0;
}

ul {
	margin: 0;
	padding-left: 20px;
}

nav ul {
	padding-left: 0;
	list-style: none;
	margin: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
}

a:focus,
a:focus-visible,
button:focus,
button:focus-visible {
    outline: none;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
}

.header-container,
.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
}

.header-col {
    flex: 1;
}

.header-col--center {
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
}

.header-col--right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo__img {
    height: 32px;
    width: auto;
    display: block;
}

.header-logo__name {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.site-header a {
    color: #fff;
    text-decoration: none;
}

.site-header a:hover,
.site-header a:visited {
    color: #fff;
}

@media (max-width: 768px) {
    .header-inner {
        padding: 20px 0;
    }

    .header-logo__img {
        height: 24px;
    }

    .header-logo__name {
        font-size: 16px;
    }

    #masthead nav.lang-switcher li a,
    #masthead nav.lang-switcher ul li a {
        font-size: 11px !important;
    }
}

#masthead nav.lang-switcher,
#masthead nav.lang-switcher ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

#masthead nav.lang-switcher li,
#masthead nav.lang-switcher ul li {
    display: flex !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#masthead nav.lang-switcher li::marker,
#masthead nav.lang-switcher ul li::marker {
    content: none !important;
    display: none !important;
}

#masthead nav.lang-switcher li + li::before,
#masthead nav.lang-switcher ul li + li::before {
    content: ' | ' !important;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    margin: 0 4px;
    opacity: 0.8;
}

#masthead nav.lang-switcher li a,
#masthead nav.lang-switcher ul li a {
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    line-height: 1 !important;
}

#masthead nav.lang-switcher li.current-lang a,
#masthead nav.lang-switcher ul li.current-lang a {
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

.site-footer {
    background-color: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 80px 0;
}

.footer-col {
    flex: 1;
}

.footer-col--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.footer-col__title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 24px;
}

.footer-col__subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}

.footer-persons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-persons__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #fff;
    line-height: 1.5;
}

.footer-persons__icon {
    flex-shrink: 0;
    margin-top: 1px;
    opacity: 0.8;
}

.footer-registry-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1.5px solid #fff;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.footer-registry-btn:hover {
    background: #fff;
    color: #000;
}

.footer-registry-btn:hover .footer-registry-btn__icon svg {
    stroke: #000;
}

.footer-registry-btn__icon {
    display: flex;
    align-items: center;
}

.footer-contact {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

.footer-contact strong {
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 24px 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 40px;
        padding: 48px 0;
    }

    .footer-col,
    .footer-col--center,
    .footer-col--right {
        width: 100%;
        text-align: left;
        align-items: flex-start;
    }

    .footer-registry-btn {
        align-self: flex-start;
    }

    .footer-col + .footer-col {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 40px;
    }
}
