/* Стили для вашей кнопки "Контакты" */
.contact-button {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background-color: #002d4b;
    color: #ffc994;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    z-index: 1000;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #00436a;
}

.contact-button:focus {
    outline: none;
    box-shadow: none;
}

.contact-button.active {
    background-color: #002d4b;
    color: #ffc994;
}

/* Стили для иконки в вашей кнопке "Контакты" */
.contact-button i {
    font-size: 24px; /* Желаемый размер иконки */
}

/* Дополнительные стили для меню контактов, если необходимо */
.contact-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 20px;
    bottom: 100px;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: opacity 0.3s, visibility 0.3s;
}

.contact-menu.show {
    opacity: 1;
    visibility: visible;
}

.contact-menu a {
    margin-bottom: 10px;
    text-decoration: none;
}

/* Дополнительные стили для кнопок в меню контактов, если необходимо */
.contact-menu button {
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #ffc994;
    background-color: #002d4b;
    transition: transform 0.3s, background-color 0.3s, opacity 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.contact-menu button:focus {
    outline: none;
    box-shadow: none;
}

.contact-menu button:nth-child(1) {
    transition-delay: 0.1s;
}

.contact-menu button:nth-child(2) {
    transition-delay: 0.2s;
}

.contact-menu button:nth-child(3) {
    transition-delay: 0.3s;
}

.contact-menu button:nth-child(4) {
    transition-delay: 0.4s;
}

.contact-menu button:nth-child(5) {
    transition-delay: 0.5s;
}

.contact-menu button:nth-child(6) {
    transition-delay: 0.6s;
}

.contact-menu button:nth-child(7) {
    transition-delay: 0.7s;
}

.contact-menu.show button {
    opacity: 1;
    transform: translateY(0);
}

.contact-menu button:hover {
    transform: scale(1.1);
}

.contact-menu button:active {
    transform: scale(1.1);
}
