/* 审计服务背景样式 */
.audit-banner {
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 630px;
    display: flex;
    align-items: center;
    color: white;
}

.audit-banner.AuditServices {
    background-image: url('../images/audit_services.png');
}

.audit-banner.OtherBusinessServices {
    background-image: url('../images/OtherBusinessServices.png');
}

.audit-content-text {
    max-width: 600px;
}

.audit-content {
    width: 1170px;
    margin: 0 auto;
}

.audit-title {
    font-size: 44px;
    font-weight: bold;
}

.audit-subtitle {
    font-weight: bold;
    font-size: 28px;
    color: #FFFFFF;
    line-height: 40px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.audit-details {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

.audit-details p {
    margin-bottom: 10px;
}

.audit-consult-btn {
    padding: 18px 68px;
    background-color: white;
    color: blue;
    border: none;
    border-radius: 34px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    color: #1563FF;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}

.audit-consult-btn:hover {
    background-color: #f0f0f0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .audit-banner {
        padding-left: 20px;
        padding-right: 20px;
        height: auto;
    }

    .audit-title {
        font-size: 28px;
    }

    .audit-subtitle {
        font-size: 16px;
    }
}

.audit-banner.CompanyRegistration {
    background-image: url('../images/CompanyRegistration.png');
}



.registration-steps {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.step-item {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #FFF;
}

.audit-banner.FinancialAccounting {
    background-image: url('../images/FinancialAccounting.png');
}

/* contentUs page specific styles - Desktop version using pixels */
.contentUs-banner {
    width: 100%;
    height: 190px;
    background: #1563FF;
    background-image: url('../images/contentUs.png');
    background-size: cover;
}




.about-section {
    padding-bottom: 60px;
    margin-top: -80px;
}

.about-title {
    font-size: 44px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}



.about-image {
    min-width: 300px;
    text-align: center;
    padding-top: 40px;
    width: 600px;
    border-radius: 10px;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-section h2 {
    font-weight: bold;
    color: #111111;
    line-height: 40px;
    margin-bottom: 20px;
}



.about-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.contact-button {
    cursor: pointer;
    display: inline-block;
    padding: 12px 68px;
    background: #1563FF;
    color: white;
    text-decoration: none;
    border-radius: 27px;
    font-size: 16px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

/* Mobile responsive design - still using relative units for mobile */
@media (max-width: 768px) {
    .contentUs-title {
        font-size: 28px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .about-section h2 {
        font-size: 24px;
        text-align: center;
    }

    .about-section p {
        font-size: 15px;
    }


    .about-image {
        width: auto;
    }

    .contentUs-banner {
        height: 1.9rem;
    }

    .about-title {
        text-align: center;
        font-size: .48rem;
        margin-bottom: .6rem;
    }

    .about-section {
        margin-top: -1rem;
    }

    .about-section h2 {
        margin-bottom: 6rem;
    }

    .about-content {
        position: relative;
    }

    .about-image {
        width: 6.5rem;
        position: absolute;
        top: 1.6rem;
        left: 50%;
        transform: translateX(-50%);
    }


}