.banner-desc-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.banner-desc-box-title {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.banner-desc-box-content {
    color: #fff;
    font-size: 16px;
}

@media (max-width: 767px) {
    .banner-desc-box {
        width: 90%;
        margin: auto;
    }

    .banner-desc-box-title h1 {
        font-size: 24px;
    }
}

/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
    padding: 20px 0;
    background-color: #fff;
}

.breadcrumb-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #999;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #222;
}

.breadcrumb-item.active {
    color: #222;
    font-weight: 500;
}

.home-icon {
    display: flex;
    align-items: center;
}

.home-icon img {
    width: 16px;
    height: 16px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '';
}

/* Turn Ideas Into Reality Section Styles */
.turn-ideas-reality-section {
    padding: 60px 20px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .turn-ideas-reality-section {
        padding: 60px 15px;
    }
}

.tir-container {
    max-width: 1680px;
    /* Max width for the container */
    margin: 0 auto;
    padding: 0;
    position: relative;
    /* For swiper navigation positioning */
}

.tir-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.tir-header-content {
    max-width: 650px;
    /* Limit width of text content */
}

.tir-main-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.tir-subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.tir-view-more-btn {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #ccc;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    background-color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
}

.tir-view-more-btn:hover {
    background-color: #d9d9d9;
    border-color: #d9d9d9;
    color: #333;
}

.tir-swiper {
    padding-bottom: 10px;
    /* Adjusted padding as pagination is removed */
}

.tir-slide {
    text-align: left;
}

.tir-slide-image-wrapper {
    width: 100%;
    /* aspect-ratio: 3 / 4; /* Or your desired aspect ratio */
    /* height: 350px; /* Or a fixed height if you prefer */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: #e9e9e9;
    /* Placeholder if image is missing */
}

.tir-slide-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.tir-slide-title {
    font-size: 15px;
    color: #333;
    margin: 0;
    padding: 0 5px;
    /* Some padding if text is close to edges */
    line-height: 1.4;
}

/* Swiper Navigation Buttons - COMMENTED OUT */
/*
.tir-button-prev,
.tir-button-next {
    color: #000; 
    width: 30px; 
    height: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    top: 50%; 
    transform: translateY(-50%); 
}

.tir-button-prev::after,
.tir-button-next::after {
    font-size: 16px; 
    font-weight: bold;
}

.tir-button-prev {
    left: -15px; 
}

.tir-button-next {
    right: -15px; 
}
*/

/* Swiper Pagination - COMMENTED OUT */
/*
.tir-pagination .swiper-pagination-bullet {
    background-color: #aaa;
    opacity: 0.7;
}

.tir-pagination .swiper-pagination-bullet-active {
    background-color: #000;
    opacity: 1;
}
*/

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .tir-container {
        padding: 0 20px;
        /* Reverted padding as nav buttons are removed */
    }

    /* Navigation button positioning adjustments removed as buttons are removed */
    /*
    .tir-button-prev {
        left: 5px;
    }
    .tir-button-next {
        right: 5px;
    }
    */
}

@media (max-width: 767px) {
    .tir-container{
        padding:0;
    }
    .tir-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .tir-header-content {
        max-width: 100%;
    }

    .tir-main-title {
        font-size: 26px;
    }

    .tir-subtitle {
        font-size: 15px;
    }

    .tir-view-more-btn {
        align-self: flex-start;
    }

    /* Navigation buttons hide rule removed as buttons are removed */
    /*
    .tir-button-prev,
    .tir-button-next {
        display: none; 
    }
    */
    .tir-swiper {
        padding-bottom: 10px;
        /* Adjusted padding as pagination is removed */
    }
}

/* Production Advantage Section Styles */
.production-advantage-section {
    padding: 60px 20px;
    background-color: #fff;
    /* White background */
}

@media (max-width: 767px) {
    .production-advantage-section {
        padding: 0px 15px 60px 15px;
    }
}

.pa-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0;
}

.pa-content-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: stretch;
    /* Explicitly set, though it's the default */
}

.pa-left-image-column {
    flex-basis: 50%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    /* Make this a flex container */
    flex-direction: column;
    /* Align items (the image) vertically */
}

