﻿
        .sg-cleaning-v1 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft JhengHei', sans-serif;
        }
        
        .sg-cleaning-v1 body {
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        .sg-cleaning-v1 .sg-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 標頭樣式 */
        .sg-cleaning-v1 .sg-header {
            background-color: #2a6e3f;
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .sg-cleaning-v1 .sg-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .sg-cleaning-v1 .sg-logo {
            display: flex;
            align-items: center;
        }
        
        .sg-cleaning-v1 .sg-logo h1 {
            font-size: 1.8rem;
            margin-left: 10px;
        }
        
        .sg-cleaning-v1 .sg-logo-icon {
            font-size: 2rem;
        }
        
        .sg-cleaning-v1 .sg-nav ul {
            display: flex;
            list-style: none;
        }
        
        .sg-cleaning-v1 .sg-nav ul li {
            margin-left: 1.5rem;
        }
        
        .sg-cleaning-v1 .sg-nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .sg-cleaning-v1 .sg-nav ul li a:hover {
            color: #c8e6c9;
        }
        
        .sg-cleaning-v1 .sg-contact-info {
            text-align: right;
        }
        
        .sg-cleaning-v1 .sg-phone {
            font-size: 1.3rem;
            font-weight: bold;
            color: #ffeb3b;
        }
        
        .sg-cleaning-v1 .sg-address {
            font-size: 0.9rem;
            margin-top: 5px;
            color: #e0e0e0;
        }
        
        /* 主視覺區 */
        .sg-cleaning-v1 .sg-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 5rem 0;
            text-align: center;
        }
        
        .sg-cleaning-v1 .sg-hero h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .sg-cleaning-v1 .sg-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        .sg-cleaning-v1 .sg-cta-button {
            display: inline-block;
            background-color: #ff9800;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        
        .sg-cleaning-v1 .sg-cta-button:hover {
            background-color: #f57c00;
        }
        
        /* 主要內容區 */
        .sg-cleaning-v1 .sg-section {
            padding: 4rem 0;
        }
        
        .sg-cleaning-v1 .sg-section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: #2a6e3f;
        }
        
        .sg-cleaning-v1 .sg-section-title h2 {
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .sg-cleaning-v1 .sg-section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #ff9800;
        }
        
        /* 公司介紹 */
        .sg-cleaning-v1 .sg-about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        
        .sg-cleaning-v1 .sg-about-text {
            flex: 1;
        }
        
        .sg-cleaning-v1 .sg-about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #2a6e3f;
        }
        
        .sg-cleaning-v1 .sg-about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .sg-cleaning-v1 .sg-about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* 優勢列表 */
        .sg-cleaning-v1 .sg-advantages {
            background-color: #e8f5e9;
        }
        
        .sg-cleaning-v1 .sg-advantage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .sg-cleaning-v1 .sg-advantage-card {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .sg-cleaning-v1 .sg-advantage-card:hover {
            transform: translateY(-5px);
        }
        
        .sg-cleaning-v1 .sg-advantage-icon {
            font-size: 2.5rem;
            color: #2a6e3f;
            margin-bottom: 1rem;
        }
        
        .sg-cleaning-v1 .sg-advantage-card h3 {
            margin-bottom: 1rem;
            color: #2a6e3f;
        }
        
        /* 服務區 */
        .sg-cleaning-v1 .sg-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .sg-cleaning-v1 .sg-service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        
        .sg-cleaning-v1 .sg-service-card:hover {
            transform: translateY(-5px);
        }
        
        .sg-cleaning-v1 .sg-service-header {
            background-color: #2a6e3f;
            color: white;
            padding: 1.5rem;
            text-align: center;
        }
        
        .sg-cleaning-v1 .sg-service-body {
            padding: 1.5rem;
        }
        
        .sg-cleaning-v1 .sg-service-body ul {
            list-style-position: inside;
            margin-top: 1rem;
        }
        
        .sg-cleaning-v1 .sg-service-body li {
            margin-bottom: 0.5rem;
        }
        
        /* 裝潢清潔專區 */
        .sg-cleaning-v1 .sg-renovation-cleaning {
            background-color: #f5f5f5;
        }
        
        .sg-cleaning-v1 .sg-process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .sg-cleaning-v1 .sg-step {
            background-color: white;
            border-radius: 8px;
            padding: 1.5rem;
            width: calc(50% - 1rem);
            min-width: 280px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        
        .sg-cleaning-v1 .sg-step-number {
            display: inline-block;
            background-color: #ff9800;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            margin-right: 10px;
            font-weight: bold;
        }
        
        /* 區域服務 */
        .sg-cleaning-v1 .sg-service-areas {
            background-color: #e3f2fd;
        }
        
        .sg-cleaning-v1 .sg-areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .sg-cleaning-v1 .sg-area-card {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        }
        
        .sg-cleaning-v1 .sg-area-card h4 {
            color: #2a6e3f;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ff9800;
        }
        
        /* 認證與見證 */
        .sg-cleaning-v1 .sg-certifications {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .sg-cleaning-v1 .sg-cert-item {
            text-align: center;
            max-width: 200px;
        }
        
        .sg-cleaning-v1 .sg-cert-icon {
            font-size: 3rem;
            color: #2a6e3f;
            margin-bottom: 1rem;
        }
        
        .sg-cleaning-v1 .sg-testimonial {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            margin-top: 2rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            border-left: 5px solid #ff9800;
        }
        
        .sg-cleaning-v1 .sg-testimonial-author {
            font-weight: bold;
            margin-top: 1rem;
            color: #2a6e3f;
            text-align: right;
        }
        
        /* 頁尾 */
        .sg-cleaning-v1 .sg-footer {
            background-color: #1b5e20;
            color: white;
            padding: 3rem 0 1.5rem;
        }
        
        .sg-cleaning-v1 .sg-footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .sg-cleaning-v1 .sg-footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .sg-cleaning-v1 .sg-footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: #ffeb3b;
        }
        
        .sg-cleaning-v1 .sg-footer-section ul {
            list-style: none;
        }
        
        .sg-cleaning-v1 .sg-footer-section ul li {
            margin-bottom: 0.8rem;
        }
        
        .sg-cleaning-v1 .sg-footer-section a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .sg-cleaning-v1 .sg-footer-section a:hover {
            color: #ffeb3b;
        }
        
        .sg-cleaning-v1 .sg-copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bdbdbd;
            font-size: 0.9rem;
        }
        
        /* 響應式設計 */
        @media (max-width: 992px) {
            .sg-cleaning-v1 .sg-about-content {
                flex-direction: column;
            }
            
            .sg-cleaning-v1 .sg-hero h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .sg-cleaning-v1 .sg-header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .sg-cleaning-v1 .sg-nav ul {
                margin-top: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .sg-cleaning-v1 .sg-nav ul li {
                margin: 0 0.75rem 0.5rem;
            }
            
            .sg-cleaning-v1 .sg-contact-info {
                text-align: center;
                margin-top: 1rem;
            }
            
            .sg-cleaning-v1 .sg-step {
                width: 100%;
            }
            
            .sg-cleaning-v1 .sg-section-title h2 {
                font-size: 1.8rem;
            }
        }
