/**
 * 台中和潤優質當舖 - 主要樣式
 */

/* 通用樣式 */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

.section {
    padding: 30px 0;
}

.section-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.section-title h2 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    display: none;
}

.section-title p {
    color: #000;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* 首頁服務項目 */
.services {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(#efefef 1px, transparent 1px);
    background-size: 30px 30px;
    background-attachment: fixed;
}

.services::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 400px;
    background-image: url('../images/left_coins.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

.services::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 400px;
    background-image: url('../images/right_coins.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.service-item {
    border: 3px solid #ffc168;
    border-radius: 12px;
    overflow: visible;
    display: flex;
    flex-direction: row;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
    position: relative;
    height: 140px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 42%;
    height: 100%;
    background-color: #fff0db;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    overflow: visible;
    border-radius: 9px 0 0 9px;
    padding: 0;
}

.service-image img {
    max-width: 100%;
    max-height: 150%;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    right: 0;
    transform-origin: bottom right;
    transform: translate(0, 0) scale(1.3);
}

.service-content {
    width: 55%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    z-index: 2;
    background-color: #fff;
    border-radius: 0 9px 9px 0;
}

.service-title {
    margin-bottom: 3px;
}

.service-title h3 {
    color: #333;
    font-size: 20px;
    font-weight: bold;
}

.service-desc {
    color: #d19238;
    line-height: 1.3;
    margin-bottom: 3px;
    font-size: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #ffb743;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
    margin-top: 8px;
    justify-content: flex-end;
}

.service-link i {
    transition: transform 0.3s;
    font-size: 28px;
}

.service-link:hover {
    color: #e09415;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* 服務特色區塊 */
.service-features {
    background-color: #fff;
    padding: 30px 0;
    position: relative;
    background-image: radial-gradient(#efefef 1px, transparent 1px);
    background-size: 30px 30px;
    background-attachment: fixed;
}

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

.service-features-header h2 {
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 0 5px;
    font-size: 1.8rem;
    color: #000;
}

.service-features-header h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background-color: #fff9e6;
    z-index: -1;
}

.service-features-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}

.service-features-images {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.service-feature-img {
    width: calc(33.33% - 10px);
    border-radius: 10px;
    overflow: hidden;
}

.service-feature-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.service-feature-img:hover img {
    transform: scale(1.05);
}

.service-features-content {
    flex: 1;
}

.service-features-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.4;
}

.service-features-text {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 700;
}

.service-features-button {
    display: inline-flex;
    align-items: center;
    padding: 5px 25px;
    border: 1px solid #F8B500;
    border-radius: 30px;
    color: #F8B500;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    background-color: #fff;
}

.service-features-button i {
    margin-left: 10px;
    color: #ffb743;
    transition: transform 0.3s;
}

.service-features-button:hover {
    background-color: #F8B500;
    color: #fff;
}

.service-features-button:hover i {
    transform: translateX(5px);
    color: #fff;
}

/* 借款流程區塊 */
.loan-process {
    background-color: #ffdc7f;
    position: relative;
    overflow: visible;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center;
    background-attachment: scroll;
    padding: 10px 0;
}

.loan-process.section {
    padding: 10px 0;
}

.loan-process-container {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}

.loan-process-image {
    flex: 0 0 40%;
    position: relative;
    margin-left: -30px;
    margin-top: -20px;
    margin-bottom: -20px;
    z-index: 3;
}

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

.loan-process-mobile-image {
    display: none;
    width: 80%;
    margin: 15px auto;
}

.loan-process-mobile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.loan-process-content {
    flex: 1;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loan-process-content .company-info-btn {
    margin-top: 10px;
}

.loan-process-title {
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.loan-process-title img {
    width: 60px;
    height: auto;
    margin-top: 15px;
}

.loan-process-title h2 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 900;
    line-height: 1.4;
}

.loan-process-title h2 .highlight {
    color: #ff4b4b;
    font-size: 2rem;
}

.loan-process-title p {
    font-size: 1.1rem;
    color: #333;
    font-weight: 900;
}

.loan-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.loan-step {
    border: 3px solid #ffb743;
    border-radius: 10px;
    padding: 12px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    justify-content: center;
    max-width: 180px;
}

.loan-step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
}

.loan-step-icon img {
    width: 100%;
    height: auto;
}

.loan-step-title {
    color: #ff4b4b;
    font-weight: 500;
    margin-bottom: 3px;
    font-size: 1.4rem;
}

.loan-step-desc {
    color: #d19238;
    font-size: 1rem;
    margin: 0;
}

.loan-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background-color: #F8B500;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.loan-cta i {
    margin-left: 8px;
}

.loan-cta:hover {
    background-color: #e6a800;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.company-info-btn {
    display: inline-flex;
    align-items: center;
    padding: 5px 25px;
    border: 1px solid #F8B500;
    border-radius: 30px;
    color: #F8B500;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    background-color: #fff;
}

.company-info-btn i {
    margin-left: 10px;
    color: #ffb743;
    transition: transform 0.3s;
}

.company-info-btn:hover i {
    transform: translateX(5px);
    color: #fff;
}

.company-info-btn:hover {
    background-color: #F8B500;
    color: #fff;
}

/* 成功案例區塊 */
.success-cases {
    background-color: #ffffff;
    position: relative;
}

.success-cases-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.success-content {
    flex: 1;
}

.success-content h2 {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.4;
}

.success-content p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 700;
}

.process-btn {
    display: inline-flex;
    align-items: center;
    padding: 5px 25px;
    border: 1px solid #F8B500;
    border-radius: 30px;
    color: #F8B500;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    background-color: #fff;
}

.process-btn i {
    margin-left: 10px;
    color: #ffb743;
    transition: transform 0.3s;
}

.process-btn:hover {
    background-color: #F8B500;
    color: #fff;
}

.process-btn:hover i {
    transform: translateX(5px);
    color: #fff;
}

.success-case-featured {
    flex: 1;
    padding: 0;
    border: 8px solid #fff5d7;
    border-radius: 36px;
}

.case-featured-inner {
    padding: 15px;
    border: 1px solid #ffb743;
    border-radius: 30px;
    background: linear-gradient(to bottom, #fffcef, #ffffff);
}

.case-featured-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    justify-content: center;
    padding-top: 1px;
}

.case-featured-header img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    margin-top: -3px;
}

