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

/* 标题样式 */
.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 40px;
        /* 增大字体 */
    }
}

/* Hero 区域 */
.hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/about-bg.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    width: 100%;
    color: white;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards;
}

.hero-content p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.4s forwards;
}



/* 哲学和使命部分 */
.philosophy-section,
.mission-section,
.message-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.philosophy-content,
.mission-content,
.message-content {
    position: relative;
    z-index: 2;
}

.background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 160px;
    /* 增大字体 */
    font-weight: 900;
    color: rgba(67, 97, 238, 0.05);
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

.content-wrapper p,
.message-text {
    font-size: 18px;
    /* 增大字体 */
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.message-text p {
    margin-bottom: 24px;
}

.message-text p:last-child {
    font-weight: 700;
    font-style: italic;
    margin-top: 32px;
    font-size: 18px;
    /* 增大字体 */
}





/* 



.profile-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.profile-content .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: var(--dark-color);
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.profile-content .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.profile-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@media (min-width: 768px) {
    .profile-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

.detail-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-left-color: var(--accent-color);
}

.label {
    font-weight: 600;
    min-width: 140px;
    color: var(--dark-color);
    font-size: 16px;
    position: relative;
}

.label::after {
    content: ':';
    margin-left: 5px;
    color: var(--primary-color);
}

.value {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    flex: 1;
}

.business-activities {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.business-activities h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.business-activities h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.activity-item {
    background: white;
    margin-bottom: 25px;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.activity-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-left-color: var(--primary-color);
}

.activity-item h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: center;
}

.activity-item h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.activity-item p {
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.employees-info {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.employees-info h3 {
    margin-bottom: 30px;
    font-size: 28px;
    text-align: center;
    color: var(--dark-color);
    position: relative;
}

.employees-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.employee-counts {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.count-item {
    flex: 1;
    min-width: 180px;
    max-width: 250px;
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.count-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.count-item:hover::before {
    left: 100%;
}

.count-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.count {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    animation: countUp 1.5s ease-out 0.8s both;
}

.count-item .label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    min-width: auto;
    display: block;
}

.count-item .label::after {
    display: none;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


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

    .profile-content .section-title {
        font-size: 28px;
    }

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .label {
        min-width: auto;
    }

    .activity-item h4 {
        font-size: 20px;
    }

    .count {
        font-size: 36px;
    }

    .employee-counts {
        flex-direction: column;
        align-items: center;
    }

    .count-item {
        min-width: 200px;
    }
} */







/* 全球网络部分 */
.global-network-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.world-map {
    height: 500px;
    background: url('/assets/images/network_map.png') center/cover no-repeat;
    margin: 40px 0;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.world-map.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* 地圖標記點樣式 */
.world-map {
    position: relative;
}

.map-marker {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

/* 標記點圓點樣式 */
.marker-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    /* border: 1px solid white; */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* 不同類型標記點的顏色 */
.marker-dot.showroom {
    background-color: #dc3545;
    /* 紅色 - Showroom */
}

.marker-dot.office {
    background-color: #212529;
    /* 黑色 - Office */
}

.marker-dot.factory {
    background-color: #fd7e14;
    /* 橙色 - Factory */
}

/* 懸停效果 */
.map-marker:hover .marker-dot {
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* 標記點位置定位 */
/* Showroom 標記點 */
.paris-marker {
    top: 35%;
    left: 8%;
}

.shanghai-marker {
    top: 44%;
    left: 30%;
}

.guangzhou-marker {
    top: 50%;
    left: 28%;
}

.hongkong-marker {
    top: 48%;
    left: 28%;
}

.tokyo-marker {
    top: 42%;
    left: 32%;
}

.newyork-marker {
    top: 38%;
    right: 25%;
}

/* Office 標記點 */
.remsheid-marker {
    top: 32%;
    left: 9%;
}

.barcelona-marker {
    top: 41%;
    left: 6%;
}

.milano-marker {
    top: 40%;
    left: 10%;
}

.beijing-marker {
    top: 40%;
    left: 31%;
}

.hochiminh-marker {
    top: 54%;
    left: 25%;
}

.osaka-marker {
    top: 44%;
    left: 31%;
}

.toronto-marker {
    top: 30%;
    right: 30%;
}

.losangeles-marker {
    top: 42%;
    right: 15%;
}

/* Factory 標記點 */
.shantou-marker {
    top: 46%;
    left: 29%;
}

.fukui-marker {
    top: 42%;
    left: 32%;
}

/* 工具提示樣式 */
.marker-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    z-index: 20;
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.map-marker:hover .marker-tooltip {
    opacity: 1;
    visibility: visible;
}

/* 地圖圖例樣式 */
.map-legend {
    margin: 30px 0;
    text-align: center;
}

.map-legend h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--dark-color);
}

.legend-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

.legend-item .marker-dot {
    width: 16px;
    height: 16px;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .map-marker i {
        font-size: 20px;
        padding: 6px;
    }

    .marker-tooltip {
        font-size: 11px;
        padding: 6px 10px;
    }
}

.offices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

@media (min-width: 992px) {
    .offices-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.office-category {
    background: white;
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.office-category:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.office-category h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    /* 增大字体 */
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.office-list {
    display: grid;
    gap: 20px;
}

.office-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: var(--radius-sm);
}

.office-item h5 {
    font-size: 18px;
    /* 增大字体 */
    margin-bottom: 8px;
    color: var(--dark-color);
}

.office-item p {
    font-size: 16px;
    /* 增大字体 */
    color: #6c757d;
    line-height: 1.6;
}

/* CSR部分 */
.csr-section {
    padding: 60px 0;
}

.csr-content>p {

    font-size: 18px;
    margin: 0 auto 40px;
    text-align: left;
    text-indent: 2em;
}



.certifications h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 24px;
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .cert-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cert-item {
    background: white;
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cert-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition);
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.cert-item:hover::before {
    width: 100%;
    opacity: 0.1;
}

.cert-item h4 {
    font-size: 18px;
    /* 增大字体 */
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.cert-item p {
    font-size: 16px;
    /* 增大字体 */
    color: #6c757d;
    position: relative;
    z-index: 2;
}

/* 奖项部分 */
.awards-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.award-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(5px);
}

.award-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.award-item:last-child {
    margin-bottom: 0;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.award-header {
    padding: 20px;
    background: var(--primary-color);
    color: white;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .award-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.award-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    /* 增大字体 */
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .award-header h3 {
        margin-bottom: 0;
    }
}

.award-date {
    font-size: 16px;
    /* 增大字体 */
    opacity: 0.8;
}

.award-content {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .award-content {
        grid-template-columns: 1fr 2fr;
    }
}

.award-image {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.award-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.award-text {
    padding: 20px;
}

.award-text p {
    margin-bottom: 16px;
    font-size: 16px;
    /* 增大字体 */
}

.award-text ul {
    margin-top: 16px;
    padding-left: 20px;
    font-size: 16px;
    /* 增大字体 */
}

.award-text ul li {
    margin-bottom: 8px;
    position: relative;
}

.award-text ul li::before {
    content: '•';
    position: absolute;
    left: -15px;
    color: var(--primary-color);
    font-weight: bold;
}

/* 时间线部分 */
.history-section {
    padding: 60px 0;
}

.history-section .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.history-section .section-title::after {
    left: 47%;
    width: 75px;
}

.history-content>p {
    text-align: center;
    margin: 0 auto 40px;
    font-size: 18px;
    /* 增大字体 */
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 21px;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    top: 0;
    width: 80px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 16px;
    /* 增大字体 */
}

@media (max-width: 768px) {
    .timeline-year {
        left: -10px;
        transform: translateX(0);
        width: 70px;
        font-size: 15px;
        height: 35px;
        top: -47px;
    }

    .timeline-item {
        margin-bottom: 60px;
    }
}

.timeline-content {
    position: relative;
    width: calc(50% - 60px);
    padding: 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    left: calc(50% + 60px);
}

@media (max-width: 768px) {
    .timeline-content {
        width: calc(100% - 80px);
        left: 35px !important;
    }
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    /* 增大字体 */
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    color: #6c757d;
    font-size: 16px;
    /* 增大字体 */
}

/* .timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
} */

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -60px;
}

@media (max-width: 768px) {
    .timeline-content::before {
        left: -50px !important;
        right: auto !important;
    }

    .timeline-content h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .timeline-content p {
        font-size: 15px;
    }
}



/* 动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    /* 增大按钮 */
    height: 60px;
    /* 增大按钮 */
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    font-size: 24px;
    /* 增大箭头 */
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* 工具提示 */
.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    /* 增大字体 */
    z-index: 1000;
    pointer-events: none;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tooltip.visible {
    opacity: 1;
}













/* 哲學/使命/訊息 區塊卡片式樣式 */
.philosophy-section,
.mission-section,
.message-section {
    padding: 60px 0;
    position: relative;
}

.philosophy-content,
.mission-content,
.message-content {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
}

/* 左側色條 */
.philosophy-content::before,
.message-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-color));
    opacity: 0.85;
}



/* 右上角柔和裝飾 */
.philosophy-content::after,
.mission-content::after,
.message-content::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(closest-side, rgba(0, 0, 0, 0.05), transparent 70%);
    border-radius: 50%;
}

