/* Контакты */
.contact {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.8em;
    margin-bottom: 50px;
    color: #1a1a1a;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #00e5ff, #00b0ff);
    border-radius: 3px;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: left;
}

.contact-info p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #444;
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    background: #0088cc;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.telegram-link:hover {
    background: #00aaff;
    transform: translateY(-3px);
}

.telegram-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
}