* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

#language-toggle:hover {
    background-color: #e0e0e0;
}

.lang-en {
    display: none;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    margin-top: 60px; /* Отступ для фиксированного заголовка */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #006400; /* Полностью непрозрачный зеленый фон */
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Oswald', sans-serif;
}

nav ul li a:hover {
    color: #add8e6;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('background_photo.png') no-repeat center center/cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 100, 0, 0.5);
    z-index: 1;
}

.slogan {
    color: #fff;
    font-size: 48px;
    font-family: 'Trebuchet MS', Arial, sans-serif;
    text-align: center;
    z-index: 2;
}

section {
    padding: 60px 20px;
    text-align: center;
}

section#about, section#contact {
    padding-top: 120px;
}

section#about {
    background-color: #e0ffff;
    font-family: 'Ubuntu', Arial, sans-serif;
    font-size: 18px;
}

section#about h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

section#about p, section#about ul {
    margin-bottom: 20px;
    line-height: 1.6;
}

section#about ul {
    list-style-type: disc;
    padding-left: 40px;
    text-align: left;
    margin-top: 20px;
}

section#contact {
    background-color: #98fb98;
}

section#contact p {
    margin: 10px 0;
}

#language-toggle {
    background-color: #fff;
    border: none;
    color: #006400;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
}

@font-face {
    font-family: 'Trebuchet MS';
    src: url('fonts/trebuc.ttf') format('woff2'),
         url('fonts/trebuc.ttf') format('woff');
    font-weight: normal;
    font-style: normal;
}


