/* Карточка контакта */
.contact-card {
    display: flex;
    flex-direction: column; /* Элементы теперь идут в колонку */
    align-items: center;
    background: #f8f8f8;
    border: 1px solid #ccc;
    padding: 20px;
    max-width: 996px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center; /* Центрируем текст */
}

/* Аватар */
.contact-avatar {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 50%; /* Круглый аватар */
    margin-bottom: 15px;
    border: 2px solid #F4860B;
}

.contact-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Информация */
.contact-info {
    width: 100%;
}

/* Заголовок (В цвете проекта) */
.contact-info h2 {
    font-size: 20px;
    color: #F4860B;
    margin-bottom: 10px;
}

/* Имя */
.contact-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Кнопка (Бордовый цвет) */
.contact-message {
    display: inline-block;
    background: #930000;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    transition: background 0.3s;
}

.contact-message:hover {
    background: #760000;
}

/* Email */
.contact-email {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-top: 15px;
}

.contact-email img {
    width: 20px;
    margin-right: 8px;
}

/*  Адаптивность для мобильных */
@media (max-width: 768px) {
    .contact-card {
        padding: 15px;
    }

    .contact-avatar {
        width: 100px;
        height: 100px;
    }

    .contact-email {
        flex-direction: column;
        align-items: center;
    }
}