.contact-message {
    position: relative;
    padding-bottom: 60px; /* 根据装饰高度调整 */
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 12px;
}

.contact-decoration {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.contact-message > *:not(.contact-decoration) {
    position: relative;
    z-index: 1;
}

.contact-message p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.contact-phone {
    margin-top: 20px;
    text-align: center;
}

.contact-phone a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.contact-phone a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.contact-phone a i {
    margin-left: 8px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .contact-phone a {
        padding: 10px 20px;
        font-size: 14px;
    }
} 