/* ===== 首页 - 经典商务风格 ===== */
/* 配色：红色(#D10024) + 深蓝(#15161D) */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #15161D 0%, #2B2D42 100%);
    color: #FFF;
    padding: 80px 0;
    text-align: center;
}
.hero-section h1 {
    color: #FFF;
    font-size: 36px;
    margin-bottom: 20px;
}
.hero-section p {
    font-size: 18px;
    color: #B9BABC;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}
.hero-section .hero-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #D10024;
    color: #FFF;
    border-radius: 40px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}
.hero-section .hero-btn:hover {
    background: #ff1a3d;
    color: #FFF;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: #FBFBFC;
}
.about-section .about-text {
    font-size: 15px;
    line-height: 2;
    color: #333;
    text-indent: 2em;
}
.about-section .about-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    flex-wrap: wrap;
}
.about-section .stat-item {
    text-align: center;
    padding: 20px;
}
.about-section .stat-item .stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #D10024;
}
.about-section .stat-item .stat-label {
    font-size: 14px;
    color: #8D99AE;
    margin-top: 5px;
}

/* Service Cards */
.services-section {
    padding: 60px 0;
}
.section-title h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}
.section-title h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #D10024;
    margin: 10px auto 0;
}
.service-card {
    background: #FFF;
    border: 1px solid #E4E7ED;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
    transition: 0.3s;
    height: 100%;
}
.service-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.service-card .service-icon {
    font-size: 48px;
    color: #D10024;
    margin-bottom: 15px;
}
.service-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    color: #8D99AE;
    line-height: 1.8;
}
.service-card .service-link {
    display: inline-block;
    margin-top: 15px;
    color: #D10024;
    font-weight: 700;
}

/* Advantages */
.advantages-section {
    padding: 60px 0;
    background: #FBFBFC;
}
.advantage-item {
    padding: 20px;
    margin-bottom: 20px;
}
.advantage-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2B2D42;
}
.advantage-item h4 i {
    color: #D10024;
    margin-right: 8px;
}
.advantage-item p {
    font-size: 14px;
    color: #8D99AE;
    line-height: 1.8;
}

/* Wenzhou Culture */
.culture-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2B2D42 0%, #15161D 100%);
    color: #FFF;
}
.culture-section h3 {
    color: #FFF;
}
.culture-section h3::after {
    background: #D10024;
}
.culture-section p {
    color: #B9BABC;
    line-height: 2;
    text-indent: 2em;
    font-size: 15px;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}
.contact-info-box {
    background: #FBFBFC;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
}
.contact-info-box i {
    font-size: 36px;
    color: #D10024;
    margin-bottom: 15px;
}
.contact-info-box h4 {
    font-size: 16px;
    margin-bottom: 8px;
}
.contact-info-box p {
    font-size: 14px;
    color: #8D99AE;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #FBFBFC;
}
.faq-item {
    background: #FFF;
    border: 1px solid #E4E7ED;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}
.faq-item h4 {
    font-size: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}
.faq-item h4::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    color: #D10024;
}
.faq-item.active h4::after {
    content: '-';
}
.faq-item .faq-answer {
    display: none;
    padding-top: 15px;
    font-size: 14px;
    color: #8D99AE;
    line-height: 1.8;
    border-top: 1px solid #E4E7ED;
    margin-top: 15px;
}
.faq-item.active .faq-answer {
    display: block;
}

/* Footer Enhancement */
.footer-about-text {
    font-size: 13px;
    color: #8D99AE;
    line-height: 1.8;
    margin-bottom: 15px;
}
