/* 服務介紹區域專用樣式 */
.service-intro-section {
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.service-intro-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.service-intro-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin: 0.5rem auto 0;
}

.service-intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

/* 服務網格布局 */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

.service-grid-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 400px;
    display: flex;
    flex-direction: column;
}

.service-grid-item h3 {
    color: #007bff;
    font-size: 1.4rem;
    padding: 1.5rem;
    margin: 0;
    border-bottom: 1px solid #eee;
}

/* 可滾動內容區域 */
.scrollable-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

/* 自定義滾動條樣式 */
.scrollable-content::-webkit-scrollbar {
    width: 6px;
}

.scrollable-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* 內容樣式 */
.section-intro {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.detail-section {
    margin-bottom: 1.5rem;
}

.detail-section h4 {
    color: #333;
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.detail-section ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.detail-section li {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.2rem;
}

.detail-section li::before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
    top: 0;
}

/* 響應式設計 */
@media screen and (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-grid-item {
        height: 350px;
    }

    .service-grid-item h3 {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .scrollable-content {
        padding: 1rem;
    }

    .section-intro {
        font-size: 0.95rem;
    }

    .detail-section h4 {
        font-size: 1rem;
    }

    .detail-section li {
        font-size: 0.9rem;
    }
}

body {
    font-family: 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', 'Heiti TC', '微軟正黑體', sans-serif;
} 