.case-featured-header h3 {
    font-size: 1.4rem;
    color: #000;
    font-weight: 900;
    margin-top: -3px;
}

.case-featured-header h3 .highlight {
    color: #ff4b4b;
    font-size: 1.5rem;
    font-weight: 700;
}

.case-featured-divider {
    height: 1px;
    background-color: #ffb743;
    margin-bottom: 5px;
}

.case-featured-content {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 5px;
    font-weight: 700;
}

.case-featured-name {
    color: #d19238;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

/* 聯絡我們區塊 */
.contact-us {
    background-color: #fff;
    position: relative;
    background-image: radial-gradient(#efefef 1px, transparent 1px);
    background-size: 30px 30px;
    background-attachment: fixed;
}

/* 首頁的聯絡我們區塊 - 白底 */
body:not(.inner-page) .contact-us {
    background-color: #fff;
    background-image: none;
}

.contact-container {
    display: flex;
    gap: 15px;
    border: 5px solid #ffe177;
    border-radius: 15px;
    padding: 15px;
    position: relative;
    overflow: visible;
    max-width: 1400px;
    margin: 0 auto;
    height: 240px;
    background-color: rgba(255, 255, 255, 0.85);
    background-image: 
        linear-gradient(45deg, transparent 49.5%, rgba(255, 225, 119, 0.3) 49.5%, rgba(255, 225, 119, 0.3) 50.5%, transparent 50.5%),
        linear-gradient(135deg, transparent 49.5%, rgba(255, 225, 119, 0.3) 49.5%, rgba(255, 225, 119, 0.3) 50.5%, transparent 50.5%);
    background-size: 60px 60px;
    background-position: center;
}

.contact-content {
    flex: 70;
    padding: 15px 10px 10px 40px;
}

.contact-content h2 {
    font-size: 1.6rem;
    color: #ec9e30;
    margin-bottom: 15px;
    font-weight: 900;
    line-height: 1.3;
}

.contact-content p {
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-image {
    flex: 50;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    overflow: visible;
}

.contact-image img {
    max-width: 80%;
    height: auto;
    position: absolute;
    bottom: -15px;
    right: 10px;
}

/* 關於我們頁面 - 公司介紹區塊 */
.about-intro {
    padding: 40px 0 20px 0;
    background-image: radial-gradient(#efefef 1px, transparent 1px);
    background-size: 30px 30px;
    background-attachment: fixed;
}

.about-intro-container {
    display: flex;
    align-items: center;
}

.about-intro-content {
    flex: 60;
}

.about-intro-content p {
    margin-bottom: 10px;
    line-height: 1.6;
    font-weight: 700;
    color: #333;
}

.about-intro-content p.highlight {
    color: #d19238;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.about-intro-image {
    flex: 40;
    text-align: center;
    align-self: flex-start;
    margin-top: -20px;
}

.about-intro-image img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
}

/* 關於我們頁面 - 公司特色區塊 */
.about-features {
    padding: 30px 0 60px 0;
    background-image: radial-gradient(#efefef 1px, transparent 1px);
    background-size: 30px 30px;
    background-attachment: fixed;
}

.about-features-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-features-images {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
}

.feature-image {
    text-align: center;
    flex: 0 0 calc(33.33% - 14px);
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-image img:hover {
    transform: scale(1.05);
}

.about-features-content {
    flex: 1;
}

.about-features-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 700;
    color: #333;
}

/* 借款流程頁面 */
.loan-process-page {
    background-image: radial-gradient(#efefef 1px, transparent 1px);
    background-size: 30px 30px;
    background-attachment: fixed;
    padding: 40px 0;
}

.loan-process-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 1rem;
    color: #333;
    font-weight: 900;
    margin-top: 10px;
}

.section-subtitle .highlight {
    color: #ff4b4b;
    font-size: 1.6rem;
    font-weight: 700;
}

.loan-process-steps, .loan-process-summary {
    background-color: #fff9e6;
    padding: 30px;
    position: relative;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 20px 20px;
}

.loan-process-steps {
    margin-bottom: 0;
    border-radius: 15px 15px 0 0;
}

.loan-process-summary {
    display: flex;
    gap: 40px;
    align-items: center;
    box-shadow: none;
    border-radius: 0 0 15px 15px;
    padding: 30px 30px 0 30px;
}

.process-step-card {
    display: flex;
    background-color: #fff;
    border: 5px solid #ffdc7b;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.process-step-card:last-child {
    margin-bottom: 0;
}

.process-step-content {
    flex: 70;
    padding: 20px;
}

.process-step-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.process-step-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.process-step-titles {
    flex: 1;
    margin-top: 10px;
}

.process-step-title {
    font-size: 1.2rem;
    color: #ff4b4b;
    margin-bottom: 5px;
    font-weight: 500;
}

.process-step-subtitle {
    font-size: 0.9rem;
    color: #f8b500;
    font-weight: 900;
    margin-top: 0;
}

.process-step-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    font-weight: 900;
}

.process-step-image {
    flex: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

.process-step-image img {
    max-width: 100%;
    height: auto;
}

.loan-process-summary-image {
    flex: 1;
    text-align: center;
}

.loan-process-summary-image img {
    max-width: 85%;
    height: auto;
    border-radius: 10px;
    margin-bottom: -4px;
}

.loan-process-summary-content {
    flex: 1;
}

.loan-process-summary-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.loan-process-summary-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    font-weight: 500;
}

/* 成功案例頁面 */
.success-cases-page {
    background-image: radial-gradient(#efefef 1px, transparent 1px);
    background-size: 30px 30px;
    background-attachment: fixed;
    padding: 40px 0;
}

.success-cases-page-header {
    text-align: center;
    margin-bottom: 5px;
}

.success-cases-subtitle-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-subtitle {
    color: #4a4a4a;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 5px;
}

.cases-count {
    text-align: right;
    color: #ff4b4b;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 auto 10px;
    max-width: 100%;
    padding: 0;
}

.cases-count span {
    font-size: 1.2rem;
    margin: 0 2px;
}

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

.success-case-card {
    border: 8px solid #fff5d7;
    border-radius: 36px;
}

/* 聯繫我們頁面 */
.contact-page {
    background-image: radial-gradient(#efefef 1px, transparent 1px);
    background-size: 30px 30px;
    background-attachment: fixed;
    padding: 40px 0;
}

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

.contact-subtitle-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 1. 聯絡名片按鈕區塊 */
.contact-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    flex: 1;
    border: 2px solid #ffe88c;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-card a {
    text-decoration: none;
    color: #000;
    display: block;
}

.contact-card-inner {
    border: 5px solid #fff;
    background-color: #fffcf1;
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-card-image {
    margin-bottom: 10px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-image img {
    max-width: 60px;
    max-height: 60px;
}

.contact-card-content {
    width: 100%;
}

.contact-card-content p {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon {
    color: #ff5748;
    font-weight: 900;
    margin: 0 5px;
}

.contact-info {
    font-size: 0.85rem;
    display: inline;
}

/* 2. 嵌入地圖區塊 */
.contact-map-container {
    border: 5px solid #ffe88c;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
}

/* 3. 文字區塊 */
.contact-text-block {
    max-width: 1000px;
    margin: 0 auto 0px;
    text-align: center;
    padding: 0 15px;
}

.contact-main-text {
    color: #000;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.8;
}

.contact-sub-text {
    color: #d19238;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
}

/* 借款專案頁面 - 共用樣式 */
.loan-intro {
    background-image: radial-gradient(#efefef 1px, transparent 1px);
    background-size: 30px 30px;
    background-attachment: fixed;
    padding: 40px 0;
}

.loan-intro-container {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.loan-intro-image {
    flex: 30;
}

.loan-intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.loan-intro-content {
    flex: 70;
}

.loan-intro-content h2 {
    font-size: 1.3rem;
    color: #d19238;
    margin-bottom: 10px;
    font-weight: 900;
    line-height: 1.4;
}

.loan-intro-content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: 700;
}

/* 借款資訊區塊 */
.loan-info-header {
    margin-bottom: 15px;
}

.loan-info-header-inner {
    background-color: #fff4c8;
    padding: 8px;
    border-radius: 10px;
    text-align: center;
}

.loan-info-header-inner h3 {
    margin: 0;
    color: #333;
    font-weight: 700;
}

.loan-info-container {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.loan-info-block {
    flex: 1;
    border-radius: 10px;
    padding: 15px;
}

.loan-info-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.loan-info-title img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.loan-info-title h3 {
    font-size: 1.2rem;
    color: #000;
    margin: 0;
    font-weight: 700;
}

.loan-info-content p {
    margin-bottom: 10px;
    line-height: 1;
    font-weight: 500;
}

.info-label {
    color: #ff5748;
    font-weight: 700;
    margin-right: 5px;
}

/* 更多專案區塊 */
.more-services {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(#efefef 1px, transparent 1px);
    background-size: 30px 30px;
    background-attachment: fixed;
}

/* 借款資訊垂直排列樣式 */
.loan-info-vertical .info-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.loan-info-vertical .info-label {
    display: inline-block;
    color: #ff5748;
    font-weight: 700;
    margin-right: 0;
    width: auto;
    vertical-align: top;
    flex-shrink: 0;
}

.loan-info-vertical .info-text {
    margin: 0;
    padding-left: 0;
    line-height: 1.2;
    display: inline-block;
    flex: 1;
}

.loan-info-vertical .info-text p {
    margin: 0 0 10px 0;
}

.loan-info-vertical .info-text p:last-child {
    margin-bottom: 0;
}

.loan-info-block {
    border-radius: 10px;
    padding: 15px;
}

.loan-info-header {
    margin-bottom: 15px;
}

/* 應備文件樣式 */
.doc-groups-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0px;
}

.doc-group {
    margin-bottom: 15px;
    padding: 0 0px;
    width: 33.33%;
    box-sizing: border-box;
    border-bottom: none;
}

.doc-title {
    color: #ff5748;
    font-weight: 700;
    margin: 0 0 8px 0;
    font-size: 1rem;
    display: block;
}

.doc-list {
    list-style-type: decimal;
    padding-left: 20px;
    margin: 0;
}

.doc-list li {
    margin-bottom: 5px;
    line-height: 1.5;
    padding-left: 0px;
    font-weight: 700;
}

.doc-list li::before {
    display: none;
}

/* 響應式設計 */
@media (max-width: 992px) {
    .section {
        padding: 25px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .contact-container {
        flex-direction: column;
        padding: 20px;
        height: auto;
        overflow: hidden;
    }
    
    .contact-content, .contact-image {
        width: 100%;
    }
    
    .contact-image {
        justify-content: center;
        height: 180px;
        position: relative;
    }
    
    .contact-image img {
        bottom: -15px;
        right: -15px;
        max-width: 70%;
        position: relative;
    }
    
    .services::before,
    .services::after {
        display: none;
    }
    
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 25px;
        gap: 30px;
    }
    
    .service-features-container {
        flex-direction: column;
    }
    
    .service-features-images,
    .service-features-content {
        width: 100%;
    }
    
    .service-feature-img {
        width: calc(33.33% - 10px);
    }
    
    .loan-process-container {
        flex-direction: column;
    }
    
    .loan-process-image {
        margin-left: 0;
        margin-top: -30px;
        flex: 0 0 auto;
        width: 80%;
    }
    
    .loan-process-content {
        padding-right: 0;
    }
    
    .loan-process-title {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .loan-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .success-cases-container {
        flex-direction: column;
    }
    
    .success-content, .success-case-featured {
        width: 100%;
    }
    
    .about-intro-container,
    .about-features-container {
        flex-direction: column;
    }
    
    .about-intro-content,
    .about-intro-image,
    .about-features-images,
    .about-features-content {
        width: 100%;
    }
    
    .about-features-images {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .feature-image {
        flex: 0 0 30%;
    }
    
    .process-step-card {
        flex-direction: column-reverse;
    }
    
    .process-step-content,
    .process-step-image {
        flex: auto;
        width: 100%;
    }
    
    .process-step-image {
        padding: 0;
        background-color: transparent;
    }
    
    .process-step-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px 10px 0 0;
    }
    
    .loan-process-summary {
        flex-direction: column;
    }
    
    .loan-process-summary-image,
    .loan-process-summary-content {
        width: 100%;
    }
    
    .success-cases-grid {
        gap: 20px;
    }
    
    .contact-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-card {
        width: 100%;
    }
    
    .loan-intro-container {
        flex-direction: column;
    }
    
    .loan-intro-image, .loan-intro-content {
        width: 100%;
    }
    
    .loan-info-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .doc-group {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 20px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .service-image img {
        transform: translate(0, 0) scale(1.2);
    }
    
    .loan-step {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
    }
    
    .service-features-title {
        font-size: 1.6rem;
    }
    
    .service-feature-img {
        width: calc(50% - 10px);
    }
    
    .service-features-header h2::after {
        display: none;
    }
    
    .loan-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .loan-step {
        max-width: none;
        margin: 0;
        padding: 20px;
    }
    
    .loan-step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 5px;
    }
    
    .loan-step-title {
        font-size: 1.3rem;
    }
    
    .loan-step-desc {
        font-size: 1.0rem;
    }
    
    .loan-process-image {
        display: none;
    }
    
    .loan-process-mobile-image {
        display: block;
    }
    
    .loan-process-mobile-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .loan-process-title {
        width: 100%;
        padding: 0 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        margin-bottom: 2px;
    }
    
    .loan-process-title img {
        width: 50px;
        margin-top: 0;
    }
    
    .loan-process-title h2 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .loan-process-title h2 .highlight {
        font-size: 1.8rem;
    }
    
    .loan-process-title p {
        font-size: 1rem;
    }
    
    .loan-process-mobile-image {
        width: 90%;
        padding: 0 10px;
        margin: 2px auto;
    }
    
    .loan-process-content {
        width: 100%;
        padding: 0 10px;
    }
    
    .loan-process-content .company-info-btn {
        margin-top: -10px;
    }
    
    .success-content h2 {
        font-size: 1.5rem;
    }
    
    .case-featured-header h3 {
        font-size: 1.1rem;
    }
    
    .case-featured-header h3 .highlight {
        font-size: 1.3rem;
    }
    
    .contact-container {
        padding: 15px;
        height: auto;
    }
    
    .contact-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-image {
        height: 150px;
    }
    
    .contact-image img {
        bottom: -10px;
        right: -10px;
        max-width: 60%;
    }
    
    .about-intro,
    .about-features {
        padding: 40px 0;
    }
    
    .feature-image {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .about-intro-container {
        flex-direction: column;
    }
    
    .about-intro-content {
        order: 2;
        width: 100%;
    }
    
    .about-intro-image {
        order: 1;
        width: 100%;
        margin: 0 0 10px 0;
        text-align: center;
        align-self: center;
    }
    
    .about-intro-image img {
        max-width: 85%;
    }
    
    .loan-process-page-header {
        margin-bottom: 20px;
    }
    
    .loan-process-steps {
        padding: 15px;
    }
    
    .process-step-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .process-step-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .process-step-titles {
        text-align: center;
    }
    
    .process-step-desc {
        text-align: center;
    }
    
    .loan-process-summary {
        padding: 20px;
    }
    
    .loan-process-summary-content h3 {
        font-size: 1.3rem;
    }
    
    .success-cases-page-header {
        margin-bottom: 30px;
    }
    
    .success-cases-subtitle-container {
        padding: 0 10px;
    }
    
    .cases-count {
        position: static;
        text-align: right;
        margin-top: 10px;
    }
    
    .success-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-page-header {
        margin-bottom: 30px;
    }
    
    .contact-card-inner {
        padding: 15px;
    }
    
    .contact-card-image {
        height: 60px;
        margin-bottom: 10px;
    }
    
    .contact-card-image img {
        max-width: 60px;
        max-height: 60px;
    }
    
    .contact-main-text {
        font-size: 16px;
    }
    
    .contact-sub-text {
        font-size: 17px;
    }
    
    .loan-intro-content h2 {
        font-size: 1.4rem;
    }
    
    .loan-info-header-inner {
        padding: 10px;
    }
    
    .loan-info-title {
        flex-direction: column;
        text-align: center;
    }
    
    .loan-info-title img {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .loan-info-vertical .info-label {
        font-size: 0.95rem;
    }
    
    .loan-info-vertical .info-text {
        font-size: 0.9rem;
    }
    
    .doc-title {
        font-size: 0.95rem;
    }
    
    .doc-list li {
        font-size: 0.9rem;
    }
    
    .doc-group {
        width: 100%;
    }
    
    .loan-process-title {
        margin-bottom: 20px;
    }
} 