/* Contact Block Styles */
.contact-block {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.6;
}

.contact-text {
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.phone-link {
    color: #2a5bd7;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    height: 32px;
}

.phone-link:hover {
    color: #ff6600;
}

.messengers {
    display: flex;
    gap: 10px;
    align-items: center;
}

.messenger-link {
    transition: transform 0.3s ease;
    line-height: 0;
    display: inline-block;
}

.messenger-link:hover {
    transform: scale(1.1);
}

.messenger-icon {
    width: 32px;
    height: 32px;
    vertical-align: middle;
}