body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

header {
    background-color: #005b96;
    color: white;
    padding: 1rem 0;
    position: relative;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

nav {
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.sidebar {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.sidebar li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.sidebar li a:hover, .sidebar li a.active {
    color: #b3cde0;
}

.lang-switcher {
    font-size: 0.8rem;
}

.lang-switcher a {
    color: white;
    text-decoration: none;
}

.hero {
    position: relative;
    text-align: center;
}

.hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 91, 150, 0.7);
    padding: 2rem;
    color: white;
}

.hero-text h1 {
    margin: 0;
    font-size: 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #03396c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
}

.benefits {
    padding: 2rem 0;
    text-align: center;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    padding: 1rem;
    border: 1px solid #005b96;
    border-radius: 5px;
}

footer {
    background-color: #005b96;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 250px;
        background-color: #005b96;
        flex-direction: column;
        padding: 4rem 1rem;
        transition: right 0.3s ease;
        z-index: 999;
        visibility: hidden;
    }

    .sidebar.active {
        right: 0;
        visibility: visible;
    }

    .sidebar li {
        margin: 1rem 0;
    }

    .lang-switcher {
        margin-top: 2rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }
}