/* Общие стили */
body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(to right, #1E3C72, #2A5298); /* Темно-синий градиент */
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}
body {
    background: linear-gradient(135deg, #0f172a, #1e40af); /* Темно-синий градиент */
    color: white;
}

/* Контейнер */
.container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Логотип */
.logo {
    width: 150px;
    margin-bottom: 20px;
}

/* Заголовок */
h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* Текст */
p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Контакты */
.contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Контактные кнопки */
.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

/* WhatsApp */
.whatsapp {
    background: #25D366;
}

.whatsapp:hover {
    background: #1DA851;
}

/* Email */
.email {
    background: #007BFF;
}

.email:hover {
    background: #0056B3;
}

/* Иконки */
.contact-item img {
    width: 24px;
    height: 24px;
}
/* Контактные кнопки */
.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

/* WhatsApp */
.whatsapp {
    background: #25D366;
}

.whatsapp:hover {
    background: #1DA851;
}

/* Email */
.email {
    background: #007BFF;
}

.email:hover {
    background: #0056B3;
}

/* Телефон */
.phone {
    background: #FF6B00;
    position: relative;
}

.phone:hover {
    background: #CC5500;
}

/* Иконки */
.contact-item img {
    width: 24px;
    height: 24px;
}

/* Анимация звонка */
.phone img {
    animation: ring 1.5s infinite ease-in-out;
}

@keyframes ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(10deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(5deg); }
    40% { transform: rotate(-5deg); }
    50% { transform: rotate(0); }
    100% { transform: rotate(0); }
}
@keyframes floating-dots {
    0% { transform: translateY(0px); opacity: 0.7; }
    50% { transform: translateY(-10px); opacity: 1; }
    100% { transform: translateY(0px); opacity: 0.7; }
}

.bg-dots {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: floating-dots 3s infinite ease-in-out;
}

/* Размещаем точки в разных местах */
.dot-1 { top: 10%; left: 20%; animation-delay: 0s; }
.dot-2 { top: 50%; left: 40%; animation-delay: 1s; }
.dot-3 { top: 70%; left: 80%; animation-delay: 2s; }