/* Additional CSS for logo and icons */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    max-height: 50px; /* Adjust this value as needed */
    width: auto;
}

.icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 10px;
}

/* Existing CSS remains unchanged */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #d3ceb4;
    color: #ffffff;
}

header {
    background-color: #d3ceb4; /* Темный синий */
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

header p {
    margin: 5px 0 0;
}

nav {
    background-color: #1a1a1a;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
}

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

nav .menu-toggle {
    font-size: 1.5em;
    color: #ffffff;
    cursor: pointer;
    display: none;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 15px 0;
    display: flex;
    align-items: center;
}

nav a:hover {
    border-bottom: 2px solid #004080;
}

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

.section {
    padding: 40px 0;
}

.section h2 {
    text-align: center;
}

.section .content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.section img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.section p, .details {
    text-align: left;
}

.details {
    display: none;
}

.details-toggle {
    color: #004080;
    text-decoration: none;
}

.details-toggle:hover {
    text-decoration: underline;
}

button {
    background-color: #004080;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    cursor: pointer;
}

button:hover {
    background-color: #003366;
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

@media (max-width: 768px) {
    nav .menu-toggle {
        display: block;
    }

    nav ul {
        flex-direction: column;
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    nav li {
        margin: 10px 0;
    }

    .section .content {
        flex-direction: column;
        align-items: center;
    }

    .section img {
        width: 100%;
        height: auto;
        max-width: 150px;
    }
}

@media (min-width: 768px) {
    .container {
        width: 80%;
    }

    header h1 {
        font-size: 2.5em;
    }

    button {
        padding: 20px 40px;
        font-size: 1.2em;
    }
}
