.index-banner {
    padding: 60px 0;
    position: relative;
    background-image: url(../images/banner.png);
    background-size: cover;
    background-position: center;
    padding-bottom: 140px;
}



.banner-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Section */
/* .footer {
    background: #181C2E;
    padding: 15px 0;
    text-align: center;
    font-weight: 400;
    color: #7F8395;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-text {
    margin: 0;
    line-height: 1.6;
} */

/* Pagination Styles */
.pagination {
    margin: 40px 0;
    text-align: center;
}

.pagination-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pagination-controls a,
.pagination-controls span {
    padding: 10px 15px;
    text-decoration: none;
    color: #666;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-controls a:hover {
    background-color: #f5f5f5;
    border-color: #1563FF;
    color: #1563FF;
}

.pagination-controls .active {
    background-color: #1563FF;
    color: white;
    border-color: #1563FF;
}

.pagination-controls .prev-page,
.pagination-controls .next-page {
    font-weight: 500;
}

.pagination-controls .page-number {
    min-width: 40px;
    text-align: center;
}

.pagination-controls span {
    cursor: default;
    background-color: transparent;
    border: none;
}

/* Responsive Pagination */
@media (max-width: 768px) {
    .pagination-controls {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pagination-controls a,
    .pagination-controls span {
        padding: 8px 12px;
        font-size: 14px;
    }
}

.banner-content {
    text-align: center;
}

.banner-header {
    margin-bottom: 20px;
}

.banner-badge {
    background-color: #e0f7fa;
    color: #0288d1;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}


.banner-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.banner-description {
    font-family: SourceHanSansSC;
    font-weight: 400;
    font-size: 16px;
    color: #111111;
    max-width: 850px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.banner-features {
    display: flex;
    justify-content: space-between;
}

.feature-item {
    display: flex;
    align-items: center;
    background-color: rgba(51, 89, 232, 0.05);
    padding: 15px;
    border-radius: 8px;
    width: 237px;
}

.feature-icon {
    width: 37px;
    margin-left: 20px;
    margin-right: 25px;
}

.feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: left;
    flex: 1;
    max-width: 110px;
}

.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn-primary {
    height: 50px;
    background: #3359E8;
    border-radius: 10px;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 300px;
}

.btn-primary:hover {
    background: #1240e4;
}

.btn-secondary {
    width: 300px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #3359E8;
    color: #3359E8;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: #f0f9ff;
}

.banner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.logo-item {
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.05);
}

/* 悬浮数据统计模块样式 */
.stats-float-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
    position: absolute;
    z-index: 10;
    bottom: -59px;
}

.stats-item {
    width: 303px;
    height: 140px;
    background: #FFFFFF;
    box-shadow: 0px 0px 25px 0px rgba(200, 203, 212, 0.25);
    border-radius: 10px;
    border: 1px solid #F3F3F3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.stats-title {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    white-space: nowrap;
}

.stats-value {
    font-size: 24px;
    font-weight: bold;
    color: #3359e8;
    margin-bottom: 5px;
}

.stats-desc {
    font-size: 12px;
    color: #999;
}


/* 响应式设计 */
@media (max-width: 1280px) {
    .stats-item {
        width: 240px;
        height: 120px;
    }

    .stats-value {
        font-size: 20px;
    }
}

/* 业务结构表格模块样式 */
.business-structures-section {
    background: #F8F8F9;
    padding: 100px 0;
}

/* Timeline & Process Section */
.timeline-section {
    background-color: #ffffff;
    padding: 60px 0;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    text-align: center;
}

.timeline-container {
    max-width: 1300px;
    margin: 0 auto;
}

.timeline-title {
    font-size: 28px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 40px;
    text-align: center;
}

.timeline-wrapper {
    overflow-x: auto;
    padding: 20px 0;
}

.timeline-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 1300px;
    margin-bottom: 20px;
}

.timeline-step {
    flex: 1;
    display: flex;
    justify-content: center;
}

.step-circle {
    width: 220px;
    height: 220px;
    background: #FFFFFF;
    box-shadow: 0px 0px 25px 0px rgba(200, 203, 212, 0.25);
    border-radius: 110px;
    border: 1px solid #F3F3F3;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-top: 30px;
}

.step-circle img {
    width: 32px;
    height: 32px;
    margin-bottom: 15px;
}

.step-time {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
    display: block;
}

.step-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    color: #111111;
    max-width: 154px;
}

.timeline-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-arrow img {
    width: 20px;
}

.timeline-note {
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
    text-align: center;
}

.timeline-subnote {
    font-size: 14px;
    color: #666666;
    text-align: center;
}

/* Responsive design */
@media (max-width: 1024px) {
    .timeline-steps {
        flex-wrap: wrap;
        min-width: auto;
    }

    .timeline-step {
        flex: 0 0 calc(50% - 30px);
        margin-bottom: 30px;
    }

    .timeline-arrow {
        transform: rotate(90deg);
        width: 40px;
        margin: 10px auto;
        display: none;
    }

    .step-circle {
        max-width: 100%;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 40px 15px;
    }

    .timeline-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .timeline-container {
        padding: 0px;
    }

    .timeline-step {
        width: 45vw;
        height: 45vw;
        margin-bottom: 30px;
    }

    .step-circle {
        /* padding: 20px 15px; */
        width: 45vw;
        height: 45vw;
        justify-content: center;
        padding-top: 0px;
    }

    .step-time {
        font-size: 16px;
    }

    .step-description {
        font-size: 13px;
    }

    .use-case-description {
        display: none;
    }
}


.business-container {
    max-width: 1300px;
    margin: 0 auto;
}

.business-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
}

.business-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
    text-align: center;
}

.business-description {
    font-size: 16px;
    color: #666666;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Bank Account Readiness Section */
.bank-readiness-section {
    background-color: #f8f8f9;
    padding: 80px 0;
    padding-bottom: 0px;
}

.bank-readiness-container {
    max-width: 1300px;
    margin: 0 auto;
}

.bank-readiness-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
}

.bank-readiness-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.bank-readiness-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bank-readiness-intro {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.bank-readiness-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bank-readiness-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
    color: #333333;
    font-weight: 500;
    line-height: 1.5;
}

.bank-readiness-note {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.bank-readiness-image {
    flex: 0 0 45%;
    max-width: 500px;
}

.bank-readiness-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Resident/Nominee Director Section */
.director-section {
    background-color: #f8f8f9;
    padding: 80px 0px;
    margin-bottom: 40px;
}

.director-container {
    max-width: 1300px;
    margin: 0 auto;
}

.director-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
}

