body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.header {
    text-align: center;
    padding: 30px 0;
    background: linear-gradient(135deg, #1e5799 0%,#2989d8 100%);
    color: white;
    border-radius: 8px;
    margin-bottom: 30px;
}
.header h1 {
    margin: 0;
    font-size: 2.5em;
}
.header p {
    margin: 10px 0 0;
    font-size: 1.2em;
}
.main-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.content {
    padding: 30px 0;
    text-align: center;
}
.content h2 {
    color: #2989d8;
    font-size: 2em;
}
.phone-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    z-index: 100;
}
.phone-btn:hover {
    background-color: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
.phone-icon {
    margin-right: 8px;
    font-size: 20px;
}
.service-highlights {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 40px 0;
}
.service-card {
    width: 30%;
    min-width: 250px;
    padding: 20px;
    margin: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.site-footer {
    background: #2c3e50;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
}
.footer-brand {
    margin-bottom: 20px;
}

.slogan {
    margin-top: 10px;
    color: #ecf0f1;
    font-style: italic;
}
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}
.footer-nav a {
    color: #bdc3c7;
    margin: 0 15px;
    text-decoration: none;
}
.footer-nav a:hover {
    color: #fff;
}
.footer-legal {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    margin-top: 20px;
}
.compliance-notice {
    font-size: 12px;
    color: #95a5a6;
    line-height: 1.6;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .service-card {
        width: 100%;
    }
    .header h1 {
        font-size: 2em;
    }
}