body {
    font-family: 'Montserrat', sans-serif;
    color: #0f0e0f;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
}

.header img {
    margin: 18px;
}

h1, h2, h3 {
    letter-spacing: 1.1px;
    text-align: center;
    font-family: "Times New Roman", Times, serif;
}

h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #e41b41;
}

h3 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    font-style: italic;
    color: #0f0e0f;
}

.contact-info p {
    font-size: 30px;
	line-height: 1.4;
}

.download-button {
	font-size: 30px;
    display: inline-block;
    background-color: #e41b41;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    margin: 10px 0;
}

.map iframe {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 5px;
}

.language-switcher {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    font-size: 28px;
}

.language-switcher a {
    color: #007bff;
    text-decoration: none;
}

.blue-line {
    border: none; /* Убираем стандартную границу */
    border-top: 2px solid #e41b41 ; /* Первая линия синяя толщиной 2px */
    border-bottom: 1px solid #e41b41 ; /* Вторая линия тонкая, с цветом #007bff */
    margin: 20px 0; /* Отступы сверху и снизу */
}