body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a; /* Темный фон */
    color: #fff; /* Белый текст */
}

/* ... (ваш стиль выше) ... */

header {
    text-align: center;
    padding: 20px 0;
}

.logo-container {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* ... (ваш стиль ниже) ... */


.banner {
    width: 100%;
    height: 20vh;
    background: url('banner.jpg') center/cover; /* Замените 'banner.jpg' на фактический путь к вашему изображению */
    margin-top: 20px;
}

.section {
    padding: 50px 0;
    text-align: center;
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 45%;
    border-radius: 8px;
}

.text {
    max-width: 45%;
}

/* ... (ваш стиль выше) ... */

footer {
    background-color: #333; /* Цвет футера */
    padding: 20px;
    color: #fff; /* Цвет текста в футере */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    text-align: left;
}

.contact-info p {
    margin: 0;
}

/* ... (ваш стиль ниже) ... */


form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

label {
    margin-bottom: 8px;
}

input, textarea {
    margin-bottom: 16px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #4caf50; /* Цвет кнопки */
    color: #fff; /* Цвет текста на кнопке */
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

