.contectOlmme{
    margin-top: 120px;
    margin-bottom: 320px;
}


     /* 添加新的样式来美化电话号码 */
 .contact-numbers {
     margin-top: 80px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     padding: 50px 0;
     background-color: #f8f9fa;
 }

.contact-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 25px 40px;
    margin: 15px 0;
    width: 80%;
    max-width: 400px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.contact-card h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    font-size: 16px;
    margin-top: 0;
}

.phone-icon {
    color: #0066cc;
    font-size: 28px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .contact-card {
        width: 90%;
        padding: 20px;
    }
}