/* 背景英文字樣淡化處理 */
.philosophy-content .background-text,
.mission-content .background-text,
.message-content .background-text {
    top: 16px;
    left: 16px;
    transform: none;
    font-size: 110px;
    color: rgba(0, 0, 0, 0.03);
}

/* 標題與內文細節 */
.philosophy-section .section-title,
.mission-section .section-title,
.message-section .section-title {
    margin-bottom: 18px;
}

.content-wrapper p,
.message-text {
    margin: 0;
}

/* 懸停微互動（桌面端） */
@media (hover: hover) and (pointer: fine) {

    .philosophy-content:hover,
    .mission-content:hover,
    .message-content:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
        transition: var(--transition);
    }
}

/* 響應式微調 */
@media (max-width: 768px) {

    .philosophy-content,
    .mission-content,
    .message-content {
        padding: 28px 22px;
        border-radius: 12px;
    }

    .philosophy-content .background-text,
    .mission-content .background-text,
    .message-content .background-text {
        font-size: 72px;
    }
}

/* 哲學/使命/訊息：非卡片極簡編輯風覆寫 */
.philosophy-content,
.mission-content,
.message-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* 關閉之前的斜切背景，保持極簡 */
.philosophy-section::after,
.mission-section::after,
.message-section::after {
    display: none;
}