.director-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.director-image {
    flex: 0 0 45%;
    max-width: 500px;
}

.director-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.director-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.director-intro {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.director-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.director-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
    color: #333333;
    font-weight: 500;
    line-height: 1.5;
}

.director-note {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Checkmark styling */
.checkmark {
    width: 24px;
    height: 24px;
    background-color: #2c67f2;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Responsive design for bank readiness and director sections */
@media (max-width: 1024px) {

    .bank-readiness-content,
    .director-content {
        flex-direction: column;
        gap: 40px;
    }

    .bank-readiness-image,
    .director-image {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .bank-readiness-image img,
    .director-image img {
        max-width: 500px;
    }

    .bank-readiness-text,
    .director-text {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {

    .bank-readiness-section,
    .director-section {
        padding: 60px 15px;
    }

    .director-section {
        padding-top: 0px;
    }

    .bank-readiness-title,
    .director-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .bank-readiness-content,
    .director-content {
        gap: 30px;
    }

    .bank-readiness-item,
    .director-item {
        font-size: 14px;
    }

    .bank-readiness-note,
    .director-note {
        font-size: 13px;
    }
}

/* Visas & Hiring Foreign Staff Section */
.visas-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.visas-container {
    max-width: 1300px;
    margin: 0 auto;
}

.visas-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
}

.visas-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.visas-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.visas-intro {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.visas-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visas-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
    color: #333333;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visas-check {
    width: 24px;
    height: 24px;
    background-color: #2c67f2;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.visas-check::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.visas-image {
    flex: 0 0 45%;
    max-width: 550px;
}

.visas-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive design for visas section */
@media (max-width: 1024px) {
    .visas-content {
        flex-direction: column;
        gap: 40px;
    }

    .visas-image {
        flex: 0 0 100%;
        width: 100%;
        text-align: center;
    }

    .visas-image img {
        max-width: 500px;
    }

    .visas-text {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .visas-section {
        padding: 60px 15px;
    }

    .visas-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .visas-content {
        gap: 30px;
    }

    .visas-item {
        font-size: 14px;
    }

    .visas-check {
        width: 20px;
        height: 20px;
    }

    .visas-check::after {
        font-size: 12px;
    }
}

/* Team Introduction Section */
.team-section {
    background-color: #ffffff;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.team-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.team-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.team-subtitle {
    font-size: 16px;
    color: #333333;
    margin-bottom: 10px;
    line-height: 1.5;
}

.team-note {
    font-size: 14px;
    color: #666666;
    margin-bottom: 50px;
}

.team-members {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    max-width: 280px;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-member-image {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-name {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.team-member-role {
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.team-member-contact {
    font-size: 14px;
    color: #2c67f2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.team-member-contact:hover {
    color: #1a4bc9;
    text-decoration: underline;
}



@media (max-width: 768px) {
    .team-member-role {
        display: none;
    }

    .team-member-image {
        width: 100%;
    }

    .team-section {
        padding: 60px 15px;
    }

    .team-title {
        font-size: 24px;
    }

    .team-note {
        margin-bottom: 30px;
    }

    .team-members {
        gap: 25px;
    }

    .team-member {
        width: 42vw;
    }

    .team-member-image {
        width: 100%;
        height: auto;
    }
}

/* Ongoing Compliance Section */
.compliance-section {
    background-color: #ffffff;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.compliance-container {
    max-width: 1300px;
    margin: 0 auto;
}

.compliance-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 130px;
    text-align: center;
}

.compliance-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.compliance-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
}

.compliance-icon {
    position: absolute;
    top: -80px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.compliance-icon img {
    width: 150px;
    height: 150px;
    background: #FFFFFF;
    border-radius: 50%;
    /* border: 4px solid #3359E8; */
    object-fit: contain;
}

.compliance-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
}

.compliance-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333333;
    font-weight: 500;
    line-height: 1.5;
}

.compliance-item:last-child {
    margin-bottom: 0;
}

.compliance-check {
    width: 20px;
    height: 20px;
    background-color: #2c67f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.compliance-check::after {
    content: '✓';
}

/* Responsive design for compliance section */
@media (max-width: 1024px) {
    .compliance-content {
        justify-content: center;
    }

    .compliance-card {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .compliance-section {
        padding: 60px 15px;
    }

    .compliance-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .compliance-content {
        gap: 25px;
    }

    .compliance-card {
        min-width: 100%;
        max-width: 100%;
        padding: 25px;
        padding-top: 10vw;
        margin-top: 20vw;
    }

    .compliance-icon {
        width: 30vw;
        height: 30vw;
        margin-bottom: 20px;

    }

    .compliance-icon img {
        width: 26vw;
        height: 26vw;

    }

    .compliance-card-title {
        font-size: 18px;
    }

    .compliance-item {
        font-size: 14px;
    }
}

/* Fixed-fee Packages Section */
.packages-section {
    background-color: #ffffff;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.packages-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.packages-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
}

.packages-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    border: 1px solid #e6e6e6;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.table-header {
    background-color: #f8f8f9;
    font-weight: 600;
    color: #333333;
    text-align: left;
    padding: 15px 20px;
    border-right: 1px solid #e6e6e6;
    width: 35%;
}

.package-header {
    background-color: #f8f8f9;
    font-weight: 600;
    color: #333333;
    text-align: center;
    padding: 15px 20px;
    border-right: 1px solid #e6e6e6;
    width: 21.666%;
}

.package-header:last-child {
    border-right: none;
}

.package-row {
    border-bottom: 1px solid #e6e6e6;
}

.package-row:last-child {
    border-bottom: none;
}

.feature-cell {
    background-color: #ffffff;
    color: #333333;
    text-align: left;
    padding: 15px 20px;
    border-right: 1px solid #e6e6e6;
    font-weight: 500;
}

.package-cell {
    background-color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    border-right: 1px solid #e6e6e6;
}

.package-cell:last-child {
    border-right: none;
}

.package-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}



.text-center {
    font-weight: 600;
    color: #333333;
}

.packages-note {
    font-size: 16px;
    color: #666666;
    margin-bottom: 10px;
    text-align: center;
}

.packages-subnote {
    font-size: 16px;
    color: #666666;
    margin-bottom: 30px;
    text-align: center;
}

.packages-cta-container {
    text-align: center;
}

.packages-cta {
    background-color: #2c67f2;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.packages-cta:hover {
    background-color: #1e4ab3;
}

/* Responsive design for packages section */
@media (max-width: 1024px) {
    .packages-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .table-header,
    .package-header,
    .feature-cell,
    .package-cell {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .packages-section {
        padding: 60px 15px;
    }

    .packages-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .packages-cta {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
    }

    .packages-note,
    .packages-subnote {
        font-size: 14px;
    }
}

/* Requirements & Documents Checklist Section */
.requirements-section {
    background: #F8F8F9;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.requirements-container {
    max-width: 1300px;
    margin: 0 auto;
}

.requirements-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    text-align: center;
}

.requirements-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.requirements-image {
    flex: 0 0 45%;
    max-width: 500px;
}

.requirements-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.requirements-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.requirement-check {
    width: 24px;
    height: 24px;
    background-color: #2c67f2;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.requirement-check::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.requirement-text {
    font-size: 16px;
    font-weight: 500;
    color: #111111;
    line-height: 1.5;
}

.requirement-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    line-height: 1.5;
}

/* Responsive design for requirements section */
@media (max-width: 1024px) {
    .requirements-content {
        flex-direction: column;
        gap: 40px;
    }

    .requirements-image {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .requirements-image img {
        max-width: 500px;
    }

    .requirements-list {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .requirements-section {
        padding: 60px 15px;
    }

    .requirements-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .requirements-content {
        gap: 30px;
    }

    .requirement-text {
        font-size: 14px;
    }

    .requirement-note {
        font-size: 14px;
    }
}

.business-table-container {
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    overflow: hidden;
}

.business-table {
    width: 100%;
    border-collapse: collapse;
}

.business-table th {
    background: #FBFCFF;
    padding: 15px 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    border-bottom: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
}

.business-table th:last-child {
    border-right: none;
}

.business-table td {
    padding: 15px 20px;
    font-size: 18px;
    color: #555555;
    border-bottom: 1px solid #e6e6e6;
    vertical-align: top;
    border-right: 1px solid #e6e6e6;
    background-color: #ffff;
}

.business-table td:last-child {
    border-right: none;
}

.business-table tr:last-child td {
    border-bottom: none;
}

.business-type {
    font-weight: 600;
    color: #333333;
}

/* 响应式设计 */
@media (max-width: 1024px) {

    .business-table th,
    .business-table td {
        padding: 12px 15px;
        font-size: 14px;
    }

    .business-title {
        font-size: 24px;
    }

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

@media (max-width: 768px) {
    .business-structures-section {
        padding: 40px 0;
    }

    .business-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .business-title {
        font-size: 22px;
    }

    .business-description {
        font-size: 14px;
    }
}

/* 外国投资者需求模块样式 */
.investor-needs-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.needs-container {
    max-width: 1300px;
    margin: 0 auto;
}

.needs-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
}

.needs-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.need-card {
    width: 303px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 10px;
    padding-bottom: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-right: 29px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.need-card:nth-child(4n) {
    margin-right: 0;
}

.need-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.need-image {
    width: 100%;
    border-radius: 6px;
}

.need-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 50px;
    display: flex;
    justify-content: center;
}

.need-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 10px;
    flex: 1;
}

.need-card-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #3359e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.need-card-link:hover {
    color: #2245c7;
}


@media (max-width: 768px) {
    .needs-grid {
        justify-content: space-between;
        padding: 0 15px;
    }

    .need-card {
        width: 48%;
        margin-right: 0px;
        margin-bottom: 15px;
    }

    .need-card-description {
        display: none;
    }

    .stats-float-container {
        flex-wrap: wrap;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
        position: static;
    }

    .stats-item {
        width: calc(50% - 7.5px);
        height: auto;
    }

    .need-card-title {
        height: auto;
        font-size: 16px;
        flex: 1;
        /* 超过两行省略 */
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .need-card-link {
        font-size: 12px;
    }
}

/* 外国人持股模块样式 */
.foreign-ownership-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.foreign-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.foreign-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
}

.foreign-subtitle {
    font-size: 18px;
    color: #3359e8;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
}

.foreign-content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
}

/* 左侧分类卡片 */
.ownership-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    max-width: 620px;
}

.category-card {
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.category-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.category-card.allowed .category-title {
    color: #2e7d32;
}

.category-card.approval .category-title {
    color: #f57c00;
}

.category-card.restricted .category-title {
    color: #d32f2f;
}

.category-image {
    width: 160px;
    height: 112px;
    background: #E2E2E2;
    border-radius: 4px;
    border: 1px solid #F3F3F3;
}

.category-image img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.category-content {
    flex: 1;
}

.category-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.category-description {
    font-size: 15px;
    color: #666666;
    line-height: 1.5;
}

/* 右侧特点列表 */
.ownership-benefits {
    flex: 1;
    max-width: 600px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}



.benefit-check {
    width: 20px;
    height: 20px;
    background-color: #3359e8;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    margin-top: 2px;
}

.benefit-check::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.benefit-item:last-child .benefit-text {
    font-size: 14px;
    color: #666666;
}

.benefit-item:last-child .benefit-check {
    background-color: transparent;
}

.benefit-item:last-child .benefit-check::after {
    color: transparent;
}

.benefit-text {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    line-height: 1.6;
}

.benefit-cta {
    background-color: #3359e8;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 350px;
    margin-left: 35px;
}

.benefit-cta:hover {
    background-color: #2245c7;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .foreign-content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .ownership-categories {
        max-width: 100%;
    }

    .ownership-benefits {
        max-width: 100%;
    }

    .benefit-cta {
        max-width: 100%;
        margin-left: 0px;
    }
}

@media (max-width: 768px) {
    .foreign-ownership-section {
        padding: 60px 0;
    }

    .foreign-title {
        font-size: 26px;
    }

    .foreign-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .category-card {
        padding: 15px;
        gap: 15px;
    }

    .category-title {
        font-size: 16px;
    }

    .category-description {
        font-size: 14px;
    }

    .benefit-text {
        font-size: 14px;
    }
}

/* 业务用例模块样式 */
.use-cases-section {
    background: #F8F8F9;
    padding: 80px 0;
    text-align: center;
}

.use-cases-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.use-cases-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
}

.use-cases-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 60px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.use-case-card {
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 0px 20px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 276px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 0px 25px 0px rgba(200, 203, 212, 0.25);
}

.use-case-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.use-case-icon {
    margin-bottom: 20px;
    margin-top: 30px;
}

.icon-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 16px;
    margin: 0 auto;
}

