
@import url('https://fonts.googleapis.com/css2?family=Arial&family=Montserrat&family=Liberation+Sans&display=swap');

body {
    margin: 0;
    background-color: #101b2e;
    color: white;
    font-family: 'Liberation Sans', sans-serif;
    overflow-x: hidden;
    text-align: center;
}

.container {
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 140px;
    height: auto;
    animation: slideIn 1.5s ease-out;
}

.text-block p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contacts {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    max-width: 400px;
}

.contacts a {
    background-color: white;
    color: #101b2e;
    padding: 14px 20px;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.contacts a:hover {
    opacity: 0.85;
}

.address {
    margin-top: 30px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    font-weight: 300;
    color: #ccc;
}

.address span {
    font-weight: 400;
    color: #888;
}

footer {
    margin-top: 60px;
    font-size: 14px;
    color: #ccc;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Мобильная адаптация */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    .text-block p {
        font-size: 16px;
    }

    .contacts a {
        width: 100%;
        font-size: 16px;
        padding: 14px 0;
    }

    .contacts {
        max-width: 100%;
        padding: 0 10px;
    }

    .logo {
        width: 160px;
    }

    .address {
        font-size: 13px;
        margin-top: 25px;
    }

    footer {
        font-size: 12px;
    }
}