/* 共同基礎：重置內距、去卡片效果已存在，這裡補強排版 */
.philosophy-content .content-wrapper,
.mission-content .content-wrapper,
.message-content .content-wrapper {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* 標題：加入編號徽章與底色帶 */
.philosophy-section .section-title,
.mission-section .section-title,
.message-section .section-title {
    position: relative;
    padding-left: 56px;
}

.philosophy-section .section-title::before,
.mission-section .section-title::before,
.message-section .section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-color), rgba(212, 175, 55, 0.75));
}

/* 編號文字 */
.philosophy-section .section-title::after,
.mission-section .section-title::after,
.message-section .section-title::after {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.philosophy-section .section-title::after {
    content: '01';
}

.mission-section .section-title::after {
    content: '02';
}

.message-section .section-title::after {
    content: '03';
}

/* 左右交錯：邊線與對齊互換 */
.philosophy-content .content-wrapper {
    padding-left: 22px;
    text-align: left;
}

.mission-content .content-wrapper {
    border-right: 4px solid var(--primary-color);
    padding-right: 22px;
    border-left: 0;
    text-align: right;
}

.message-content .content-wrapper {
    padding-left: 22px;
    text-align: left;
}

/* 背景英文水印：更淡且跟隨交錯位置 */
.philosophy-content .background-text {
    right: auto;
    left: 2%;
    top: 60%;
    transform: translateY(-50%);
    font-size: clamp(68px, 14vw, 140px);
    color: rgba(0, 0, 0, 0.03);
}

.mission-content .background-text {
    left: auto;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(68px, 14vw, 140px);
    color: rgba(0, 0, 0, 0.03);
}

.message-content .background-text {
    right: auto;
    left: 2%;
    top: 55%;
    transform: translateY(-50%);
    font-size: clamp(68px, 14vw, 140px);
    color: rgba(0, 0, 0, 0.03);
}

/* 文字段落的版面細節：增加行高、限制最大寬度、交錯對齊 */
.content-wrapper p,
.message-text {
    line-height: 1.9;
    max-width: 880px;
}

.mission-section .content-wrapper p {
    margin-left: auto;
}

/* 行動端：統一置左，弱化邊線 */
@media (max-width: 768px) {

    .philosophy-section .section-title,
    .mission-section .section-title,
    .message-section .section-title {
        padding-left: 52px;
    }

    .mission-content .content-wrapper {
        text-align: left;
        border-right: 0;
        border-left: 3px solid var(--primary-color);
        padding-left: 16px;
        padding-right: 0;
    }

    .philosophy-content .content-wrapper,
    .message-content .content-wrapper {
        border-left-width: 3px;
        padding-left: 16px;
    }

    .philosophy-content .background-text,
    .mission-content .background-text,
    .message-content .background-text {
        font-size: clamp(56px, 16vw, 96px);
        opacity: 0.8;
    }
}

/* 修正：避免背景英文字被裁切 */
.philosophy-content,
.mission-content,
.message-content {
    overflow: visible !important;
}

.philosophy-content .background-text,
.mission-content .background-text,
.message-content .background-text {
    white-space: nowrap;
    line-height: 1;
    z-index: 0;
}

/* 確保前景內容高於背景字 */
.philosophy-content .content-wrapper,
.mission-content .content-wrapper,
.message-content .content-wrapper {
    position: relative;
    z-index: 1;
}


@media screen and (max-width: 768px) {
    .hero-section {
        min-height: 220px;
        height: 20vh;
    }

    .hero-content {
        padding: 0;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 5px;
    }

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

    .hero-overlay {
        background: rgba(0, 0, 0, 0.3);
    }

    .philosophy-section,
    .mission-section,
    .message-section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 23px;
    }

    .philosophy-section .section-title,
    .mission-section .section-title,
    .message-section .section-title {
        margin-bottom: 10px;
    }

    .content-wrapper p,
    .message-text {
        font-size: 16px;
    }

    .network-content .section-title {
        font-size: 28px;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .network-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .office-category {
        padding: 20px;
    }

    .offices-grid {
        gap: 20px;
    }

    .csr-content>p {
        font-size: 16px;
    }

    .certifications h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .cert-item {
        padding: 20px;
    }

    .award-header h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .award-date {
        font-size: 15px;
    }

    .history-section .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .history-content>p {
        font-size: 16px;
    }

}



.contact-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}