.pa-image {
    width: 100%;
    height: 0;
    /* Explicitly set height to 0 to allow flex-grow to fully control height */
    flex-grow: 1;
    /* Allow image to grow and fill the column height */
    min-height: 0;
    /* Important for allowing shrinkage and overriding default min-height: auto */
    object-fit: cover;
    border-radius: 12px;
    /* Match parent for smooth corners */
    /* Ensure previous removals like "display: block;" and "height: 100%;" are still respected if this replaces the block */
}

.pa-right-text-column {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
}

.pa-main-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 25px;
}

.pa-advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pa-advantage-item {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid transparent;
    /* For smooth transition */
}

.pa-advantage-item.active {
    background-color: #efefef;
    /* Light blueish-gray background for active item */
}

.pa-advantage-item:not(.active):hover {
    background-color: #f9f9f9;
    /* Slight hover effect for non-active items */
}

.pa-item-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.pa-item-description {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Stats Row Styles */
.pa-stats-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.pa-stat-card {
    background-color: #f7f7f7;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
}

.pa-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 400;
    color: #222;
    margin-bottom: 5px;
}

.pa-stat-label {
    font-size: 18px;
    color: #000;
    margin: 0;
    font-weight: 400;
}

/* Responsive Adjustments for Production Advantage */
@media (max-width: 1200px) {
    .pa-content-wrapper {
        gap: 30px;
    }

    .pa-stat-card {
        padding: 20px 15px;
    }

    .pa-stat-number {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .pa-content-wrapper {
        flex-direction: column;
    }

    .pa-left-image-column,
    .pa-right-text-column {
        flex-basis: 100%;
    }

    .pa-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .pa-main-title {
        font-size: 28px;
    }

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

@media (max-width: 767px) {
    .pa-container {
        padding: 0;
    }

    .pa-main-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .pa-advantage-item {
        padding: 15px;
    }

    .pa-item-title {
        font-size: 17px;
    }

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

    .pa-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .pa-stat-number {
        font-size: 26px;
    }

    .pa-stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .pa-stats-row {
        grid-template-columns: repeat(2, 1fr);
        /* Single column on very small screens */
    }
}

/* Full Customization Solution Section Styles */
.full-customization-solution-section {
    padding: 60px 0;
    background-color: #f7f7f7;
    /* White background, adjust if needed */
}

.fcs-container {
    max-width: 100%;
    margin: 0 auto;
}

.fcs-header {
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .fcs-header {
        padding: 0 15px;
    }
}

.fcs-options-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.fcs-main-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.fcs-subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px auto;
    /* Center the subtitle */
}

.fcs-tabs-nav {
    background-color: #ebebeb;
    padding: 10px;
    margin-bottom: 40px;
    display: flex;
    /* For centering the ul if it doesn't fill width */
    justify-content: center;
    /* Center tabs */
}

.fcs-tabs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    /* Allow tabs to wrap on smaller screens */
    justify-content: center;
    gap: 5px;
    /* Gap between tab items */
}

.fcs-tab-item {
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.fcs-tab-item:hover {
    background-color: #e9e9e9;
    color: #222;
}

.fcs-tab-item.active {
    background-color: #fff;
    color: #222;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fcs-content-area {
    /* Styles for the content area if needed */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 767px) {
    .fcs-content-area {
        padding: 0 15px;
    }
}


.fcs-tab-content {
    display: none;
    /* Hide all tab content by default */
}

.fcs-tab-content.active {
    display: block;
    /* Show only the active tab content */
}

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

.fcs-item-card {
    background-color: #fff;
    /* Card background */
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.08); */
    /* Optional: soft shadow for cards */
    text-align: left;
}

.fcs-item-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    /* Maintain aspect ratio for images */
    background-color: #f0f0f0;
    /* Placeholder background for image */
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.fcs-item-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fcs-item-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 15px 15px 8px 15px;
}

.fcs-item-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0 15px 15px 15px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .fcs-items-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .fcs-tab-item {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .fcs-main-title {
        font-size: 28px;
    }

    .fcs-subtitle {
        font-size: 15px;
    }

    .fcs-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fcs-tabs-list {
        justify-content: flex-start;
        /* Align tabs to start on smaller screens */
        overflow-x: auto;
        /* Allow horizontal scrolling for tabs if they overflow */
        white-space: nowrap;
        /* Keep tabs in a single line for scrolling */
        padding-bottom: 10px;
        padding-left: 15px;
        padding-right: 15px;
        /* Space for scrollbar if it appears */
    }

    .fcs-tabs-nav {
        padding-right: 0;
        padding-left: 0;
    }

    .fcs-tab-item {
        flex-shrink: 0;
        /* Prevent tabs from shrinking when scrolling */
    }
}

