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



.contacts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contacts-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.contacts-info {
    flex: 1;
    min-width: 300px;
}

.contacts-info h2 {
    margin-bottom: 10px;
}

.contacts-info p {
    margin: 10px 0;
}

.contacts-info a {
    color: #0073e6;
    text-decoration: none;
}

.contacts-info a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-links,
.footer-info {
    min-width: 200px;
}

.footer-links a {
    display: block;
    margin: 5px 0;
    color: #ddd;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 30px;
}

.logo span {
    font-weight: bold;
    font-size: 16px;
}

.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.nav a:hover {
    text-decoration: underline;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #42aaff;
    color: #fff;
    flex-wrap: wrap; /* Позволяет переносить содержимое на следующую строку */
    box-sizing: border-box;
}
