/* Общие стили */
body {
    position: relative;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #ffffff;
}

.page-container {
    margin: 0 auto;
}










/* Разделитель */
hr {
    border: 0;
    height: 1px;
    background: #ccc;
    margin: 20px 0;
}

/* Контейнер кнопок */
.contact-form-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Заголовок способов связи */
.contact-form h6 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 18px;
    color: #2c3e50;
}

/* Подвал */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-text {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-size: 16px;
}

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