main {
    background-color: #fff;
}

header {
    height: auto !important;
}

.cta-button-hero {
    font-size: 2.0rem;
}

.scenarioContainer-list {
    display: flex;
    width: max-content;
    gap: 40px;
    padding: 0 20px;

}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight {
    background-color: #fff9e6;
    padding: 6px;
    border-radius: 4px;
    font-weight: bold;
    color: var(--secondary-color);
}

.strategy-keyblock__arw {
    position: absolute;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    line-height: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(125%);
}

.strategy-keyblock__arw img {
    width: min(88px, 3.5vw);
}

.strategy-section-image img {
    width: 60%;
}

.feature-card {
    position: relative;
    margin-top: 60px;
}

.scroll-left {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    cursor: pointer;
    display: none;
}

.feature-card-one {
    max-width: 460px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
}

.feature-card-one::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #e1ecf7);
}

.feature-card-one h3 {
    display: flex;
    align-items: center;
}

.feature-card-one .feature-card-ul {
    color: #fff;
    padding-left: 10px;
}

.feature-card-one .feature-card-one-title {
    z-index: 9;
}

.userTable {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.userTable tbody tr td {
    padding: 30px;
    vertical-align: top;
    border: 1px solid #ddd;
    width: 50%;
}

.userTable-content-text-right {
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
}

.visual-doc {
    padding: 80px 20px;
}

.visual-doc-table table {
    width: 100%;
    border-collapse: collapse;
}

.visual-doc-table table thead tr th {
    padding: 20px;
    color: #ffffff;
    text-align: center;
    width: 30%;
    font-size: 2.2rem;
}

.visual-doc-table table tbody tr {
    border-bottom: 1px solid #eee;
}

.visual-doc-table table tbody tr th {
    padding: 25px;
    text-align: center;
    vertical-align: top;
    background-color: #e1ecf7;
}

.visual-doc-table table tbody tr td {
    padding: 25px;
    vertical-align: top;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.doc-category ul {
    color: #555;
    line-height: 2;
    padding: 20px;
    display: none;
    background: #fff9f0;
}

/* 展开/折叠相关样式 */
.toggle-button {
    position: relative;
    transition: background-color 0.3s;
}

.toggle-button::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--gray-12);
    background-image: linear-gradient(var(--gray-700), var(--gray-700)), linear-gradient(var(--gray-700), var(--gray-700));
    background-size: 12px 2px, 2px 12px;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-color 0.3s ease;
}

.toggle-button.active::after {
    background-size: 12px 2px;
    background-image: linear-gradient(var(--gray-700), var(--gray-700));
}

.faq-container {
    display: none;
}

.faq-container.active {
    display: block;
}

/* FAQ 页面样式 */
.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0px;
}

/* FAQ 项目 */
.faq-container {
    display: none;
}

.faq-container.active {
    display: grid;
    gap: 40px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-answer.open {
    padding: 20px 30px 30px;
    max-height: 1000px;
}

/* 优势区域 */
.problem-section-credit {
    padding: 80px 0px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.key-point-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
}

.key-point-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.point-number {
    margin-bottom: 15px;
}

.point-number img {
    width: 60px;
}

/* CTA区域 */
.cta-section:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 168%;
    height: 168%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
}

.benefit-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #0055aa 100%);
}

.benefit-number {
    display: inline-block;
}

.benefit-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* 折叠相关样式 */
.collapse-toggle h3 {
    margin: 0;
    font-size: 2rem;
    flex: 1;
    padding: 0 22px;
}

.collapse-icon.rotated {
    transform: rotate(180deg);
}

.collapse-content {
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.collapse-content.collapsed {
    max-height: 0;
    opacity: 0;
}

.collapse-content.expanded {
    max-height: 1000px;
    opacity: 1;
}

/* CTA区域 */
.cta-section {
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-title {
    position: relative;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 18px;
    }
}

@media (max-width: 1440px) {
    .container {
        max-width: 95%;
        margin: 0 auto;
    }
}

/* 响应式设计 */
@media (max-width: 992px) {
    .hero-section {
        min-height: 0;
        flex-direction: column;
    }

    .hero-content {
        width: 100%;
    }

    .hero-text {
        padding: 100px 0 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .transition-overlay,
    .credit-bg,
    .banner-bg {
        display: none;
    }

    .speech-bubble-container {
        flex-direction: column;
    }

    .speech-bubble:before {
        left: 30px;
        top: -20px;
        border-right: 15px solid transparent;
        border-left: 15px solid transparent;
        border-bottom: 20px solid #fff8f0;
        border-top: none;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .key-points {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .section-title {
        font-size: 2.2rem;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .full-width-card {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .benefit-card {
        padding: 20px;
    }

    .benefit-title {
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-button-large {
        padding: 15px 30px;
        font-size: 1.2rem;
    }

    .hero-section {
        min-height: 0;
        flex-direction: column;
    }

    .hero-content {
        width: 100%;
    }

    .hero-text {
        padding: 60px 0px 0;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .check-list-title,
    .check-list-text p,
    .check-list-ra {
        font-size: 1.1rem;
    }

    .check-list-title {
        flex: auto !important;
    }

    .speech-bubble-content {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .point-number {
        font-size: 2.5rem;
    }

    .point-title {
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-button-large {
        padding: 15px 30px;
        font-size: 1.2rem;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }

    .comic-sky-section {
        height: 200px;
    }

    .comic-sky-title {
        font-size: 1.8rem;
    }

    .comic-sky-subtitle {
        font-size: 1rem;
    }

    .cloud-1 {
        width: 50px;
        height: 25px;
        top: 20px;
    }

    .cloud-1:before {
        width: 30px;
        height: 30px;
        top: -15px;
        left: 5px;
    }

    .cloud-1:after {
        width: 25px;
        height: 25px;
        top: -10px;
        left: 25px;
    }

    .cloud-2 {
        width: 80px;
        height: 35px;
        top: 60px;
    }

    .cloud-2:before {
        width: 40px;
        height: 40px;
        top: -20px;
        left: 10px;
    }

    .cloud-2:after {
        width: 30px;
        height: 30px;
        top: -15px;
        left: 35px;
    }

    .main-heading {
        font-size: 3.0rem;
    }

    .sub-heading {
        font-size: 1.2rem;
    }

    .problem-content {
        font-size: 1.1rem;
        line-height: 1.25;
    }

    .process-footer {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .visual-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .feature-card {
        padding: 20px;
    }

    h3.compact-heading {
        font-size: 1.3rem;
    }

    .problems-solutions-container,
    .document-info-box,
    .document-categories,
    .document-footer-note {
        padding: 0 15px;
    }

    .card-header {
        padding: 30px 15px;
    }

    .card-title {
        font-size: 2.0rem;
    }

    .card-body {
        padding: 20px 10px;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-categories {
        gap: 10px;
    }

    .faq-category {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question span {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 0.9rem;
        margin-right: 15px;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-answer.open {
        padding: 15px 20px 20px;
    }

    .faq-answer-content {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .cta-button-hero {
        padding: 12px 25px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .comic-sky-section {
        height: 150px;
    }

    .comic-sky-title {
        font-size: 1.5rem;
    }

    .comic-sky-subtitle {
        font-size: 0.9rem;
    }

    .process-footer {
        padding: 20px 15px !important;
        line-height: 1.25;
    }

    .visual-doc-table {
        margin: 0 10px !important;
    }

    .container {
        padding: 0 14px;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question-text {
        font-size: 0.95rem;
    }

    .faq-answer.open {
        padding: 10px 15px 15px;
    }
}