@media (max-width: 767px) {
    .fcs-items-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Or 1fr for single column */
        gap: 15px;
    }

    .fcs-main-title {
        font-size: 24px;
    }

    .fcs-item-title {
        font-size: 16px;
    }

    .fcs-item-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .fcs-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fcs-tab-item {
        padding: 8px 15px;
        font-size: 13px;
    }
}

/* Curious Designers Section Styles */
.curious-designers-section {
    background-color: #f8f9fa;
    /* Light grey background, matching image */
    padding: 60px 0;
}

.cds-container {
    max-width: 900px;
    /* Adjusted max-width for a more compact look */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.cds-avatar-column {
    flex-shrink: 0;
}

.cds-avatar-column img {
    width: 150px;
    /* Avatar size */
    height: 150px;
    border-radius: 50%;
    /* Circular avatar */
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cds-text-column {
    flex-grow: 1;
}

.cds-title {
    font-size: 24px;
    /* Slightly smaller title */
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cds-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cds-contact-link {
    display: inline-flex;
    /* To align text and arrow */
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cds-contact-link:hover {
    color: #007bff;
    /* Example hover color */
}

.cds-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cds-contact-link:hover .cds-arrow {
    transform: translateX(5px);
}

/* Responsive Adjustments for Curious Designers Section */
@media (max-width: 767px) {
    .cds-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cds-avatar-column img {
        width: 120px;
        height: 120px;
        margin-bottom: 10px;
        /* Add some space below avatar on mobile */
    }

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

    .cds-description {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .cds-contact-link {
        font-size: 17px;
    }
}

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

/* Customer Case Section Styles */
.customer-case-section {
    padding: 60px 20px;
    background-color: #fff;
    /* White background */
    overflow: hidden;
}

.cc-container {
    max-width: 1680px;
    /* Full width for the carousel */
    margin: 0 auto;
    padding: 0;
    /* Adjust padding as needed */
}

.cc-main-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
}

.customer-case-swiper {
    width: 100%;
    /* overflow: hidden; Swiper handles this */
}

.customer-case-swiper .swiper-wrapper {
    display: flex;
    /* Ensure it's a flex container, Swiper usually does this */
    align-items: stretch;
    /* This is key to make all slides in a row have the same height */
}

.cc-slide {
    background-color: #f8f9fa;
    /* Light background for each card */
    border-radius: 12px;
    overflow: hidden;
    /* Ensures content respects border-radius */
    display: flex;
    /* Make the slide itself a flex container */
    flex-direction: column;
    /* Stack its children vertically */
    /* box-shadow: 0 6px 15px rgba(0,0,0,0.07); */
    background: #F7F7F7;
    height: auto;
    /* Important: Override Swiper's potential inline height */
    align-self: stretch;
    /* Ensure the slide stretches to the height of the wrapper's flex line */
}

.cc-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    /* Or your desired aspect ratio */
    background-color: #e9e9e9;
    /* Placeholder */
    flex-shrink: 0;
    /* Prevent image wrapper from shrinking */
}

.cc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cc-testimonial-content {
    padding: 25px;
    flex-grow: 1;
    /* Allows this part to fill remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Pushes customer info to bottom if content is short */
}

.cc-quote {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Allows quote to take up available space within testimonial content */
}

.cc-customer-info {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-top: auto;
    /* Pushes to bottom if testimonial is short */
}

.cc-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.cc-customer-details {
    /* Styles for name and role container */
}

.cc-customer-name {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin: 0 0 2px 0;
}

.cc-customer-role {
    font-size: 13px;
    color: #555;
    margin: 0;
}

/* Responsive Adjustments for Customer Case */
@media (max-width: 991px) {
    .cc-main-title {
        font-size: 28px;
    }

    /* Swiper slidesPerView will handle column changes in JS */
}

@media (max-width: 767px) {
    .cc-container {
        padding: 0 15px;
    }

    .cc-main-title {
        font-size: 24px;
    }

    .cc-testimonial-content {
        padding: 20px;
    }

    .cc-quote {
        font-size: 14px;
    }

    .cc-customer-name {
        font-size: 15px;
    }

    .cc-avatar {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    /* Further adjustments for very small screens if Swiper doesn't handle it well enough */
}

/* FAQ Section Styles */
.faq-section {
    padding: 60px 20px;
    background-color: #fff;
    /* White background */
}

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

.faq-container {
    max-width: 1680px;
    /* Adjusted max-width as per request */
    margin: 0 auto;
    padding: 0;
}

.faq-main-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    /* border-top: 1px solid #e0e0e0; */
}

.faq-item {
    /* border-bottom: 1px solid #e0e0e0; */
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question-title {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    transition: font-weight 0.2s ease-in-out;
}

.faq-item .faq-question-title:hover {
    font-weight: 700;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    transition: max-height 0.35s ease-in-out;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 20px;
    /* Padding only when open */
}

.faq-icon {
    width: 12px;
    flex-shrink: 0;
    margin-left: 15px;
    margin-bottom: 8px;
}

/* Responsive Adjustments for FAQ */
@media (max-width: 767px) {
    .faq-main-title {
        font-size: 28px;
    }

    .faq-question {
        font-size: 17px;
        padding: 18px 0;
    }

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

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

    .faq-question {
        font-size: 16px;
        justify-content: space-between;
        align-items: center;
    }
}

/* Contact Form Section for Customization Page */
.contact-form-section-customization {
    padding: 60px 20px;
    background-color: #F7F7F7;
    /* Light background for the section */
}

.cfsc-container {
    max-width: 1680px;
    /* Max width for the container */
    margin: 0 auto;
    padding: 0;
    display: flex;
    gap: 40px;
    /* Gap between title area and form area */
}

.cfsc-title-area {
    flex-basis: 200px;
    /* Width of the "CONTACT US" title block */
    flex-shrink: 0;
}

.cfsc-title {
    font-size: 28px;
    font-weight: bold;
    color: #222;
    margin: 0;
    padding-top: 10px;
    /* Align with the top of the first input fields */
}

.cfsc-form-area {
    flex-grow: 1;
    padding: 0 40px;
    border-radius: 8px;
}

.cfsc-form-row {
    display: flex;
    gap: 25px;
    flex-direction: column;
    width: 30%;
}

.cfsc-form-group {
    flex: 1;
    /* Each group takes equal space in a row */
    display: flex;
    /* flex-direction: column; */
}

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

.cfsc-form-group input[type="text"],
.cfsc-form-group input[type="email"],
.cfsc-form-group input[type="tel"],
.cfsc-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 16px;
    background-color: #fdfdfd;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cfsc-form-group input[type="text"]:focus,
.cfsc-form-group input[type="email"]:focus,
.cfsc-form-group input[type="tel"]:focus,
.cfsc-form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    outline: none;
}

.cfsc-message-group {
    position: relative;
    /* For positioning the upload trigger */
    /* margin-bottom: 20px; */
}

.cfsc-message-group textarea {
    min-height: 120px;
    /* Message box height */
    resize: vertical;
    /* Space for the icon */
}

.cfsc-file-upload-trigger {
    position: absolute;
    bottom: 10px;
    /* Position from bottom of textarea padding */
    left: 10px;
    /* Position from left of textarea padding */
    cursor: pointer;
    padding: 5px;
    /* Clickable area */
    color: #555;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cfsc-file-upload-trigger svg {
    width: 20px;
    /* Icon size */
    height: 20px;
}

.cfsc-file-upload-trigger:hover svg {
    color: #007bff;
}

.cfsc-file-input {
    display: none;
    /* Hidden file input */
}

.cfsc-submit-group {
    text-align: right;
    /* Aligns button to the right */
    margin-top: 10px;
}

.cfsc-submit-button {
    padding: 12px 15px;
    background-color: #555555;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-15%, -50%);
}

.cfsc-submit-button:hover {
    background-color: #444444;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .cfsc-container {
        flex-direction: column;
        gap: 20px;
    }

    .cfsc-title-area {
        flex-basis: auto;
        text-align: center;
    }

    .cfsc-title {
        padding-top: 0;
        margin-bottom: 20px;
        /* Space below title on mobile */
    }

    .cfsc-form-area {
        padding: 0px;
    }
}

@media (max-width: 767px) {
    .cfsc-form-row {
        flex-direction: column;
        gap: 0;
        /* Remove gap as they stack */
        margin-bottom: 0;
        /* Individual groups will have margin */
    }

    .cfsc-form-group {
        margin-bottom: 20px;
        /* Add margin back for stacked groups */
    }

    .cfsc-message-group textarea {
        min-height: 100px;
    }

    .cfsc-submit-group {
        text-align: center;
    }

    .cfsc-submit-button {
        width: 100%;
    }
}

.learn-more-link-mod {
    display: inline-flex;
    /* 改为 inline-flex 以更好地对齐文本和SVG */
    align-items: center;
    /* 垂直居中对齐内部元素 */
    font-size: 26px;
    font-weight: bold;
    color: #1d1d1f;
    text-decoration: none;
    margin-top: 10px;
    /* overflow: hidden; */
    /* 暂时移除或根据需要调整，确保文本滑动可见 */
}

.learn-more-link-mod:hover {
    color: #000;
    /* Darker blue on hover */
}

.learn-more-text-wrapper {
    position: relative;
    display: inline-block;
    height: 1.2em;
    /* 根据字体大小调整，例如 15px * 1.2 = 18px */
    line-height: 1.2em;
    /* 保持与高度一致 */
    overflow: hidden;
    vertical-align: middle;
    /* 尝试对齐 */
    margin-right: 5px;
    /* 在文本和箭头之间添加一些间距 */
}

.slide-text-original,
.slide-text-hover {
    display: block;
    /* 使 transform 生效 */
    transition: transform 0.3s ease-in-out;
}

.slide-text-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    /* 初始状态：在下方隐藏 */
}

.learn-more-link-mod:hover .slide-text-original {
    transform: translateY(-100%);
    /* 原始文本向上滑出 */
}

.learn-more-link-mod:hover .slide-text-hover {
    transform: translateY(0%);
    /* 悬停文本从下方滑入 */
}

.learn-more-link-mod svg {
    /* margin-left: 5px; */
    /* 间距已改到 .learn-more-text-wrapper 的 margin-right */
    transition: transform 0.3s ease-in-out;
    /* 控制恢复和滑动的动画时间 */
    transform: translateX(0);
    /* 明确初始位置 */
}

.learn-more-link-mod:hover svg {
    transform: translateX(8px);
    /* 鼠标悬停时向右滑动8px */
    /* 移除 animation 属性 */
}

/* Process Section Styles */
.process-section {
    padding: 100px 20px;
    background-color: #fff;
}

.process-section .container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0;
}

