/* 联系方式展示块现代化设计样式 */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.section-divider span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.card-icon-bg {
    z-index: 0;
    right: -20px;
    top: -20px;
}

.opacity-10 {
    opacity: 0.1;
}

.card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-title {
    font-weight: 700;
    color: #333;
}

.card-text {
    color: #666;
}

.hover-effect {
    transition: all 0.3s ease;
    text-decoration: none;
}

.hover-effect:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.rounded-pill {
    border-radius: 50px !important;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem !important;
    }
    
    .contact-card {
        margin-bottom: 1rem;
    }
}