.contact-section {
    padding: 70px 15px;
    /* background-image: url('/assets/images/bg-map.png');
    background-size: cover;
    background-position: center; */
}

.contact-section .big-logo {
    display: flex;
}

.big-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-section .fashion__map {
    margin: 0 auto;
}

.country-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 50px;
    padding: 0;
}

.country-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 37, 24, 0.08);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 37, 24, 0.04);
    text-decoration: none;
    color: var(--text-color);
}

.country-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #387b63);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.country-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 37, 24, 0.12);
    border-color: rgba(0, 37, 24, 0.15);
}

.country-item:hover::before {
    transform: scaleX(1);
}

.country-item .country-image {
    width: 35px;
    height: auto;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-item .country-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.country-item .country-info {
    flex: 1;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.4;
    text-align: center;
}

.country-item .email-image {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-item .email-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.8);
}

.country-item:hover .email-image {
    opacity: 1;
    transform: scale(1.1);
}

.country-item:hover .email-image img {
    filter: brightness(1);
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .contact-section{
        padding: 30px 0;
    }
    .country-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
        justify-content: space-between;
        margin-top: 30px;
    }

    .country-item {
        padding: 16px;
        gap: 12px;
    }

    .country-item .country-image {
        width: 24px;
    }

    .country-item .country-info {
        font-size: 10px;
        text-decoration: underline;
        flex: auto;
        text-align: center;
    }

    .country-item .email-image {
        width: 15px;
        height: auto;
    }
    .country-item {
        padding: 10px 7px;
        gap: 0;
        width: calc(50% - 6px);
    }
}
