/* Language Switcher Styles */
.language-switcher {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.language-switcher li {
    margin: 0;
    padding: 0;
}

.language-switcher a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    font-size: 0.875rem;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.language-switcher a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Current language style */
.language-switcher .current-lang a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Mobile styles */
@media (max-width: 991px) {
    .language-switcher {
        flex-direction: row;
    }
    
    .language-switcher a {
        padding: 0.5rem 0;
        margin: 0 0.5rem;
    }
}

/* Static page template (privacy, terms, etc.) */
.static-page__content {
    font-size: 1rem;
    line-height: 1.75;
    color: #60697b;
}

.static-page__content > *:first-child {
    margin-top: 0;
}

.static-page__content h2,
.static-page__content h3,
.static-page__content h4 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2f353a;
    font-weight: 700;
}

.static-page__content h2 {
    font-size: 1.35rem;
}

.static-page__content h3 {
    font-size: 1.15rem;
}

.static-page__content p,
.static-page__content ul,
.static-page__content ol {
    margin-bottom: 1rem;
}

.static-page__content ul,
.static-page__content ol {
    padding-left: 1.25rem;
}

.static-page__content a {
    color: #3f78e0;
    text-decoration: underline;
}

.static-page__content a:hover {
    color: #001a70;
}

.static-page__pagination {
    font-size: 0.9rem;
}