body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f7f6; /* Светлый фон */
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 700px;
    width: 90%;
    transform: translateY(0);
    transition: transform 0.5s ease-out;
}

.container:hover {
    transform: translateY(-5px);
}

h1 {
    font-size: 3.2em;
    color: #2c3e50; /* Темно-синий */
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

h1::after {
    content: '|';
    animation: blink-caret .75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #2c3e50; }
}

.subtitle {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.contact-info h2 {
    font-size: 1.8em;
    color: #34495e; /* Средний синий */
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 1.1em;
    margin: 10px 0;
}

.contact-info a {
    color: #3498db; /* Голубой */
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #2980b9; /* Темнее голубой */
    text-decoration: underline;
}

.call-to-action {
    margin-top: 30px;
    font-size: 1.3em;
    font-weight: 700;
    color: #e74c3c; /* Красный для акцента */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    .subtitle, .contact-info p {
        font-size: 1em;
    }
    .container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }
    .subtitle {
        font-size: 0.9em;
    }
    .contact-info h2 {
        font-size: 1.5em;
    }
}