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

body {
    font-family: 'Century Gothic Paneuropean', Arial, sans-serif;
    background-color: #1e1e1e;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 1 100%;
}

header {
    background-color: #1e1e1e;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    flex: 1 1 20%;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    cursor: pointer;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo h1 {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    text-transform: uppercase;
    background: linear-gradient(
        0deg,
        #fff,
        #A2B4BA
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu {
    flex: 1 1 40%;
}

.nav-menu-mobile {
    display: none;
}

.nav-menu a,
.nav-menu-mobile a {
    padding: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
}

.language-select {
    position: relative;
}

.lang-select {
    appearance: none;
    background: transparent;
    border: 1px solid #b8b9bb;
    border-radius: 4px;
    padding: 6px 28px 6px 18px;
    color: #ffffff;
    cursor: pointer;
    font-size: 0.9rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.lang-select:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.lang-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-select option {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 8px;
}

/* Footer styles */
footer {
    background-color: #1e1e1e;
    padding: 2rem 0 1rem;
    text-align: center;
}

.footer-content {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 auto;
}

.footer-content .footer-content-stripe {
    padding: 0.5rem 0;
    background-color: #416297;
    margin-bottom: 1rem;
}

.footer-content a {
    display: inline-block;
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.9rem;
}

.footer-content p a {
    text-decoration: none;
}

/* Separator bar styles */
.separator-bar {
    position: relative;
    height: 2px;
    background: #4f5051;
}

.separator-bar::before {
    content: '';
    position: absolute;
    width: 1rem;
    height: 1rem;
    background: #4f5051;
    left: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.left.separator-bar::before {
    left: 0;
}

.container {
    max-width: 1200px;
    padding: 0 3rem;
    margin: 0 auto;
}

.white-space-nowrap {
    white-space: nowrap;
}

.mt-4 {
    margin-top: 1rem;
}

/* Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    nav {
        padding: 0;
    }

    nav .nav-menu-mobile {
        display: flex;
        flex: 1 1 100%;
    }

    .container {
        padding: 0 1rem;
    }
}
