
:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f8f9fa;
    --accent-color: #ff6b6b;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border-color: #e9ecef;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --font-family: 'Noto Sans TC', 'Roboto', sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

.main-content {
    padding: 1px 0 0px;
    min-height: calc(100vh - 200px);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.sub-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.text-right {
    text-align: right;
}

.text-muted {
    color: var(--text-muted);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1e3d6f;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-content {
    color: var(--text-light);
    line-height: 1.6;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.col-2 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-3 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

.col-4 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.list-unstyled {
    list-style: none;
}

.list-check li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.list-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.section {
    padding: 60px 0;
}

.section-bg {
    background-color: var(--secondary-color);
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

.img-rounded {
    border-radius: 10px;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }
.pb-4 { padding-bottom: 40px; }
.pb-5 { padding-bottom: 50px; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pt-4 { padding-top: 40px; }
.pt-5 { padding-top: 50px; }

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .main-content {
        padding: 30px 0 0px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .row {
        margin: 0;
    }
    
    .col,
    .col-2,
    .col-3,
    .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .card {
        padding: 20px;
    }
    
    .section {
        padding: 40px 0;
    }
}

.wide-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.advantages-section {
    padding: 10px 0;
}

.advantages-section.bg-light {
    background-color: #f8f9fa;
}

.advantages-title-area {
    text-align: center;
    margin-bottom: 50px;
}

.advantages-main-title {
    color: #003C6E;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 12px;
}

.advantages-sub-title {
    color: #FEBF34;
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 0;
}

.advantages-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.advantages-text {
    flex: 1;
}

.advantages-image {
    flex: 1;
    text-align: center;
}

.advantages-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.advantages-text .text-bold {
    color: #000;
    font-weight: 700;
}

.advantages-text .text-medium {
    color: #000;
    font-weight: 500;
}

.advantages-text .text-highlight {
    color: #FF7541;
    font-weight: 700;
}

.advantages-image img {
    width: 100%;
    max-width: 740px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.placeholder-content {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content p {
    color: #999;
    font-size: 1.2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
}

.section-title-with-lines::before,
.section-title-with-lines::after {
    content: '';
    flex: 1;
    height: 3px;
    background: linear-gradient(to right, transparent, #FDBF36);
    max-width: 480px;
    position: relative;
    top: 5px;
}

.section-title-with-lines::after {
    background: linear-gradient(to left, transparent, #FDBF36);
}

.main-title-text {
    padding: 0 30px;
    font-size: 2.5rem;
    font-weight: 700;
    white-space: nowrap;
}

.main-title-text .number {
    color: #FE6A28;
    font-size: 1.3em;
    font-weight: 400;
}

.main-title-text .text {
    color: #003C6E;
    font-size: 0.8em;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #353334;
    margin: 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.advantage-card {
    border: 3px solid #FDBF36;
    border-radius: 12px;
    background: linear-gradient(to bottom, #FFFCF0 0%, #FFFFFF 30%);
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(253, 191, 54, 0.2);
}

.advantage-icon {
    flex: 0 0 40%;
    text-align: center;
}

.advantage-icon img {
    width: 100%;
    max-width: 140px;
    height: 140px;
    object-fit: contain;
}

.advantage-content {
    flex: 1;
    padding-left: 10px;
}

.advantage-title {
    color: #023C6D;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.advantage-description {
    color: #000;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .advantages-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .advantages-main-title {
        font-size: 2rem;
    }
    
    .advantages-sub-title {
        font-size: 1.5rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .advantage-card {
        background: linear-gradient(to bottom, #FFFCF0 0%, #FFFFFF 30%);
        border: 3px solid #FDBF36;
        border-radius: 12px;
    }
    
    .main-title-text {
        font-size: 2rem;
    }
    
    .main-title-text .number {
        font-size: 1.5em;
        font-weight: 400;
    }
    
    .main-title-text .text {
        font-size: 0.8em;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .wide-container {
        padding: 0 0px;
    }
    
    .advantages-section {
        padding: 20px 0;
    }
    
    .section-three {
        padding-top: 0px;
    }
    
    .advantages-main-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .advantages-sub-title {
        font-size: 1.3rem;
    }
    
    .advantages-text p {
        font-size: 1rem;
    }
    
    .advantages-image img {
        height: 250px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .advantage-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        background: linear-gradient(to bottom, #FFFCF0 0%, #FFFFFF 30%);
        border: 3px solid #FDBF36;
        border-radius: 12px;
    }
    
    .advantage-icon {
        flex: none;
        margin-bottom: 15px;
    }
    
    .advantage-icon img {
        max-width: 120px;
        height: 120px;
    }
    
    .advantage-content {
        padding-left: 0;
    }
    
    .advantage-icon {
        align-self: center;
    }
    
    .advisor-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .advisor-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
        padding: 12px 16px;
    }
    
    .main-title-text {
        font-size: 1.6rem;
        padding: 0 20px;
    }
    
    .main-title-text .number {
        font-size: 1.5em;
        font-weight: 400;
    }
    
    .main-title-text .text {
        font-size: 0.8em;
    }
    
    .section-title-with-lines::before,
    .section-title-with-lines::after {
        max-width: 150px;
    }
}

.section-three {
    position: relative;
    padding-top: 100px;
    padding-bottom: 0px;
    overflow: visible;
}

.section-three::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 40%;
    background-color: #FEF0BF;
    z-index: -1;
}

.advisor-card {
    margin-left: 0;
    margin-right: calc(-50vw + 50%);
    background: linear-gradient(to bottom, #FFEA97, #FFDF72);
    border-radius: 20px 0 0 0;
    padding: 25px 40px 0;
    display: flex;
    align-items: flex-end;
    gap: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    overflow: visible;
}

.advisor-image {
    flex: 0 0 20%;
    text-align: center;
    margin-top: -100px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    align-self: flex-end;
}

.advisor-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.advisor-content {
    flex: 1;
    padding-left: 20px;
    padding-bottom: 100px;
}

.advisor-title {
    color: #003C6E;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
}

.advisor-description {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.advisor-description:last-child {
    margin-bottom: 0;
}

.advisor-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    align-items: center;
}

.advisor-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    border: 3px solid #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.advisor-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.advisor-btn-primary {
    background-color: #FF6A28;
    color: #ffffff;
}

.advisor-btn-primary:hover {
    background-color: #e55a20;
    color: #ffffff;
}

.advisor-btn-secondary {
    background-color: #003C6E;
    color: #ffffff;
}

.advisor-btn-secondary:hover {
    background-color: #002a4d;
    color: #ffffff;
}

.advisor-btn-secondary .phone-number {
    color: #FEF0BF;
}

@media (max-width: 992px) {
    .advisor-card {
        margin-left: 0;
        margin-right: calc(-50vw + 50%);
        padding: 20px 30px 0;
        gap: 25px;
        align-items: flex-end;
        border-radius: 20px 0 0 0;
    }
    
    .advisor-image {
        flex: 0 0 35%;
        margin-top: -20px;
        margin-bottom: 0;
        align-self: flex-end;
    }
    
    .advisor-title {
        font-size: 1.2rem;
    }
    
    .advisor-content {
        padding-bottom: 20px;
    }
    
    .advisor-buttons {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .advisor-btn {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

@media (max-width: 768px) {
    .advisor-card {
        margin-left: 0;
        margin-right: 0;
        flex-direction: column;
        text-align: center;
        padding: 15px 25px 0;
        border-radius: 20px 20px 0 0;
        align-items: center;
    }
    
    .advisor-image {
        flex: none;
        margin-top: -34px;
        margin-bottom: 0;
        align-self: center;
        order: 2;
    }
    
    .advisor-image img {
        max-width: 200px;
    }
    
    .advisor-content {
        padding-left: 0;
        padding-bottom: 25px;
        order: 1;
    }
    
    .advisor-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .advisor-description {
        font-size: 0.95rem;
    }
}

.success-cases-section {
    padding: 10px 0;
}

.success-content-container {
    background-color: #F6F6F6;
    display: flex;
    align-items: stretch;
    min-height: 277px;
    border-radius: 10px;
    overflow: hidden;
}

.success-text-content {
    flex: 0 0 55%;
    padding: 74px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.success-text-content p {
    color: #333333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.success-text-content p:last-child {
    margin-bottom: 0;
}

.line-id {
    color: #47C20F;
    font-weight: 600;
}

.success-image-content {
    flex: 0 0 45%;
    display: flex;
    align-items: stretch;
}

.success-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .success-content-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .success-text-content {
        flex: none;
        padding: 30px 20px;
    }
    
    .success-text-content p {
        font-size: 14px;
    }
    
    .success-image-content {
        flex: none;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .success-text-content {
        padding: 25px 15px;
    }
    
    .success-text-content p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .success-image-content {
        min-height: 200px;
    }
}

.cases-stats {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    padding-top: 20px;
}

.cases-count {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
}

.success-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.success-case-card {
    background: linear-gradient(to bottom, #FEF3EF 0%, #FFFFFF 10%);
    border: 2px solid #FFBB66;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.success-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 187, 102, 0.3);
}

.case-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.case-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.case-title {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    overflow-wrap: break-word;
}

.loan-amount {
    color: #FF6928;
    font-weight: 700;
    font-size: 1.3em;
}

.case-content {
    margin-top: 30px;
    padding: 0 50px;
}

.case-content p {
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    overflow-wrap: break-word;
}

.no-cases-message,
.error-message {
    text-align: center;
    padding: 50px 20px;
    color: #666666;
    font-size: 16px;
}

.error-message {
    color: #dc3545;
}

@media (max-width: 1024px) {
    .success-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .cases-stats {
        justify-content: center;
        padding-top: 15px;
        margin-bottom: 15px;
    }
    
    .cases-count {
        font-size: 15px;
    }
    
    .success-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    
    .success-case-card {
        padding: 20px;
    }
    
    .case-content {
        padding: 0 12px;
    }
    
    .case-title {
        font-size: 17px;
        word-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        overflow-wrap: break-word;
    }
    
    .case-content p {
        font-size: 15px;
        text-align: left;
        word-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .cases-count {
        font-size: 14px;
    }
    
    .success-case-card {
        padding: 15px;
    }
    
    .case-content {
        padding: 0 10px;
    }
    
    .case-card-header {
        gap: 8px;
    }
    
    .case-icon {
        width: 20px;
        height: 20px;
    }
    
    .case-title {
        font-size: 16px;
        word-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        overflow-wrap: break-word;
    }
    
    .case-content p {
        font-size: 14px;
        text-align: left;
        word-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        overflow-wrap: break-word;
    }
}

.process-section {
    padding: 20px 0;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(-50vw + 50%);
    width: 100vw;
    height: 560px;
    background-image: url('../images/03left_coins.png');
    background-size: 240px 560px;
    background-repeat: no-repeat;
    background-position: bottom left;
    z-index: 0;
    pointer-events: none;
}

.process-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: calc(-50vw + 50%);
    width: 100vw;
    height: 450px;
    background-image: url('../images/03right_coins.png');
    background-size: 250px 450px;
    background-repeat: no-repeat;
    background-position: bottom right;
    z-index: 0;
    pointer-events: none;
}

.process-section-two {
    background-color: #F6F6F6;
    padding: 0px 0;
    position: relative;
    margin: 140px calc(-50vw + 50%) 0;
    width: 100vw;
    overflow: visible;
}

.process-info-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
}

.process-info-text {
    flex: 0 0 60%;
    padding-right: 20px;
}

.info-item {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #000;
    font-weight: 400;
}

.info-highlight {
    color: #FEA627;
    font-weight: 700;
}

.info-cta {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #023A6B;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 25px;
}

.info-buttons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    justify-content: flex-start;
}

.info-btn {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    flex: 0 0 auto;
    justify-content: center;
    gap: 6px;
    border: 3px solid #FFFFFF; /* 3px白色外框線 */
    min-width: 160px; /* 設定最小寬度保持美觀 */
}

.info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* LINE按鈕 */
.info-btn-line {
    background-color: #47C211;
    color: #FFFFFF;
}

.info-btn-line:hover {
    background-color: #3ba50e;
}

.info-btn-line i {
    font-size: 1.2em;
}

/* 成功案例按鈕 */
.info-btn-cases {
    background-color: #FF6A28;
    color: #FFFFFF;
}

.info-btn-cases:hover {
    background-color: #e55a20;
}

.info-btn-cases i {
    font-size: 1.2em;
}

/* 右側圖片 30% */
.process-info-image {
    flex: 0 0 40%;
    text-align: center;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-right: 20px;
}

.info-img {
    width: 100%;
    max-width: 519px;
    height: auto;
    object-fit: contain;
    /* 移除 transform，讓圖片貼齊底部 */
}

/* 借款流程頁面的標題區域獨立設定 */
.process-section .advantages-title-area {
    margin-bottom: 0px;
}

/* 流程說明文字樣式 */
.process-description {
    text-align: center;
    margin: 0px 0 0px;
}

.process-intro {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.highlight-number {
    font-size: 1.8em;
    color: #FF6A28;
    font-weight: 700;
    margin: 0 5px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1; /* 確保內容在背景圖片上方 */
}

/* 流程步驟卡片 */
.process-step-card {
    position: relative;
    background-color: #FFF7E0;
    background-image: 
        linear-gradient(90deg, #FFFFFF 1px, transparent 1px),
        linear-gradient(180deg, #FFFFFF 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible; /* 允許圖片超出卡片 */
    display: flex;
    align-items: center;
    gap: 25px;
    width: 90%; /* 寬度調整為90% */
    height: 240px; /* 固定高度 */
    max-width: 1350px; /* 相應調整最大寬度：1500px的90% */
    margin: 0 0 0 10%; /* 左邊往右靠10%，右邊維持 */
    box-sizing: border-box;
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* 步驟數字 */
.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFFFFF;
    color: #003C6E;
    font-size: 1.6rem;
    font-weight: 900;
    font-style: italic;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* 步驟圖片區域 */
.step-image {
    flex: 0 0 140px; /* 調整圖片區域寬度，為圖片超出預留空間 */
    display: flex;
    align-items: center;
    justify-content: flex-end; /* 圖片靠右對齊到區域邊界 */
    height: 100%;
    position: relative;
}

.step-img {
    width: 360px; /* 放大圖片 */
    height: auto;
    max-height: 210px;
    object-fit: contain;
    border: 2px solid #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-left: -120px; 
}

/* 步驟內容區域 */
.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    height: 100%;
    padding-right: 20px; /* 為數字標籤預留空間 */
}

.step-title {
    color: #003C6E;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.step-description {
    color: #000;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* 限制最多4行 */
    -webkit-box-orient: vertical;
}

/* 響應式設計 - 借款流程 */
@media (max-width: 992px) {
    /* 平板版背景圖片調整 */
    .process-section::before {
        height: 420px;
        background-size: 180px 420px; /* 調整左側圖片尺寸 */
    }
    
    .process-section::after {
        height: 338px;
        background-size: 188px 338px; /* 調整右側圖片尺寸 */
    }
    
    .process-steps {
        gap: 30px;
    }
    
    /* 區塊二響應式 - 平板版 */
    .process-section-two {
        padding: 50px 0;
    }
    
    .process-info-content {
        gap: 30px;
        padding: 40px 15px;
    }
    
    .process-info-image {
        padding-right: 15px;
    }
    
    .info-item {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }
    
    .info-cta {
        font-size: 1.2rem;
        margin-top: 25px;
        margin-bottom: 20px;
    }
    
    .info-buttons {
        gap: 15px;
        margin-top: 20px;
    }
    
    .info-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
        border-radius: 20px;
        min-width: 140px; /* 平板版調整最小寬度 */
    }
    
    .info-img {
        max-width: 250px;
    }
    
    .process-intro {
        font-size: 1.2rem;
    }
    
    .highlight-number {
        font-size: 1.6em;
    }
    
    .process-step-card {
        padding: 18px;
        gap: 20px;
        height: 180px; /* 固定高度 */
        width: 90%; /* 寬度調整為90% */
        max-width: 1260px; /* 相應調整：1400px的90% */
        margin: 0 0 0 10%; /* 左邊往右靠10%，右邊維持 */
    }
    
    .step-image {
        flex: 0 0 120px; /* 調整圖片區域寬度 */
        justify-content: flex-end;
    }
    
    .step-img {
        width: 170px; /* 平板版放大圖片 */
        max-height: 140px;
        margin-left: -51px; /* 讓圖片左邊30%超出卡片（170px的30%=51px） */
    }
    
    .step-content {
        padding-right: 15px;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .step-description {
        font-size: 0.9rem;
        line-height: 1.3;
        -webkit-line-clamp: 4;
    }
}

@media (max-width: 768px) {
    /* 手機版背景圖片調整 */
    .process-section {
        padding: 30px 0;
    }
    
    .process-section::before {
        height: 280px;
        background-size: 120px 280px; /* 調整左側圖片尺寸 */
    }
    
    .process-section::after {
        height: 225px;
        background-size: 125px 225px; /* 調整右側圖片尺寸 */
    }
    
    .process-description {
        margin: 20px 0 40px;
    }
    
    /* 區塊二響應式 - 手機版 */
    .process-section-two {
        padding: 40px 0 0 0;
        margin: 10px calc(-50vw + 50%) 0; /* 手機版特殊margin設定 */
    }
    
    .process-info-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }
    
    .process-info-text {
        flex: none;
        padding-right: 0;
        text-align: left; /* 確保文字容器內容靠左對齊 */
        order: 1;
    }
    
    .process-info-image {
        flex: none;
        order: 2; /* 圖片移到文字下方 */
        position: relative; /* 手機版重置為相對定位 */
        height: auto;
        right: auto;
        bottom: auto;
        display: block;
        padding-right: 0;
        text-align: center;
    }
    
    .info-item {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .info-cta {
        font-size: 1.1rem;
        margin-top: 20px;
        margin-bottom: 18px;
    }
    
    .info-buttons {
        flex-direction: column; /* 手機版垂直排列 */
        gap: 12px;
        margin-top: 18px;
        align-items: flex-start; /* 手機版按鈕也靠左對齊 */
    }
    
    .info-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        border-radius: 20px;
        /* 移除 width: 100% 讓按鈕自然寬度並靠左對齊 */
    }
    
    .info-img {
        max-width: 200px;
        /* 手機版移除transform，使用正常位置 */
    }
    
    .process-intro {
        font-size: 1.1rem;
    }
    
    .highlight-number {
        font-size: 1.5em;
    }
    
    .process-steps {
        gap: 25px;
    }
    
    .process-step-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 15px;
        height: 280px; /* 手機版固定高度 */
        width: 95%; /* 手機版稍微調整寬度 */
        max-width: 100%;
        margin: 0 0 0 5%; /* 手機版較小的偏移 */
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 10px;
        right: 10px;
    }
    
    .step-image {
        flex: 0 0 100px; /* 固定圖片區域高度 */
        width: 100%;
        justify-content: center;
        margin-top: -30px; /* 讓圖片向上超出卡片 */
    }
    
    .step-img {
        width: 160px; /* 手機版放大圖片 */
        max-height: 120px;
        margin-left: -20%; /* 圖片往左移動5% */
    }
    
    .step-content {
        flex: 1;
        padding-right: 0;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .step-description {
        font-size: 0.9rem;
        line-height: 1.3;
        -webkit-line-clamp: 5; /* 手機版允許更多行 */
    }
}

@media (max-width: 480px) {
    /* 小螢幕背景圖片調整 */
    .process-section::before {
        height: 210px;
        background-size: 90px 210px; /* 調整左側圖片尺寸 */
    }
    
    .process-section::after {
        height: 169px;
        background-size: 94px 169px; /* 調整右側圖片尺寸 */
    }
    
    .wide-container {
        padding: 0 15px;
    }
    
    /* 區塊二響應式 - 小螢幕 */
    .process-section-two {
        padding: 30px 0 0 0;
    }
    
    .process-info-content {
        padding: 0 10px;
        gap: 25px;
    }
    
    .info-item {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .info-cta {
        font-size: 1rem;
        margin-top: 18px;
        margin-bottom: 15px;
    }
    
    .process-info-image {
        position: relative; /* 小螢幕版也重置為相對定位 */
        height: auto;
        right: auto;
        bottom: auto;
        display: block;
        padding-right: 0;
    }
    
    .info-buttons {
        gap: 10px;
        margin-top: 15px;
    }
    
    .info-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
        border-radius: 18px;
        min-width: 120px; /* 小螢幕版調整最小寬度 */
    }
    
    .info-img {
        max-width: 260px;
        /* 小螢幕版移除transform，與手機版保持一致 */
    }
    
    .process-step-card {
        padding: 12px;
        gap: 12px;
        height: 269px; /* 小螢幕固定高度 */
        width: 100%; /* 小螢幕版本調整寬度 */
        margin: 0 0px 0 0%; /* 左邊偏移8%，保持一致 */
    }
    
    .step-image {
        flex: 0 0 90px;
        margin-top: -25px; /* 讓圖片向上超出卡片 */
    }
    
    .step-img {
        width: 226px; /* 小螢幕版放大圖片 */
        max-height: 133px;
        margin-left: -20%; /* 圖片往左移動5% */
    }
    
    .step-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .step-description {
        font-size: 0.85rem;
        line-height: 1.6;
        -webkit-line-clamp: 5;
    }
}

/* FAQ頁面專用樣式 */
.faq-image-content {
    flex: 0 0 25% !important;
    justify-content: flex-end;
    padding-left: 20px;
}

.faq-image-content .success-image {
    width: 120%;
    height: 100%;
    object-fit: cover;
    margin-left: auto;
    margin-right: 30px;
}

/* FAQ頁面文字區域調整 */
.faq-image-content ~ .success-text-content,
.success-content-container:has(.faq-image-content) .success-text-content {
    flex: 0 0 75%;
}

@media (max-width: 768px) {
    .faq-image-content {
        flex: none !important;
        min-height: 200px;
        justify-content: center;
        padding-left: 0;
    }
    
    .faq-image-content .success-image {
        width: 100%;
        margin-left: 0;
    }
    
    .faq-image-content ~ .success-text-content,
    .success-content-container:has(.faq-image-content) .success-text-content {
        flex: none;
    }
}

/* FAQ問答列表樣式 */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

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

.faq-question {
    background: #FFF7F0;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: 10px;
    margin-bottom: 15px;
    min-height: 50px;
}

.faq-number {
    background: #FF6A28;
    color: #FFFFFF;
    font-weight: 500;
    padding: 0;
    font-size: 24px;
    width: 55px;
    height: 55px;
    text-align: center;
    flex-shrink: 0;
    border-radius: 8px;
    margin: -15px 0 -15px -15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-title {
    color: #003C6E;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-left: 20px;
}

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

.faq-answer p {
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.no-faq-message {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 18px;
}

/* FAQ響應式設計 */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .faq-question {
        padding: 12px;
        margin-bottom: 10px;
        min-height: 40px;
    }
    
    .faq-number {
        padding: 0;
        font-size: 18px;
        width: 40px;
        height: 40px;
        margin: -12px 0 -12px -12px;
        border-radius: 6px;
    }
    
    .faq-title {
        font-size: 16px;
        padding-left: 15px;
    }
    
    .faq-answer {
        padding: 0 0 0 15px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* FAQ聯繫專員區塊樣式 */
.faq-contact-section {
    background-color: #FFF7E4;
    padding: 0px 0;
    margin: 80px -9999px 0 -9999px;
    padding-left: 9999px;
    padding-right: 9999px;
    overflow: visible;
    position: relative;
}

.faq-contact-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    max-width: 1600px;
    margin: 0 auto;
    min-height: 200px;
}

.faq-contact-image {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    position: relative;
    height: 250px;
    align-items: flex-end;
}

.contact-image {
    max-width: 100%;
    height: auto;
    max-height: 320px;
    transform: translateX(100px);
}

.faq-contact-content {
    flex: 1;
    padding-left: 10px;
}

.contact-heading {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
}

.contact-question {
    color: #000000;
    font-weight: 700;
    font-size: 20px;
}

.contact-action {
    color: #FF6A28;
    font-weight: 700;
    font-size: 20px;
}

.line-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #47C211;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.line-contact-btn:hover {
    background-color: #3da00f;
    color: #FFFFFF;
    text-decoration: none;
    transform: translateY(-2px);
}

.line-contact-btn i {
    font-size: 20px;
}

.contact-description p {
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* FAQ聯繫專員響應式設計 */
@media (max-width: 768px) {
    .faq-contact-section {
        padding: 15px 0;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .faq-contact-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        min-height: 150px;
    }
    
    .faq-contact-image {
        flex: none !important;
        height: 180px;
        display: flex !important;
        justify-content: center !important;
        align-items: flex-end !important;
        position: relative;
    }
    
    .faq-contact-image .contact-image {
        max-height: 220px;
        transform: translateX(0) !important;
        margin: 0 110px !important;
        position: relative;
        left: 0 !important;
    }
    
    .faq-contact-content {
        padding-left: 0;
    }
    
    .contact-heading {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .contact-question {
        font-size: 18px;
    }
    
    .contact-action {
        font-size: 18px;
    }
    
    .line-contact-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
    
    .contact-description p {
        font-size: 14px;
    }
}

/* 首頁區塊 */
.home-section {
    padding: 10px 0;
}

/* 首頁標題樣式 */
.home-main-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 5px;
    line-height: 1.2;
}

.home-main-title .home-title-chinese {
    color: #074173;
    font-weight: 700;
    font-size: 30px;
}

.home-main-title .home-title-number {
    color: #FE6A27;
    font-weight: 900;
    font-size: 1.2em;
    margin: 0 2px;
}

/* 首頁子標題 */
.home-subtitle {
    color: #000000;
    font-weight: 500;
    margin-top: 5px;
    font-size: 22px;
}

/* 首頁底部區域 */
.home-bottom-section {
    margin-top: 60px;
    text-align: center;
}

.home-description {
    font-size: 18px;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* 首頁按鈕容器 */
.home-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 首頁了解更多按鈕 */
.home-learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FF6A28;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.home-learn-more-btn:hover {
    background-color: #e55a1f;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 106, 40, 0.4);
}

.home-learn-more-btn i {
    color: #ffffff;
    font-size: 18px;
}

@media (max-width: 768px) {
    .home-section {
        padding: 0 0 60px 0;
    }
    
    .home-main-title {
        font-size: 1.8rem;
    }
    
    .home-main-title .home-title-number {
        font-size: 1.1em;
    }
    
    .home-description {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .home-learn-more-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}

.service-section {
    padding: 80px 0;
    position: relative;
    overflow: visible;
}

/* 服務標題區域 */
.service-title-area {
    text-align: center;
    margin-bottom: 20px;
}

/* 服務主標題 */
.service-main-title {
    font-size: 30px;
    font-weight: 700;
    color: #074173;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding: 0 50px;
}

/* 主標題兩側線條 */
.service-main-title::before,
.service-main-title::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 590px;
    height: 10px;
    background-color: #003C6E;
}

.service-main-title::before {
    right: 80%;
    margin-right: 50px;
}

.service-main-title::after {
    left: 80%;
    margin-left: 50px;
}

/* 服務副標題 */
.service-sub-title {
    color: #FEBF34;
    font-weight: 900;
    font-size: 24px;
    margin: 0;
    letter-spacing: 2px;
}

/* 服務說明文字 */
.service-description {
    text-align: center;
    margin-bottom: 12px;
}

.service-description p {
    font-size: 18px;
    color: #333333;
    line-height: 0.9;
    margin-bottom: 15px;
    max-width: 824px;
    margin-left: auto;
    margin-right: auto;
}

.service-description p:last-child {
    margin-bottom: 0;
}

/* 服務項目網格 */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

/* 服務項目卡片 */
.service-item {
    padding: 4px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

/* 服務圖片 */
.service-image {
    margin-bottom: 4px;
}

.service-image img {
    width: 200px;
    height: 220px;
    object-fit: contain;
    max-width: 100%;
    height: auto;
}

/* 服務標題 */
.service-title {
    font-size: 18px;
    font-weight: 600;
    color: #003C6E;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* 服務按鈕 */
.service-btn {
    display: inline-block;
    background-color: #003C6E;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.service-btn:hover {
    background-color: #002a4d;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 60, 110, 0.4);
}

@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .service-section {
        padding: 15px 0;
    }
    
    .service-main-title {
        font-size: 25px;
        padding: 0 18px;
    }
    
    .service-main-title::before,
    .service-main-title::after {
        width: 60px;
        height: 8px;
    }
    
    .service-main-title::before {
        margin-right: 40px;
    }
    
    .service-main-title::after {
        margin-left: 40px;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }
    
    .service-description p {
        font-size: 16px;
        padding: 0 15px;
        line-height: 1.2;
    }
    
    .service-item {
        padding: 20px 4px;
    }
    
    .service-image img {
        width: 180px;
        height: 180px;
    }
    
    .service-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .service-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}


/* 裝飾圖片容器 */
.service-decorations {
    position: relative;
    width: 100%;
    height: 0;
    pointer-events: none;
}

/* 左側裝飾 */
.decoration-left {
    position: absolute;
    left: -173px;
    bottom: -50px;
    z-index: -1;
}

.decoration-left img {
    width: auto;
    height: auto;
    max-width: 330px;
    display: block;
}

/* 右側裝飾 */
.decoration-right {
    position: absolute;
    right: -173px;
    bottom: -190px;
    z-index: -1;
}

.decoration-right img {
    width: auto;
    height: auto;
    max-width: 320px;
    display: block;
}

@media (max-width: 1400px) {
    .decoration-left {
        left: -100px;
    }
    
    .decoration-right {
        right: -100px;
    }
    
    .decoration-left img,
    .decoration-right img {
        max-width: 150px;
    }
}

@media (max-width: 992px) {
    .decoration-left {
        left: -80px;
        bottom: -30px;
    }
    
    .decoration-right {
        right: -80px;
        bottom: -30px;
    }
    
    .decoration-left img,
    .decoration-right img {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .decoration-left {
        left: -36px;
        bottom: -20px;
    }
    
    .decoration-right {
        right: -36px;
        bottom: -20px;
    }
    
    .decoration-left img,
    .decoration-right img {
        max-width: 130px;
    }
}


/* 現金區塊 */
.cash-section {
    padding: 0;
    margin: 0;
    overflow: visible;
    position: relative;
}

.cash-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: linear-gradient(to bottom, #FFFFFF, #FFF7E0);
    z-index: -2;
    pointer-events: none;
}

/* 現金容器 */
.cash-container {
    width: calc(100vw - (100vw - 1600px) / 2);
    margin-left: calc(-50vw + 50%);
    margin-right: 0;
    background-color: #FDBF36;
    background-image: 
        linear-gradient(0deg, rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 0px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0px;
    height: 375px;
    position: relative;
    overflow: visible;
    z-index: -2;
}

/* 左側圖片 */
.cash-image {
    flex: 0 0 auto;
    position: relative;
    top: -40px;
}

.cash-image img {
    width: auto;
    height: 414px;
    object-fit: contain;
}

/* 右側文字內容框 */
.cash-content {
    flex: 0 0 auto;
    width: 840px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 60px;
    z-index: 2;
}

/* 標題 */
.cash-title {
    color: #FE6C2C;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: left;
}

/* 粗體描述文字 */
.cash-description-bold {
    color: #000000;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 7px;
}

/* 一般描述文字 */
.cash-description {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 6px;
}

/* 按鈕容器 */
.cash-button-container {
    text-align: center;
}

/* LINE按鈕 */
.cash-line-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #47c211;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cash-line-btn:hover {
    background-color: #3da50d;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(71, 194, 17, 0.4);
}

.cash-line-btn i {
    color: #ffffff;
    font-size: 20px;
}

@media (max-width: 1200px) {
    .cash-container {
        gap: 40px;
    }
    
    .cash-image {
        top: -30px;
    }
    
    .cash-image img {
        height: 300px;
    }
    
    .cash-content {
        width: 500px;
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .cash-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 0;
        gap: 10px;
        margin-left: 0;
        margin-bottom: 0;
        width: 100%;
        border-radius: 20px;
        align-items: center;
        justify-content: flex-start;
        height: auto;
        min-height: 300px;
    }
    
    .cash-image {
        order: 1;
        top: -10px;
    }
    
    .cash-image img {
        height: 250px;
    }
    
    .cash-content {
        order: 2;
        width: calc(100% - 80px);
        max-width: 600px;
        margin: 0 40px;
        position: relative;
        top: 0;
    }
    
    .cash-title {
        text-align: center;
        font-size: 24px;
    }
    
    .cash-description-bold {
        font-size: 20px;
    }
    
    .cash-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .cash-section {
        margin-top: 30px;
    }
    
    
    .cash-container {
        padding: 20px 0;
        background-size: 15px 15px;
        height: auto;
        min-height: 320px;
        margin-bottom: 0;
        border-radius: 20px;
    }
    
    .cash-image {
        order: 2;
        top: 40px;
        margin-bottom: 15px;
    }
    
    .cash-image img {
        height: 260px;
    }
    
    .cash-content {
        order: 1;
        width: calc(100% - 40px);
        margin: 0 20px;
        padding: 25px;
        border-radius: 15px;
        position: relative;
        top: 0;
    }
    
    .cash-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .cash-description-bold {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .cash-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .cash-line-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .cash-section {
        margin-top: 30px;
    }
    
    
    .cash-container {
        padding: 15px 0;
        height: auto;
        min-height: 280px;
        margin-bottom: 0;
        border-radius: 15px;
    }
    
    .cash-image {
        order: 2;
        top: 30px;
        margin-bottom: 10px;
    }
    
    .cash-image img {
        height: 244px;
    }
    
    .cash-content {
        order: 1;
        width: calc(100% - 20px);
        margin: 0 10px;
        padding: 32px;
        position: relative;
        top: 0;
        border-radius: 12px;
    }
    
    .cash-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .cash-description-bold {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .cash-description {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .cash-line-btn {
        font-size: 15px;
        padding: 10px 20px;
    }
}


/* 申辦流程區塊 */
.home-process-section {
    position: relative;
    padding: 80px 0;
    margin: 0;
    overflow: visible;
}

.home-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #FFF7E0;
    z-index: 0;
    pointer-events: none;
}

.home-process-section .wide-container {
    position: relative;
    z-index: 1;
}

.home-process-title-area {
    text-align: center;
    margin-bottom: 14px;
}

/* 主標題 */
.home-process-main-title {
    color: #003C6E;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* 次標題 */
.home-process-sub-title {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* 次標題中的數字 */
.home-process-number {
    color: #FE6A27;
    font-weight: 900;
    font-size: 1.8em;
}

/* 描述文字 */
.home-process-description {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* 流程步驟容器 */
.home-process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 步驟項目 */
.home-step-item {
    flex: 0 0 auto;
    text-align: center;
    max-width: 300px;
}

/* 步驟圖片 */
.home-step-image {
    margin-bottom: 4x;
}

.home-step-image img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    max-width: 100%;
}

/* 步驟內容 */
.home-step-content {
    text-align: center;
}

/* 步驟標題 */
.home-step-title {
    color: #003C6E;
    font-size: 18x;
    font-weight: 700;
    margin-bottom: 8px;
}

/* 步驟說明 */
.home-step-description {
    color: #000000;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* 步驟箭頭 */
.home-step-arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-step-arrow img {
    width: 30px;
    height: auto;
    object-fit: contain;
}

/* 按鈕容器 */
.home-process-button-container {
    text-align: center;
}

/* 流程按鈕 */
.home-process-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FF6A28;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid #ffffff;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.home-process-btn:hover {
    background-color: #e55a1f;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 106, 40, 0.4);
}

.home-process-btn i {
    color: #ffffff;
    font-size: 18px;
}

@media (max-width: 1200px) {
    .home-process-steps {
        gap: 15px;
    }
    
    .home-step-image img {
        width: 250px;
        height: 250px;
    }
    
    .home-step-arrow img {
        width: 25px;
    }
}

@media (max-width: 992px) {
    .home-process-section {
        padding: 60px 0;
    }
    
    .home-process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        row-gap: 40px;
    }
    
    .home-step-item {
        flex: 0 0 calc(50% - 15px);
        max-width: 250px;
    }
    
    .home-step-arrow {
        display: none;
    }
    
    .home-step-image img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .home-process-section {
        padding: 50px 0;
    }
    
    .home-process-title-area {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .home-process-main-title {
        font-size: 20px;
    }
    
    .home-process-sub-title {
        font-size: 18px;
    }
    
    .home-process-description {
        font-size: 16px;
    }
    
    .home-process-steps {
        gap: 0px;
        row-gap: 30px;
    }
    
    .home-step-item {
        flex: 0 0 calc(50% - 10px);
        max-width: 200px;
    }
    
    .home-step-image img {
        width: 170px;
        height: 170px;
    }
    
    .home-step-title {
        font-size: 15px;
    }
    
    .home-step-description {
        font-size: 13px;
    }
    
    .home-process-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .home-process-steps {
        gap: 10px;
        row-gap: 25px;
    }
    
    .home-step-item {
        flex: 0 0 calc(50% - 5px);
        max-width: 160px;
    }
    
    .home-step-image img {
        width: 260px;
        height: 165px;
    }
    
    .home-step-title {
        font-size: 14px;
    }
    
    .home-step-description {
        font-size: 12px;
    }
    
    .home-process-btn {
        font-size: 15px;
        padding: 10px 20px;
    }
}


/* 資金服務區塊 */
.home-funding-section {
    position: relative;
    padding: 80px 0;
    margin: 0;
    overflow: visible;
}

.home-funding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-image: url('../images/bg_light.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.home-funding-section .wide-container {
    position: relative;
    z-index: 1;
}

/* 內容容器 */
.home-funding-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* 上方圖片 */
.home-funding-image {
    margin-bottom: 40px;
}

.home-funding-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* 文字內容 */
.home-funding-text {
    text-align: center;
}

.home-funding-text p {
    color: #000000;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.home-funding-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .home-funding-section {
        padding: 60px 0;
    }
    
    .home-funding-content {
        padding: 0 20px;
    }
    
    .home-funding-image {
        margin-bottom: 30px;
    }
    
    .home-funding-text p {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .home-funding-section {
        padding: 50px 0;
    }
    
    .home-funding-content {
        padding: 0 15px;
    }
    
    .home-funding-image {
        margin-bottom: 25px;
    }
    
    .home-funding-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}


/* 成功案例區塊 */
.home-cases-section {
    position: relative;
    padding: 80px 0;
    margin: 0;
    overflow: visible;
}

.home-cases-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #F6F6F6;
    z-index: 0;
    pointer-events: none;
}

.home-cases-section .wide-container {
    position: relative;
    z-index: 1;
}

/* 主容器 */
.home-cases-container {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

/* 左側文字區塊 (30%) */
.home-cases-left {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-cases-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

/* 圖片圖標 */
.home-cases-icon {
    flex: 0 0 auto;
}

.home-cases-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* 標題文字 */
.home-cases-titles {
    flex: 1;
}

/* 主標題 */
.home-cases-main-title {
    color: #074173;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

/* 副標題 */
.home-cases-sub-title {
    color: #FEBF34;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

/* 內容文字 */
.home-cases-content {
    margin-bottom: 40px;
}

.home-cases-content p {
    color: #333333;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.home-cases-content p:last-child {
    margin-bottom: 0;
}

/* 按鈕容器 */
.home-cases-button {
    text-align: left;
}

/* 成功案例按鈕 */
.home-cases-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FF6A28;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid #ffffff;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.home-cases-btn:hover {
    background-color: #e55a1f;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 106, 40, 0.4);
}

.home-cases-btn i {
    color: #ffffff;
    font-size: 18px;
}

/* 右側案例內容 (70%) */
.home-cases-right {
    flex: 0 0 70%;
}

/* 案例網格 */
.home-cases-grid {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.home-cases-grid .success-case-card {
    flex: 1;
}

@media (max-width: 1200px) {
    .home-cases-container {
        gap: 40px;
    }
    
    .home-cases-main-title {
        font-size: 26px;
    }
    
    .home-cases-sub-title {
        font-size: 20px;
    }
    
    .home-cases-grid {
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .home-cases-section {
        padding: 60px 0;
    }
    
    .home-cases-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .home-cases-left {
        flex: none;
        text-align: center;
    }
    
    .home-cases-header {
        justify-content: center;
    }
    
    .home-cases-button {
        text-align: center;
    }
    
    .home-cases-right {
        flex: none;
    }
    
    .home-cases-grid {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .home-cases-section {
        padding: 50px 0;
    }
    
    .home-cases-header {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .home-cases-icon img {
        width: 50px;
        height: 50px;
    }
    
    .home-cases-main-title {
        font-size: 22px;
    }
    
    .home-cases-sub-title {
        font-size: 18px;
    }
    
    .home-cases-content p {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .home-cases-content {
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .home-cases-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
    
    .home-cases-grid {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .home-cases-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .home-cases-content {
        padding: 0 15px;
    }
    
    .home-cases-content p {
        font-size: 15px;
    }
    
    .home-cases-btn {
        font-size: 15px;
        padding: 10px 20px;
    }
}

/* 聯絡諮詢區塊 */
.home-final-section {
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
    overflow: visible;
}

.home-final-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: linear-gradient(to bottom, #F6F6F6 60%, #FEF0BF 60%);
    z-index: -1;
}

/* 聯絡諮詢卡片 */
.home-final-card {
    margin-left: 0;
    margin-right: calc(-50vw + 50%);
    background: linear-gradient(to bottom right, #FFDE84, #EDB133);
    border-radius: 20px 0 0 0;
    padding: 25px 40px 0;
    display: flex;
    align-items: flex-end;
    gap: 0px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* 左側內容 */
.home-final-content {
    flex: 1;
    padding-left: 40px;
    padding-bottom: 40px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 右側圖片 */
.home-final-image {
    flex: 0 0 60%;
    text-align: left;
    margin-top: -80px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    align-self: flex-end;
    padding-left: 60px;
}

.home-final-image img {
    width: 100%;
    max-width: 620px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* 主標題 */
.home-final-title {
    color: #000000;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* 副標題 */
.home-final-subtitle {
    color: #003C6E;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* 描述文字 */
.home-final-description {
    margin-bottom: 18px;
}

.home-final-description p {
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.home-final-description p:last-child {
    margin-bottom: 0;
}

/* 按鈕容器 */
.home-final-buttons {
    display: flex;
    gap: 20px;
    margin-top: 8px;
    align-items: center;
    flex-wrap: wrap;
}

/* 按鈕通用樣式 */
.home-final-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #ffffff;
    color: #ffffff;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.home-final-btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

/* FAQ按鈕 */
.home-final-btn-faq {
    background-color: #FF6A28;
}

.home-final-btn-faq:hover {
    background-color: #e55a1f;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(255, 106, 40, 0.3);
}

/* LINE按鈕 */
.home-final-btn-line {
    background-color: #47C211;
}

.home-final-btn-line:hover {
    background-color: #3da90f;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(71, 194, 17, 0.3);
}

/* 按鈕圖標 */
.home-final-btn i {
    color: #ffffff;
    font-size: 16px;
}

@media (max-width: 1200px) {
    .home-final-card {
        padding: 50px 60px 0;
        gap: 10px;
    }
    
    .home-final-content {
        padding-left: 35px;
        padding-bottom: 70px;
    }
    
    .home-final-image {
        flex: 0 0 30%;
        margin-top: -60px;
        padding-left: 40px;
    }
    
    .home-final-image img {
        max-width: 280px;
    }
    
    .home-final-title {
        font-size: 20px;
    }
    
    .home-final-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .home-final-card {
        margin-left: 0;
        margin-right: calc(-50vw + 50%);
        padding: 20px 30px 0;
        gap: 0px;
        align-items: flex-end;
        border-radius: 20px 0 0 0;
    }
    
    .home-final-image {
        flex: 0 0 35%;
        margin-top: -40px;
        margin-bottom: 0;
        align-self: flex-end;
        padding-left: 30px;
        text-align: left;
    }
    
    .home-final-image img {
        max-width: 220px;
    }
    
    .home-final-title {
        font-size: 18px;
    }
    
    .home-final-content {
        padding-left: 30px;
        padding-bottom: 40px;
    }
    
    .home-final-buttons {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .home-final-btn {
        font-size: 15px;
        padding: 10px 16px;
    }
}

@media (max-width: 768px) {
    .home-final-card {
        margin-left: 0;
        margin-right: 0;
        flex-direction: column;
        text-align: center;
        padding: 15px 25px 0;
        border-radius: 20px 20px 0 0;
        align-items: center;
        gap: 0px;
    }
    
    .home-final-image {
        flex: none;
        margin-top: -5px;
        margin-bottom: 0px;
        align-self: center;
        padding-left: 0;
        text-align: center;
        order: 2;
    }
    
    .home-final-image img {
        max-width: 220px;
    }
    
    .home-final-content {
        padding-left: 0;
        padding-bottom: 25px;
        order: 1;
    }
    
    .home-final-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .home-final-subtitle {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .home-final-description {
        margin-bottom: 25px;
    }
    
    .home-final-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .home-final-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        font-size: 15px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .home-final-image img {
        max-width: 280px;
    }
    
    .home-final-title {
        font-size: 16px;
    }
    
    .home-final-subtitle {
        font-size: 15px;
    }
    
    .home-final-description p {
        font-size: 14px;
    }
    
    .home-final-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* 小額借款頁面樣式 */
.small-loan-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 50px;
}

.small-loan-image {
    flex: 0 0 30%;
    text-align: center;
}

.small-loan-image img {
    max-width: 100%;
    height: auto;
}

.small-loan-text {
    flex: 1;
    padding-left: 20px;
}

.small-loan-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.text-highlight-bold {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.text-medium {
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

@media (max-width: 768px) {
    .small-loan-content {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }
    
    .small-loan-image {
        flex: none;
        order: 1;
    }
    
    .small-loan-text {
        flex: none;
        padding-left: 0;
        order: 2;
    }
    
    .text-highlight-bold,
    .text-medium {
        font-size: 14px;
    }
}

/* 小額借款區塊二 - 圖標區域 */
.small-loan-icons-section {
    padding-top: 0px;
    padding-bottom: 80px;
    position: relative;
    margin-top: 60px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* 下方50%背景色 */
.small-loan-icons-section::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFF7E0;
    pointer-events: none;
    z-index: 1;
}

/* 白色直線條格紋背景裝飾 - 只在下方50%空間 */
.small-loan-icons-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.8) 1px, transparent 2px),
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 1px, transparent 2px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 2;
}

.small-loan-icons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.small-loan-icon-item {
    text-align: center;
}

.small-loan-icon-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .small-loan-icons-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .small-loan-icons-section {
        padding-top: 60px;
        padding-bottom: 60px;
        margin-top: 40px;
    }
    
    .small-loan-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .small-loan-icons-section::before {
        top: 0%;
    }
    
    .small-loan-icons-section::after {
        top: 0%;
        background-size: 15px 15px;
    }
}

@media (max-width: 480px) {
    .small-loan-icons-grid {
        gap: 15px;
    }
}

/* 小額借款頁面專用 - 申辦流程區塊 */
.small-loan-process-section {
    position: relative;
    padding: 80px 0;
    margin: 0;
    overflow: visible;
}

.small-loan-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #F6F6F6;
    z-index: 0;
    pointer-events: none;
}

.small-loan-process-section .wide-container {
    position: relative;
    z-index: 1;
}

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

@media (max-width: 480px) {
    .small-loan-process-section {
        padding: 50px 0;
    }
}

/* =================
   現況區塊樣式
   ================= */
.current-situation-section {
    padding: 10px 0;
    text-align: center;
}

.situation-title-area {
    margin-bottom: 15px;
}

.situation-main-title {
    font-size: 30px;
    font-weight: 700;
    color: #074173;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.situation-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FE6A27;
    margin-bottom: 0;
    letter-spacing: 1.9px;
}

.situation-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3px;
}

.situation-card {
    background: linear-gradient(-45deg, #F4F4F4, #FAFAFA, #F0F0F0, #F4F4F4);
    background-size: 400% 400%;
    border-radius: 15px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    flex-shrink: 0;
    position: relative;
    animation: gradientShift 2s ease-in-out infinite, 
               floatEffect 1.5s ease-in-out infinite alternate,
               pulseGlow 1s ease-in-out infinite alternate;
}

/* 为每个卡片添加不同的动画延时 */
.situation-card:nth-child(1) {
    animation-delay: 0s, 0s, 0s;
}

.situation-card:nth-child(2) {
    animation-delay: 0.1s, 0.15s, 0.2s;
}

.situation-card:nth-child(3) {
    animation-delay: 0.2s, 0.3s, 0.4s;
}

.situation-card:nth-child(4) {
    animation-delay: 0.3s, 0.45s, 0.6s;
}

.situation-card:nth-child(5) {
    animation-delay: 0.4s, 0.6s, 0.8s;
}

.situation-card:nth-child(6) {
    animation-delay: 0.5s, 0.75s, 1s;
}

/* 为每个卡片内的check图标添加不同的动画延时 */
.situation-card:nth-child(1) .situation-check {
    animation-delay: 0.05s;
}

.situation-card:nth-child(2) .situation-check {
    animation-delay: 0.15s;
}

.situation-card:nth-child(3) .situation-check {
    animation-delay: 0.25s;
}

.situation-card:nth-child(4) .situation-check {
    animation-delay: 0.35s;
}

.situation-card:nth-child(5) .situation-check {
    animation-delay: 0.45s;
}

.situation-card:nth-child(6) .situation-check {
    animation-delay: 0.55s;
}

.situation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.situation-check {
    color: #FE6A27;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    animation: checkBounce 1s ease-in-out infinite alternate;
}

.situation-text {
    color: #074173;
    font-size: 29px;
    font-weight: 600;
    letter-spacing: 0.3px;
    animation: textShimmer 1.5s ease-in-out infinite alternate;
}

/* 动画效果 */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatEffect {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-2px);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 0 0 0 rgba(253, 191, 54, 0);
    }
    100% {
        box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 0 0 3px rgba(253, 191, 54, 0.3);
    }
}

@keyframes textShimmer {
    0% {
        filter: brightness(1);
    }
    100% {
        filter: brightness(1.2);
    }
}

@keyframes checkBounce {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* 響應式設計 */
@media (max-width: 992px) and (min-width: 769px) {
    .situation-cards-grid {
        gap: 2px;
    }
    
    .situation-card {
        padding: 10px 15px;
    }
    
    .situation-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .situation-main-title {
        font-size: 2rem;
    }
    
    .situation-subtitle {
        font-size: 1.1rem;
    }
    
    .situation-cards-grid {
        gap: 8px;
    }
    
    .situation-card {
        padding: 10px 12px;
        flex: 0 0 calc(50% - 4px);
        max-width: calc(50% - 4px);
    }
    
    .situation-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-subtitle.home-subtitle,
    .home-subtitle {
        font-size: 19px;
    }
    
    .situation-main-title {
        font-size: 1.8rem;
    }
    
    .situation-subtitle {
        font-size: 1rem;
    }
    
    .situation-cards-grid {
        gap: 10px;
    }
    
    .situation-card {
        padding: 8px 10px;
        flex: 0 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
    }
    
    .situation-text {
        font-size: 1.2rem;
    }
    
    .situation-check {
        font-size: 1.2rem;
    }
    
    .current-situation-section {
        padding: 10px 0;
    }
    
    .situation-title-area {
        margin-bottom: 5px;
    }
}
