/* Основные стили */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

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

header {
    background: #2c3e50;
    color: white;
    padding: 20px 0;
    margin-bottom: 30px;
}

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

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin: 15px 0 0;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a.active {
    color: #f39c12;
    border-bottom: 2px solid #f39c12;
}

footer {
    background: #34495e;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

/* Стили для документов */
.documents-list {
    list-style: none;
    padding: 0;
}

.documents-list li {
    margin-bottom: 10px;
}

.documents-list a {
    color: #2980b9;
    text-decoration: none;
}

.documents-list a:hover {
    text-decoration: underline;
}

/* Стили для контактов */
.contact-block {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.contact-block h3 {
    margin-top: 0;
    color: #2c3e50;
}

.map {
    margin-top: 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

/* Галерея */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.gallery img {
    max-width: 300px;
    height: auto;
    border-radius: 5px;
}

/* Адаптивность */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .gallery img {
        max-width: 100%;
    }
}