/* 使用占位符图标，后续可以替换为实际图标 */
.icon-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.icon-placeholder.e-commerce {
    background-color: #e3f2fd;
}

.icon-placeholder.regional {
    background-color: #e8f5e9;
}

.icon-placeholder.digital {
    background-color: #fff3e0;
}

.icon-placeholder.trading {
    background-color: #f3e5f5;
}

.icon-placeholder.startups {
    background-color: #e0f2f1;
}

.use-case-title {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    text-align: center;
    flex: 1;
}

.use-cases-note {
    font-size: 14px;
    color: #666666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}



@media (max-width: 768px) {
    .use-cases-section {
        padding: 60px 0;
    }

    .use-cases-title {
        font-size: 26px;
    }

    .use-cases-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .use-case-card:last-child {
        grid-column: auto;
    }

    .use-case-card {
        padding: 20px;
        min-height: auto;
    }

    .use-case-title {
        font-size: 15px;
        height: auto;
    }
}

/* 新增内容模块样式 */
.content-section {
    display: flex;
    justify-content: center;
    margin-top: 109px;
}

.content-container {
    width: 1300px;
    background: rgba(51, 89, 232, 0.03);
    border-radius: 10px;
    padding: 30px;
    box-sizing: border-box;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.content-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list-item {
    display: flex;
    align-items: flex-start;
    padding: 5px 0;
}

.triangle-icon {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #3359e8;
    margin-right: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

.list-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 响应式设计 */
@media (max-width: 1360px) {
    .content-container {
        width: 95%;
        max-width: 1300px;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 30px 20px;
        margin-top: 0px;
    }

    .content-container {
        padding: 20px;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .list-text {
        font-size: 13px;
        white-space: normal;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .banner-header h1 {
        font-size: 32px;
    }

    .banner-header h2 {
        font-size: 24px;
    }

    .banner-features {
        width: 100%;
        flex-wrap: wrap;
        gap: 20px;
    }

    .feature-icon {
        margin: 0px 5px;
    }

    .feature-item {
        width: 42vw;
    }

    .banner-logos {
        gap: 20px;
    }

    .logo-item {
        font-size: 14px;
    }

    .banner-header h1 {
        font-size: 28px;
    }

    .banner-header h2 {
        font-size: 20px;
    }

    .banner-buttons {
        flex-direction: column;
        align-items: center;
        margin: 20px 0;
    }

    .banner-logos {
        margin-top: 30px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .index-banner {
        padding-bottom: 50px;
    }
}


/* Client Case Studies Section */
.case-studies-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    padding-bottom: 20px;
}

.case-studies-container {
    margin: 0 auto;
    padding: 0 20px;
}

.case-studies-header {
    text-align: center;
    margin-bottom: 20px;
}

.case-studies-header h2 {
    color: #000000;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-studies-header p {
    color: #555555;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Case Studies Swiper Styles */
.case-studies-swiper-container {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 20px;
}

.case-studies-swiper {
    width: 100%;
    height: 100%;
    padding: 40px 0 !important;
}

.case-studies-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.case-study-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 25px;
    width: 635px;
    height: 447px;
    background: #FFFFFF;
    box-shadow: 0px 0px 25px 0px rgba(200, 203, 212, 0.25);
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}



.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.case-study-image {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-card h3 {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.case-study-card p {
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.case-study-card p strong {
    color: #0066cc;
}

/* Case Studies Swiper Navigation Styles */
.case-studies-swiper .swiper-button-prev,
.case-studies-swiper .swiper-button-next {
    background-color: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #0066cc;
    transition: all 0.3s ease;
}

.case-studies-swiper .swiper-button-prev:hover,
.case-studies-swiper .swiper-button-next:hover {
    background-color: #ffffff;
    transform: scale(1.1);
}

.case-studies-swiper .swiper-button-prev::after,
.case-studies-swiper .swiper-button-next::after {
    font-size: 20px;
    font-weight: bold;
}

/* Case Studies Swiper Pagination Styles */
.case-studies-swiper .swiper-pagination {
    bottom: -30px !important;
}

/* Responsive Case Studies Section */
@media (max-width: 1024px) {

    .case-studies-swiper .swiper-button-prev,
    .case-studies-swiper .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .case-studies-swiper .swiper-button-prev::after,
    .case-studies-swiper .swiper-button-next::after {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .case-studies-section {
        padding: 60px 0;
        padding-bottom: 0px;
    }

    .case-studies-header h2 {
        font-size: 28px;
    }

    .case-studies-header p {
        font-size: 16px;
    }

    .case-studies-swiper-container {
        padding: 0px;
    }

    .swiper-slide {
        width: 100% !important;
    }

    .case-study-card {
        width: 100%;
        padding: 20px;
    }

    .case-study-image {
        height: auto;
    }

    .case-study-card h3 {
        font-size: 16px;
    }

    .case-study-card p {
        font-size: 13px;
    }

    .case-studies-swiper .swiper-button-prev,
    .case-studies-swiper .swiper-button-next {
        width: 36px;
        height: 36px;
    }

    .case-studies-swiper .swiper-pagination {
        bottom: -25px !important;
    }
}

/* External Resources Section */
.external-resources-section {
    background: #ffffff;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.two-column-container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-thetitle {
    font-size: 38px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-weight: 400;
    font-size: 18px;
    color: #666666;
    line-height: 28px;
    margin-bottom: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.resource-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}


.resource-item {
    width: 47%;
    margin-bottom: 16px;
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.resource-link {
    color: #2c67f2;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.resource-link:hover {
    color: #1e4ab3;
    text-decoration: underline;
}

.resources-note {
    font-size: 14px;
    color: #666666;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive design for external resources section */
@media (max-width: 768px) {
    .resource-columns {
        flex-direction: column;
    }

    .resource-column {
        width: 100%;
    }

    .external-resources-section {
        padding: 60px 15px;
    }

    .section-thetitle {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .resource-link {
        font-size: 14px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    margin-bottom: 12px;
    font-weight: 700;
    color: #000000;
    display: flex;
}

.faq-number,
.faq-checkmark {
    width: 24px;
    height: 24px;
    display: block;
    border-radius: 3px;
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
    margin-right: 8px;
    text-align: center;
    line-height: 24px;
    flex-shrink: 0;
}

.faq-number {
    background: #E64040;
}

.faq-title {
    font-size: 16px;
}

.faq-answer {
    font-size: 14px;
    color: #333333;
    display: flex;
    align-items: flex-start;
}

.faq-checkmark {
    background: #3359E8;
}

.faq-text {
    line-height: 1.6;
}

/* Blue Background Section */
.bg-section {
    background: url(../images/form_section_bg.png) no-repeat center center/cover;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.bg-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.bg-content {
    text-align: center;
}

.bg-text {
    margin-bottom: 40px;
    color: white;
}

.bg-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
}

.bg-subtitle {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.5;
}

.bg-components {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 50px;
}

.floating-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 650px;
    z-index: 10;
    margin-right: 30px;
    position: relative;
}

.floating-form .form-row {
    margin-bottom: 20px;
}

.floating-form .form-row input,
.floating-form .form-row select,
.floating-form .form-row textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    font-family: inherit;
}

.floating-form .form-row textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background-color: #2c67f2;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.submit-btn:hover {
    background-color: #1a4bb1;
}

.privacy-text {
    font-size: 12px;
    color: #777;
    text-align: center;
    padding: 0 20px;
}

/* Contact Information at Form Bottom */
.form-contact-info {
    text-align: left;
    padding: 20px;
    border-radius: 4px;
}

.contact-heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: rgba(17, 17, 17, 1);
}

.contact-detail {
    color: rgba(102, 102, 102, 1);
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 14px;
}

.image-container {
    flex: 1;
    max-width: 600px;
    margin-left: 20px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.credential-card .image-container {
    margin-left: 0px;
    padding: 0px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .bg-components {
        flex-direction: column;
        align-items: center;
    }

    .floating-form,
    .image-container {
        margin: 0 0 30px 0;
    }

    .bg-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .bg-section {
        padding: 60px 0;
    }

    .floating-form {
        padding: 20px;
        width: 100%;
        max-width: 400px;
    }

    .bg-title {
        font-size: 26px;
    }

    .submit-btn {
        font-size: 16px;
    }
}

/* Responsive design for FAQ section */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 60px 15px;
    }

    .faq-title {
        font-size: 14px;
    }

    .faq-text {
        font-size: 13px;
    }
}

/* Company Registration Banner Styles */
.company-registration-banner {
    background-color: #1565C0;
    background-image: url('../images/zcgs-banner_bg.png');
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
    padding-bottom: 130px;
}

.company-registration-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
    pointer-events: none;
}

.company-registration-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.company-registration-banner h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.company-registration-banner h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.3;
}

.company-registration-banner p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.company-registration-banner .green-btn {
    border-radius: 10px;
    background: #00CD74;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.company-registration-banner .green-btn-text {
    display: block;
    margin-bottom: 5px;
}

.company-registration-banner .green-btn-subtext {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.company-registration-banner .green-btn:hover {
    background: #00CD74;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.company-registration-banner .green-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.company-registration-banner .banner-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 58px;
    flex-wrap: wrap;
    position: absolute;
}

.company-registration-banner .feature-card {
    background-color: white;
    color: #333;
    padding: 20px 25px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-registration-banner .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.company-registration-banner .feature-icon {
    width: 50px;
    margin: 0px;
}

.company-registration-banner .feature-text {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Company Registration Banner */
@media (max-width: 768px) {
    .confused-grid {
        flex-wrap: wrap;
    }

    .company-registration-banner {
        padding-bottom: 60px;
    }

    .company-registration-banner h1 {
        font-size: 32px;
    }

    .company-registration-banner h2 {
        font-size: 24px;
    }

    .company-registration-banner p {
        font-size: 16px;
    }

    .company-registration-banner .green-btn {
        padding: 12px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 350px;
    }

    .company-registration-banner .green-btn-text {
        font-size: 16px;
    }

    .company-registration-banner .green-btn-subtext {
        font-size: 13px;
    }

    .company-registration-banner .feature-card {
        width: 100%;
        max-width: 300px;
    }

    .company-registration-banner .banner-features {
        flex-direction: column;
        align-items: center;
        position: static;
    }
}

@media (max-width: 480px) {
    .company-registration-banner h1 {
        font-size: 24px;
    }

    .company-registration-banner h2 {
        font-size: 18px;
    }

    .company-registration-banner p {
        font-size: 14px;
    }

    .company-registration-banner .green-btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
    }

    .company-registration-banner .green-btn-text {
        font-size: 14px;
    }

    .company-registration-banner .green-btn-subtext {
        font-size: 12px;
    }
}

/* Confused Section Styles */
.confused-section {
    padding-top: 140px;
    padding-bottom: 100px;
    background-color: #ffffff;
}

.confused-container {
    max-width: 1300px;
    margin: 0 auto;
}

.confused-title {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    text-align: center;
}

.confused-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 110px;
    text-align: center;
}

.confused-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    /* flex-wrap: wrap; */
}

.confused-item {
    padding: 40px 30px;
    padding-top: 105px;
    background: #FFFFFF;
    box-shadow: 0px 0px 25px 0px rgba(200, 203, 212, 0.25);
    border-radius: 10px;
    border: 1px solid #F3F3F3;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.confused-circle {
    width: 180px;
    height: 180px;
    background: #FFFFFF;
    box-shadow: 0px 0px 25px 0px rgba(200, 203, 212, 0.25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.circle-image {
    width: 150px;
    height: 150px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}



.confused-item-title {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.confused-item-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Confused Section */
@media (max-width: 768px) {
    .confused-section {
        padding: 60px 20px;
    }

    .confused-title {
        font-size: 24px;
    }

    .confused-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .confused-item {
        width: 100%;
        max-width: 320px;
        margin-bottom: 30px;
    }

    .confused-circle {
        width: 150px;
        height: 150px;
    }

    .circle-image {
        width: 120px;
        height: 120px;
    }


}

@media (max-width: 480px) {
    .confused-section {
        padding: 40px 15px;
    }

    .confused-title {
        font-size: 20px;
    }

    .confused-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .confused-circle {
        width: 120px;
        height: 120px;
    }

    .circle-image {
        width: 90px;
        height: 90px;
    }



    .confused-item-title {
        font-size: 18px;
    }

    .confused-item-description {
        font-size: 14px;
    }
}

/* Featured & Certified Section Styles */
.featured-section {
    padding: 50px 0px;
    background: #F8F8F9;
}

.featured-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.featured-title {
    color: #111111;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-item {
    flex: 1;
    max-width: 180px;
    min-width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    height: 59px;
    transition: filter 0.3s ease;
}



/* Responsive Design for Featured Section */
@media (max-width: 768px) {
    .featured-section {
        padding: 40px 20px;
    }

    .featured-title {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .featured-logos {
        gap: 40px;
    }

    .logo-item {
        max-width: 150px;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .featured-section {
        padding: 30px 15px;
    }

    .featured-title {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .featured-logos {
        gap: 30px;
    }

    .logo-item {
        max-width: 120px;
        min-width: 100px;
    }
}

/* Focus Section */
.focus-section {
    padding: 60px 0px;
    text-align: center;
}

.focus-container {
    max-width: 1300px;
    margin: 0 auto;
}

.focus-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2d3748;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.focus-card {
    background-color: #fff;
    padding: 48px 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.focus-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.focus-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.focus-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3748;
    text-transform: uppercase;
}

.focus-card-desc {
    font-size: 14px;
    color: #718096;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .focus-section {
        padding: 40px 20px;
    }

    .focus-title {
        font-size: 24px;
    }

    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .focus-card {
        padding: 25px;
    }

    .focus-card-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .focus-grid {
        grid-template-columns: 1fr;
    }

    .focus-title {
        font-size: 20px;
    }

    .focus-icon {
        width: 70px;
        height: 70px;
    }

    .focus-icon img {
        width: 40px;
        height: 40px;
    }
}

/* 3-Step Path Section */
.three-step-path {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
}

.three-step-path .container {
    max-width: 1200px;
    margin: 0 auto;
}

.three-step-path .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333333;
    border-bottom: none;
}

.three-step-path .steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.three-step-path .step-item {
    flex: 1;
    padding: 0 20px;
    position: relative;
}

.three-step-path .step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 20px;
    padding: 0px;
}

.three-step-path .step-circle.green {
    background-color: #00CD74;
}

.three-step-path .step-circle.blue {
    background-color: #3359E8;
}

.three-step-path .step-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333333;
    text-transform: uppercase;
}

.three-step-path .step-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.three-step-path .step-line {
    flex-shrink: 0;
    width: 100px;
    height: 2px;
    position: relative;
}

.three-step-path .step-line.green {
    background-color: #10b981;
}

.three-step-path .step-line.blue {
    background-color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .three-step-path .steps-container {
        flex-direction: column;
    }

    .three-step-path .step-line {
        width: 2px;
        height: 50px;
    }

    .three-step-path .section-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .three-step-path .section-title {
        font-size: 20px;
    }

    .three-step-path .step-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Comparison Table Section */
.comparison-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.comparison-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-section .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333333;
    text-align: center;
    border-bottom: none;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #E0E0E0;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.comparison-table th:nth-child(1) {
    width: 25%;
}

/* 偶数列 */
.comparison-table th:nth-child(even) {
    background-color: #3359E8;
}

.comparison-table td:nth-child(even) {
    background-color: rgba(51, 89, 232, 0.05)
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3) {
    width: 37.5%;
}

.comparison-table td {
    font-size: 14px;
    color: #666666;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}



.comparison-table tbody tr td:nth-child(2) {
    color: #333333;
}

.expert-advice {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-section {
        padding: 40px 15px;
    }

    .comparison-section .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .comparison-section .section-title {
        font-size: 20px;
    }

    .comparison-table {
        font-size: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
}

/* Company Registration Packages Section */
.company-registration-packages {
    padding: 60px 20px;
    background-color: #ffffff;
}

.company-registration-packages .packages-container {
    max-width: 1200px;
    margin: 0 auto;
}

.company-registration-packages .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333333;
    text-align: center;
}

.company-registration-packages .section-subtitle {
    font-size: 16px;
    color: #666666;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.6;
}

.company-registration-packages .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.company-registration-packages .package-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.company-registration-packages .package-card .features-list {
    flex-grow: 1;
    margin-bottom: 30px;
}

.company-registration-packages .package-button {
    margin-top: auto;
}

.company-registration-packages .package-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.company-registration-packages .package-card.popular {
    border: 2px solid #3b82f6;
    position: relative;
}

.company-registration-packages .popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3b82f6;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-registration-packages .package-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333333;
}

.company-registration-packages .package-description {
    font-size: 14px;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.company-registration-packages .package-price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333333;
}

.company-registration-packages .package-old-price {
    font-size: 16px;
    color: #999999;
    text-decoration: line-through;
    margin-bottom: 30px;
}

.company-registration-packages .features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.company-registration-packages .feature-item {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
    display: flex;
    justify-content: flex-start;
    line-height: 1.5;
    background-color: #fff;
    width: auto;
    padding: 0px;
}

.company-registration-packages .feature-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

.company-registration-packages .feature-icon.excluded {
    width: 16px;
    height: 16px;
    border: 2px solid #999999;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
}

.company-registration-packages .package-button {
    width: 100%;
    padding: 15px;
    border: 2px solid #3b82f6;
    border-radius: 5px;
    background-color: #ffffff;
    color: #3b82f6;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.company-registration-packages .package-button:hover {
    background-color: #3b82f6;
    color: #ffffff;
}

.company-registration-packages .package-button.primary {
    background-color: #3b82f6;
    color: #ffffff;
}

.company-registration-packages .package-button.primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .company-registration-packages .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .company-registration-packages .section-title {
        font-size: 24px;
    }

    .company-registration-packages .package-price {
        font-size: 30px;
    }

    .company-registration-packages .package-card {
        min-height: 550px;
    }
}

@media screen and (max-width: 480px) {
    .company-registration-packages .packages-grid {
        grid-template-columns: 1fr;
    }

    .company-registration-packages .package-card {
        padding: 30px 20px;
        min-height: 500px;
    }

    .company-registration-packages .section-title {
        font-size: 20px;
    }

    .company-registration-packages .package-price {
        font-size: 26px;
    }
}

/* Post-Incorporation Compliance Timeline Section */
.post-incorporation-timeline {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.post-incorporation-timeline .container {
    max-width: 1200px;
    margin: 0 auto;
}

.post-incorporation-timeline .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333333;
    text-align: center;
}

.post-incorporation-timeline .highlight {
    color: #3b82f6;
}

.post-incorporation-timeline .section-subtitle {
    font-size: 16px;
    color: #666666;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.6;
}

.compliance-timeline-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.compliance-timeline-table th,
.compliance-timeline-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.compliance-timeline-table th {
    background: #FBFCFF;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compliance-timeline-table th:first-child {
    width: 30%;
}

.compliance-timeline-table th:nth-child(2) {
    width: 25%;
}

.compliance-timeline-table th:nth-child(3) {
    width: 20%;
}

.compliance-timeline-table th:nth-child(4) {
    width: 25%;
}

.compliance-timeline-table td {
    font-size: 14px;
    color: #666666;
}

.compliance-timeline-table tbody tr:last-child td {
    border-bottom: none;
}


/* Responsive Design */
@media screen and (max-width: 1024px) {
    .compliance-timeline-table th:first-child {
        width: 35%;
    }

    .compliance-timeline-table th:nth-child(2) {
        width: 22%;
    }

    .compliance-timeline-table th:nth-child(3) {
        width: 18%;
    }

    .compliance-timeline-table th:nth-child(4) {
        width: 25%;
    }
}

@media screen and (max-width: 768px) {
    .post-incorporation-timeline .section-title {
        font-size: 24px;
    }

    .compliance-timeline-table {
        font-size: 13px;
    }

    .compliance-timeline-table th,
    .compliance-timeline-table td {
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .post-incorporation-timeline {
        padding: 40px 15px;
    }

    .post-incorporation-timeline .section-title {
        font-size: 20px;
    }

    .compliance-timeline-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .compliance-timeline-table table,
    .compliance-timeline-table thead,
    .compliance-timeline-table tbody,
    .compliance-timeline-table th,
    .compliance-timeline-table td,
    .compliance-timeline-table tr {
        display: block;
    }

    .compliance-timeline-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .compliance-timeline-table tr {
        margin: 0 0 15px 0;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        overflow: hidden;
    }

    .compliance-timeline-table td {
        border: none;
        border-bottom: 1px solid #e0e0e0;
        position: relative;
        padding-left: 50%;
        text-align: left;
    }

    .compliance-timeline-table td:last-child {
        border-bottom: none;
    }

    .compliance-timeline-table td:before {
        content: attr(data-label);
        position: absolute;
        top: 15px;
        left: 15px;
        width: 45%;
        padding-right: 10px;
        font-weight: 600;
        color: #333333;
        text-align: left;
    }
}

/* Foreign & Singapore Investors — JB Incorporation Guide Section */
.foreign-investors-guide {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.foreign-investors-guide .container {
    max-width: 1200px;
    margin: 0 auto;
}

.foreign-investors-guide .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333333;
    text-align: center;
}

.foreign-investors-guide .highlight {
    color: #3b82f6;
}

.foreign-investors-guide .section-subtitle {
    font-size: 16px;
    color: #666666;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.6;
}

.investor-guide-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.checklist-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.checklist-container .image-container {
    margin-bottom: 25px;
    margin-left: 0px;
    border-radius: 8px;
    overflow: hidden;
    padding: 0px;
}

.checklist-container .checklist-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.checklist-container h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333333;
    text-align: center;
}

.checklist-container .document-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-container .document-list li {
    font-size: 15px;
    color: #666666;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.checklist-container .document-list li:before {
    content: "✔";
    color: #3b82f6;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 2px;
}

.bank-table-container {
    border-radius: 12px;
}

.bank-table-container h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333333;
    text-align: left;
}

.bank-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    border-radius: 10px;
}

.bank-comparison-table th,
.bank-comparison-table td {
    border: 1px solid #e0e0e0;
    padding: 12px;
    text-align: left;
    font-size: 14px;
    color: #333333;
}

.bank-comparison-table th {
    background-color: #FBFCFF;
    font-weight: 700;
}



.table-note {
    font-size: 13px;
    color: #666666;
    font-style: italic;
    margin-top: 10px;
}

.timeline-container {
    border-radius: 12px;
}

.timeline-container h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333333;
}

.timeline-list {
    list-style: decimal;
    padding-left: 25px;
    margin: 0;
}

.timeline-list li {
    font-size: 15px;
    color: #666666;
    margin-bottom: 5px;
    line-height: 1.6;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
    .investor-guide-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        display: block;
    }



    .bank-table-container h3 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .foreign-investors-guide .section-title {
        font-size: 24px;
    }

    .checklist-container,
    .bank-table-container {
        padding: 20px;
    }

    .bank-comparison-table {
        overflow-x: auto;
        display: block;
    }

    .bank-table-container {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .foreign-investors-guide .section-title {
        font-size: 20px;
    }

    .checklist-container .document-list li,
    .timeline-list li {
        font-size: 14px;
    }
}

/* Team Section */
.cr-team-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.cr-team-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.cr-team-section .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333333;
    text-align: center;
}

.cr-team-section .section-subtitle {
    font-size: 16px;
    color: #666666;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cr-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.cr-team-member {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cr-team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.cr-member-image {
    margin-bottom: 25px;
    border-radius: 50%;
    overflow: hidden;
    width: 258px;
    height: 258px;
    margin-left: auto;
    margin-right: auto;
}

.cr-member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cr-member-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333333;
}

.cr-member-title {
    font-size: 15px;
    color: #3359E8;
    margin-bottom: 15px;
    font-weight: 600;
}

.cr-member-description {
    font-size: 15px;
    color: #666666;
    margin-bottom: 25px;
    line-height: 1.6;
    padding: 0 20px;
}

.cr-linkedin-link {
    font-size: 15px;
    color: #3359E8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cr-linkedin-link:hover {
    color: #2563eb;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .cr-team-section .section-title {
        font-size: 24px;
    }

    .cr-team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cr-team-member {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .cr-team-section .section-title {
        font-size: 20px;
    }

    .cr-member-name {
        font-size: 20px;
    }

    .cr-member-description {
        font-size: 14px;
        padding: 0;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333333;
    text-align: center;
}

.testimonials-section .blue-text {
    color: #3b82f6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
    font-size: 15px;
    color: #666666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info .author-name {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 5px;
}

.author-info .author-title {
    font-size: 14px;
    color: #999999;
}

/* Media Queries for Testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-section .section-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .testimonials-section .section-title {
        font-size: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }



}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/form_section_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-subtitle {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-guarantee {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-style: italic;
}

.contact-form {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.contact-form .form-group {
    flex: 1;
    min-width: 250px;
    width: auto;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #333333;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.form-check input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.form-check label {
    margin: 0;
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
}

.contact-submit {
    display: block;
    padding: 15px 30px;
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 0 auto;
}

.contact-submit:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

.contact-submit:active {
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 768px) {
    .contact-title {
        font-size: 24px;
    }

    .contact-form {
        padding: 25px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .form-group {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 15px;
    }

    .contact-form {
        padding: 20px;
    }
}

/* Verifiable Credentials & Endorsements Section */
.verifiable-credentials {
    padding: 60px 20px;
    background-color: #ffffff;
}

.verifiable-credentials .container {
    max-width: 1200px;
    margin: 0 auto;
}

.verifiable-credentials .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333333;
    text-align: center;
}

.verifiable-credentials .highlight {
    color: #3b82f6;
}

.verifiable-credentials .section-subtitle {
    font-size: 16px;
    color: #666666;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.6;
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.credential-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.logo-container,
.image-container {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.organization-logo {
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.presence-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.credential-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    padding-left: 15px;
    margin-bottom: 20px;
}

.membership-list,
.presence-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.membership-list li,
.presence-list li {
    font-size: 15px;
    color: #666666;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.membership-list li:last-child,
.presence-list li:last-child {
    margin-bottom: 0;
}

.verify-link,
.view-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.verify-link:hover,
.view-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .credentials-grid {
        gap: 25px;
    }

    .credential-card {
        padding: 25px;
    }
}

@media screen and (max-width: 768px) {
    .verifiable-credentials {
        padding: 50px 20px;
    }

    .verifiable-credentials .section-title {
        font-size: 24px;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .credential-card {
        padding: 25px 20px;
    }

    .organization-logo {
        max-width: 150px;
    }

    .resource-item {
        width: 100%;
    }

    .investor-needs-section {
        padding: 40px 0;
    }

    .needs-title {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    .verifiable-credentials {
        padding: 40px 15px;
    }

    .verifiable-credentials .section-title {
        font-size: 20px;
    }

    .verifiable-credentials .section-subtitle {
        font-size: 14px;
    }

    .credential-card {
        padding: 20px 15px;
    }

    .logo-container,
    .image-container {
        padding: 15px;
    }

    .organization-logo {
        max-width: 120px;
    }

    .credential-card h3 {
        font-size: 18px;
    }

    .membership-list li,
    .presence-list li {
        font-size: 14px;
    }

    .faq-container {
        padding: 0px;
    }

    .faq-grid {
        margin-bottom: 20px;
    }
}


/* FAQ板块样式 */
.faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    margin-bottom: 15px;
    text-align: center;
    font-size: 28px;
}

.faq-section .section-subtitle {
    margin-bottom: 40px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #6b7280;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    /* 解决右侧展开时左侧等高问题 */
    grid-auto-rows: minmax(0, auto);
    align-items: start;
}

.faq-item {
    background-color: #f9fafc;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0px;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    position: relative;
    padding: 20px 45px 20px 20px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
    margin-bottom: 0px;
}

.faq-question:hover {
    background-color: #f1f5f9;
}

.faq-question::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #111111;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    color: #475569;
}

.faq-answer {
    display: flex;
    flex-direction: column;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ol {
    padding-left: 20px;
    margin: 0;
}

.faq-answer li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

/* FAQ响应式设计 */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-section .section-title {
        font-size: 24px;
    }

    .faq-section .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 15px 40px 15px 15px;
        font-size: 16px;
    }

    .faq-question::after {
        right: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 15px 15px;
    }


}

@media (max-width: 480px) {
    .faq-section .section-title {
        font-size: 20px;
    }

    .faq-question {
        font-size: 15px;
    }


}


/* FAQ响应式设计 */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 20px;
    }

    .faq-section .section-title {
        font-size: 24px;
    }

    .faq-section .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 15px 40px 15px 15px;
        font-size: 16px;
    }

    .faq-question::after {
        right: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 15px 15px;
    }

    .service-guarantees-section {
        padding: 40px 0;
    }

    .guarantee-card {
        padding: 25px;
    }

    .guarantee-title {
        font-size: 18px;
    }

    .guarantee-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-section .section-title {
        font-size: 20px;
    }

    .faq-question {
        font-size: 15px;
    }

    .guarantee-card {
        padding: 20px;
    }

    .guarantee-icon {
        width: 50px;
        height: 50px;
    }

    .guarantee-icon svg {
        width: 24px;
        height: 24px;
    }

    .guarantee-title {
        font-size: 17px;
    }
}



