    /* Reset CSS и основные стили */
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: Arial, sans-serif;
        background-color: #f0f0f0;
        line-height: 1.6;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        /* Минимальная высота всего экрана */
    }
    
    .container {
        width: 70%;
        margin: 0 auto;
    }
    
    a {
        text-decoration: none;
        color: #ccc;
    }
    
    header {
        background-color: #333;
        color: #fff;
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        text-align: center;
    }
    
    header img {
        max-width: 100px;
    }
    
    main {
        flex: 1;
        /* Растягиваем основное содержимое на всю доступную высоту */
        padding: 20px 0;
    }
    
    .contact-section {
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .contact-info h2 {
        margin-bottom: 10px;
        color: #333;
    }
    
    .contact-info ul {
        list-style-type: none;
        padding-left: 0;
    }
    
    .contact-info ul li {
        margin-bottom: 5px;
        color: #666;
    }
    
    .contact-form {
        margin-top: 20px;
    }
    
    .contact-form h2 {
        margin-bottom: 10px;
        color: #333;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
    }
    
    .contact-form textarea {
        resize: vertical;
    }
    
    .contact-form button {
        background-color: #333;
        color: #fff;
        border: none;
        cursor: pointer;
    }
    
    .contact-form button:hover {
        background-color: #555;
    }
    
    footer {
        background-color: #333;
        color: #fff;
        text-align: center;
        padding: 10px 0;
        margin-top: auto;
        /* Размещаем footer внизу страницы */
    }