body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    color: #333;
}

a {
    color: #0d47a1;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* HEADER */
.site-header {
    background-color: #003366;
    color: white;
    padding: 15px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 50px;
}

/* NAVIGATION */
.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.main-nav li a {
    color: white;
    font-weight: bold;
    padding: 6px 12px;
    display: inline-block;
}

.main-nav .active a {
    text-decoration: underline;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* LANGUAGE SWITCHER */
.lang-switcher img {
    height: 20px;
    vertical-align: middle;
    margin-left: 10px;
}

/* BANNER */
.page-banner {
    background-color: #0d47a1;
    color: white;
    padding: 30px 20px; /* уменьшено с 40px */
    text-align: center;
}

.page-banner h1 {
    margin: 0 0 10px;
    font-size: 2em;
}

/* CONTENT SECTION */
.content-section {
    background-color: white;
    padding: 30px;
}

.content-section h2 {
    margin-top: 0;
}

/* FORMS (quote / contact) */
.quote-form,
.contact-form form {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.quote-form label,
.contact-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.quote-form input,
.contact-form input,
.quote-form textarea,
.contact-form textarea,
.quote-form select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

button.btn-primary,
.btn-primary {
    background-color: #0d47a1;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #08306b;
}

/* FOOTER */
footer.site-footer {
    background-color: #f1f1f1;
    padding: 10px; /* уменьшено с 20px */
    font-size: 0.9em;
    color: #555;
    text-align: center;
}

.footer-left,
.footer-right {
    text-align: center;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.footer-right ul li {
    display: inline-block;
    margin: 0 10px;
}

.footer-right a {
    text-decoration: none;
    color: #0d47a1;
}

.footer-right a:hover {
    text-decoration: underline;
}

/* CONTACT LAYOUT */
.contact-section .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.contact-info,
.contact-form {
    flex: 1 1 45%;
}

/* MAP */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info,
    .contact-form {
        flex: 1 1 100%;
    }
}