/* Consultation Form Section Styles */
.consultation-form-section {
    background: url('../images/consultation-form-section-bg.png') no-repeat center center;
    padding: 60px 0;
    position: relative;
}



.consultation-form-section .container {
    max-width: 1300px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.form-content {
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

/* Grid lines for design稿 effect */
.form-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}


.form-wrapper {
    padding: 30px;
    background-color: #ffffff;
    position: relative;
    /* 添加虚线网格线背景 */
    border-radius: 10px;
}

.form-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
    width: auto;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 86, 179, 0.3);
    border-radius: 0;
    font-size: 16px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0056b3;
    background-color: rgba(255, 255, 255, 0.9);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    display: block;
    width: 380px;
    padding: 14px 20px;
    background: #3359E8;
    border-radius: 10px;
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0px auto 0px auto;
}

.submit-btn:hover {
    background-color: #004085;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.privacy-note {
    font-size: 12px;
    color: #fff;
    text-align: center;
    margin-top: 15px;
}

.form-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 25px;
}

.form-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.form-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.form-info ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.form-info ul li::before {
    content: "•";
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
}

.form-info .disclaimer {
    font-size: 14px;
    color: #fff;
    font-style: italic;
}

/* Responsive Styles for Consultation Form */
@media (max-width: 1024px) {
    .form-content {
        max-width: 90%;
        grid-template-columns: 1fr;
    }

    /* Hide grid lines on mobile */
    .form-content::after,
    .form-content::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .consultation-form-section {
        padding: 40px 0;
    }

    .form-title {
        font-size: 26px;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .form-content {
        max-width: 95%;
    }

    .form-wrapper,
    .form-info {
        padding: 25px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 15px;
    }

    .form-info p {
        font-size: 15px;
    }

    .form-info h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .consultation-form-section {
        padding: 30px 0;
    }

    .form-title {
        font-size: 22px;
        padding: 0 15px;
    }

    .form-wrapper,
    .form-info {
        padding: 20px;
    }

    .submit-btn {
        font-size: 15px;
        padding: 12px 20px;
    }

    .form-info ul li {
        font-size: 14px;
        padding-left: 15px;
    }

    .privacy-note {
        font-size: 11px;
    }
}
