.contact-hero {
    background: linear-gradient(180deg,#fbc55b 0%,#fda863 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 每行显示3个卡片 */
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card-header {
    height: 50px;
    border-radius: 10px 10px 0 0;
    color: #3b3b3b;
    background: #fbc55a;
}

.service-card-body {
    padding: 25px;
    text-align: center;
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #667eea;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
}

.highlight-box h2 {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #764ba2;
}

.qr-code {
    width: 200px;
    height: 200px;
    margin: 20px auto;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.service-card-body h3 {
    font-weight: 500;
}

.contact-card h3 {
    font-weight: 500;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 平板上每行显示2个卡片 */
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr; /* 手机上每行显示1个卡片 */
        padding: 20px;
    }

    .contact-hero {
        padding: 60px 20px;
    }
}