body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f2f4f8;
    color: #333;
}


/* HEADER */
header {
	background: #ffffff url(bg5.jpg) repeat-x 0 0;
    border-bottom: 1px solid #d5d5d5;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* MENU */

header nav a:hover {
  cursor: pointer;
  color: #ff0000;
}



nav a:hover {
  color: #003f7f;
}



.logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #0056b3;
    font-weight: bold;
}

.logo img {
    height: 100px;
    margin-right: 5px;
}

nav a {
    margin: 0 12px;
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}



.lang span {
    margin-left: 10px;
    font-weight: bold;
    cursor: pointer;
    color: #0056b3;
}

/* HERO */
.hero {
    height: 350px;
    background: url('') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    background: rgba(0,0,0,0.55);
    padding: 30px 40px;
    border-radius: 8px;
    text-align: center;
}

.hero-title {
    color: #fff;
    font-size: 36px;
}

.hero-sub {
    color: #e9e9e9;
    font-size: 18px;
}

/* CONTENT */
.content-box {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

/* FOOTER */
footer {
    margin-top: 50px;
    background: #003f7f;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

/* MOBILE */
@media(max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav a {
        display: inline-block;
        margin: 8px 6px;
    }

    .hero {
        height: 250px;
    }
}
