* {
    margin: 0;
    box-sizing: border-box;
    caret-color: transparent;
}
a,
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none !important;
}

h2, h3, .title {
    caret-color: transparent; /* 隱藏輸入游標 */
}

body {
    caret-color: transparent;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 導航列 */
.navbar {
    background: linear-gradient(135deg, #190748, #00a2fc);
    color: white;
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-title {
    text-decoration: none; /* 去掉底線 */
    color: white;        /* 使用父元素文字顏色 */
    background-color: transparent; /* 還原背景色 */
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-subtitle {
    font-size: 0.77rem;
    font-weight: bold;
    margin-top: 0.2rem;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: White;
    background-color: #C89544;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    transform: translateY(-2px);
    padding: 2px 5px;
}

/* Hero 區塊 */
.hero {
    background: linear-gradient(135deg, #00a2fc, #190748);
    color: white;
    padding: 230px 0 165px;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px #0000004d;
}

.hero-subtitle {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-description {
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
    line-height: 2;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #C89544;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn2.show {
    opacity: 1;
    pointer-events: auto;
}
.btn2{
    color: white;
}
.btn2.active {
    background-color: #C89544;
    padding: 2px 5px;
    color: white;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    }
.btn2:hover {
    transform: translateY(-5px);
    color: white; /* hover 時也不變色 */
    text-decoration: none; /* 確保不會出現底線 */
    opacity: 1; /* 不透明變化 */
}

.btn:hover {
    background-color: #9b5e19;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #00000033;
}

.btn-primary {
    background-color: #C89544;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #9b5e19;
}

.section {
    padding: 1rem 0;
}

.bg-light {
    background-color: #ecf0f1;
}

.section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    color: #190748;
}

.section p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 0.8rem;
    font-size: 1.2rem;
    color: #242626;
}

.lead {
    font-size: 2rem;
    line-height: 1.6;
    color: #242626;
    margin-bottom: 0.5rem;
}

.code-example {
    background: #190748;
    color: #ecf0f1;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px #0000001a;
}

.code-example h3 {
    margin-bottom: 1rem;
    color: #3498db;
}

pre {
    background: #34495e;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    line-height: 1.5;
}

code {
    color: #2ecc71;
}

.features-grid, .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card, .feature-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px #0000001a;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover, .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px #00000026;
}

.feature-grid .feature-item {
    background: #f8f9fa;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3, .feature-item h3 {
    margin-bottom: 1rem;
    color: #190748;
    font-size: 1.3rem;
}

.feature-card p, .feature-item p {
    color: #242626;
    text-align: center;
}

/* 卡片樣式 */
.info-card, .contact-card, .related-services {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px #0000001a;
    text-align: center;
}

.system-info {
    margin-top: 1rem;
    text-align: left;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: bold;
    color: #190748;
}

.info-value {
    color: #242626;
    font-family: monospace;
}

.company-info {
    margin-top: 1rem;
    text-align: center;
}

.company-info h3 {
    color: #190748;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.principle-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px #0000001a;
}

.principle-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.principle-item h4 {
    color: #190748;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.principle-item p {
    color: #242626;
    font-size: 0.95rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-category {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px #0000001a;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px #00000026;
}

.service-category.clickable {
    cursor: pointer;
    border: 2px solid transparent;
}

.service-category.clickable:hover {
    border-color: #3498db;
    transform: translateY(-8px);
}

.click-hint {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.8rem;
    color: #3498db;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-category.clickable:hover .click-hint {
    opacity: 1;
}

.service-category h3 {
    color: #190748;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.service-category ul {
    list-style: none;
    padding: 0;
}

.service-category li {
    padding: 0.5rem 0;
    color: #242626;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    padding-left: 1.5rem;
}

.service-category li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.service-category li:last-child {
    border-bottom: none;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-list-ups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-item-ups .service-image img {
  width: 170px;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 5px;
  max-width: 100%;
}

.service-text{
    display: grid;
    gap: 15px;
    padding-left: 30px;
    flex: 1;
}

.service-text H3{
    font-size: 20px;
    line-height: 1.6;
}

.service-text ul{
    font-size: 16px;
    line-height: 1.6;
}
.service-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.service-item-ups {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    flex: 1;
}

.service-item h3 {
    color: #190748;
    margin-bottom: 1rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 1px solid #ecf0f1;
}

.contact-item-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ecf0f1;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-icon {
    font-size: 2.0rem;
    margin-top: 0rem;
    margin-bottom: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon-info {
    font-size: 2.0rem;
    margin-top: 0rem;
    margin-bottom: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-item > div {
    flex: 1;
}

.contact-item h4 {
    color: #190748;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
}

.contact-item p {
    color: #242626;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #2980b9;
}

.contact-card h3, .related-services h3 {
    color: #190748;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #242626;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* 地圖容器 */
.map-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-container h4 {
    color: #190748;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer {
    background: #190748;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #3498db;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #2ecc71;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: #242626;
    font-style: italic;
}

/* 頁面樣式 */
.page-hero {
    background: linear-gradient(135deg, #3498db, #6136a1);
    color: white;
    padding: 200px 0 150px;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-icon {
    font-size: 3rem;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* 服務內容佈局 */
.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.content-main {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-categories {
    margin: 2rem 0;
}

.product-category {
    margin-bottom: 3rem;
    border: 1px solid #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
}

.category-header {
    background: #f8f9fa;
    padding: 1.5rem;
    border-bottom: 1px solid #ecf0f1;
}

.category-header h3 {
    color: #190748;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
}

.category-icon {
    font-size: 1.5rem;
}

.category-content {
    padding: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-item {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 1.5rem;
    transition: box-shadow 0.3s;
}

.product-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-item h4 {
    color: #190748;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.product-item ul {
    list-style: none;
    padding: 0;
}

.product-item li {
    padding: 0.3rem 0;
    color: #242626;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.product-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* UPS 產品列表樣式 */
.service-list-ups {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 1rem 0;
}

.service-item-ups {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 2rem;
    align-items: start;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.service-text h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-text li {
    padding: 0.5rem 0;
    color: #7f8c8d;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #e8e8e8;
}

.service-text li:last-child {
    border-bottom: none;
}

.service-text li:before {
    content: "▪";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.service-text a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.service-text a:hover {
    text-decoration: underline;
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 居中區塊 */
.center-block {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.center-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-align: left;
}

.center-block li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.center-block li:before {
    content: "📋";
    position: absolute;
    left: 0;
}

.center-block a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.center-block a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* 緊急資訊 */
.emergency-info {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.emergency-info p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
}

/* 流程步驟 */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: #190748;
    margin-bottom: 0.5rem;
}

.step p {
    color: #242626;
    font-size: 0.9rem;
}

.service-advantages {
    margin: 3rem 0;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.advantage-item h3 {
    color: #190748;
    margin-bottom: 0.5rem;
}

.advantage-item p {
    color: #242626;
    font-size: 0.9rem;
}

.related-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.related-links a {
    color: #3498db;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.related-links a:hover {
    background-color: #f8f9fa;
    color: #2980b9;
}

.contract-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.plan-card {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: #3498db;
}

.plan-card.featured {
    border-color: #3498db;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.2);
}

.plan-card.featured::before {
    content: "推薦";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-header h3 {
    color: #190748;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.plan-price {
    color: #3498db;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.plan-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
    color: #242626;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.plan-features li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem 20px;
    }

    .nav-title {
        font-size: 1.3rem;
    }

    .nav-subtitle {
        font-size: 0.65rem;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }

    .nav-links a {
        font-size: 0.9rem;
    }


    .hero {
        padding: 200px 20px 60px;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        padding: 0 10px;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 15px;
        margin-bottom: 1.5rem;
    }

    /* 修正頁面Hero區塊 */
    .page-hero {
        width: 100%;
        padding: 180px 15px 150px;
    }

    .page-hero .container {
        padding: 0 15px;
    }

    .breadcrumb {
        text-align: center;
        width: 100%;
        font-size: 0.85rem;
    }

    .page-title {
        font-size: 1.8rem;
        text-align: center;
        width: 100%;
        padding: 0;
        margin: 1rem 0;
    }

    .page-subtitle {
        font-size: 1rem;
        text-align: center;
        width: 100%;
    }

    /* 修正Section區塊 */
    .section {
        width: 100%;
        padding: 30px 0;
    }

    .section .container {
        width: 100%;
        padding: 0 15px;
    }

    /* 修正服務內容布局 */
    .service-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    /* 修正主內容區 */
    .content-main {
        width: 100%;
        padding: 1.5rem;
        margin: 0;
        box-sizing: border-box;
    }

    .content-main h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .content-main .lead {
        font-size: 1rem;
        text-align: center;
        line-height: 1.6;
        padding: 0;
    }

    /* 修正中心區塊 */
    .center-block {
        width: 100%;
        padding: 1.5rem;
        margin: 1.5rem 0;
        box-sizing: border-box;
    }

    .center-block ul {
        display: block;
        text-align: left;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .center-block li {
        padding: 0.5rem 0 0.5rem 1.5rem;
        width: 100%;
    }

    /* 修正產品分類 */
    .product-categories {
        width: 100%;
        margin: 1.5rem 0;
    }

    .product-category {
        width: 100%;
        margin-bottom: 2rem;
    }

    .category-header {
        width: 100%;
        padding: 1rem;
    }

    .category-header h3 {
        font-size: 1.2rem;
        text-align: left;
    }

    .category-content {
        width: 100%;
        padding: 1rem;
    }

    /* 修正UPS產品列表 - 重點修正 */
    .service-list-ups {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin: 0;
        padding: 0;
    }

    .service-item-ups {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        margin: 0;
        box-sizing: border-box;
    }

    /* 修正產品文字區塊 */
    .service-text {
        width: 100%;
        padding: 0;
        text-align: left;
        order: 1;
    }

    .service-text h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: left;
    }

    .service-text ul {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .service-text li {
        font-size: 0.9rem;
        padding: 0.5rem 0 0.5rem 1.5rem;
        text-align: left;
    }

    /* 修正產品圖片 */
    .service-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        order: 2;
    }

    .service-image img {
        max-width: 200px;
        width: auto;
        height: auto;
    }

    /* 修正優勢網格 */
    .advantage-grid {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }

    .advantage-item {
        width: 100%;
        padding: 1.5rem;
        text-align: center;
        box-sizing: border-box;
    }

    .advantage-icon {
        font-size: 2.5rem;
        margin: 0 auto 1rem;
        display: block;
    }

    .advantage-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .advantage-item p {
        font-size: 0.9rem;
        text-align: center;
        line-height: 1.6;
    }

    /* 修正服務優勢區塊 */
    .service-advantages {
        width: 100%;
        margin: 2rem 0;
    }

    .service-advantages h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    /* 修正側邊欄 */
    .content-sidebar {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
    }

    /* 修正聯絡卡片 */
    .contact-card,
    .related-services {
        width: 100%;
        padding: 1.5rem;
        margin: 0;
        box-sizing: border-box;
    }

    .contact-card h3,
    .related-services h3 {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .contact-card p {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    /* 修正聯絡資訊 */
    .contact-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 1rem 0;
    }

    .contact-item-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid #ecf0f1;
    }

    .contact-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    /* 修正相關連結 */
    .related-links {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .related-links a {
        width: 100%;
        padding: 0.75rem;
        text-align: center;
        display: block;
    }

    /* 修正按鈕 */
    .btn,
    .btn-primary {
        width: 100%;
        max-width: 150px;
        margin: 1rem auto;
        display: block;
        text-align: center;
        padding: 12px 16px;
        box-sizing: border-box;
    }

    /* 修正緊急資訊 */
    .emergency-info {
        width: 100%;
        padding: 1rem;
        margin: 1rem 0;
    }

    .emergency-info p {
        font-size: 0.9rem;
        text-align: center;
        margin: 0;
    }

    /* 確保巢狀的 content-sidebar 不重複 */
    .content-sidebar .content-sidebar {
        padding: 0;
        gap: 1rem;
    }

    .content-sidebar .content-sidebar .contact-card {
        margin-top: 0;
    }
}

/* 超小螢幕額外調整 */
@media (max-width: 480px) {
    .page-title {
        font-size: 1.5rem;
    }

    .content-main h2,
    .service-advantages h2 {
        font-size: 1.5rem;
    }

    .service-text h3 {
        font-size: 1rem;
    }

    .service-image img {
        max-width: 160px;
    }

    .advantage-item {
        padding: 1rem;
    }
}