/* Process Header */
.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}

.process-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

.process-description {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin: 0 auto;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.process-icon svg {
    color: #333;
    transition: all 0.3s ease;
}

.process-icon img {
    width: 38px;
}


.process-step {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.process-text {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .process-section {
        padding: 80px 0;
    }

    .process-header {
        margin-bottom: 60px;
    }

    .process-title {
        font-size: 36px;
    }

    .process-description {
        font-size: 16px;
    }

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

    .process-item {
        padding: 30px 25px;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .process-icon svg {
        width: 32px;
        height: 32px;
    }

    .process-step {
        font-size: 18px;
        margin-bottom: 12px;
    }

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

/* Mobile Styles (max-width: 767px) */
@media (max-width: 767px) {
    .process-section {
        padding: 60px 0;
    }

    .process-section .container {
        padding: 0 15px;
    }

    .process-header {
        margin-bottom: 50px;
    }

    .process-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .process-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

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

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

    .process-item {
        padding: 0;
        text-align: center;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 20px;
    }

    .process-icon svg {
        width: 28px;
        height: 28px;
    }

    .process-step {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .process-text {
        font-size: 14px;
        line-height: 1.5;
    }
}

.cfsc-form-area form {
    /* display: flex; */
    gap: 10px;
}

.site-footer {
    background: #fff !important;
}

@media (max-width: 767px) {
    .pa-left-image-column {
        display: none;
    }
    .pa-advantage-item img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: none;
        margin-top: 10px;
    }
}

@media (min-width: 768px) {
    .mobile-pa-item-image {
        display: none;
    }
}