* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft JhengHei', 'Noto Sans TC', sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f8f8f8;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 顶部导航栏 - 白色背景 */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
    min-width: 50px;
    height: 70px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 移除之前的X形样式 */
    background: none;
}

.logo-icon:before, .logo-icon:after {
    display: none;
}

.logo-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #8B4513; /* 改为咖啡色 */
}

.logo-text span {
    color: #333;
}
        
        .logo-icon:before {
            transform: translateY(-50%) rotate(45deg);
        }
        
        .logo-icon:after {
            transform: translateY(-50%) rotate(-45deg);
        }
        
        .logo-text {
            font-size: 28px;
            font-weight: 700;
            color: #8B4513; /* 改为咖啡色 */
        }
        
        .logo-text span {
            color: #333;
        }
        
        nav ul {
            display: flex;
            list-style: none;
			padding-top:40px;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 8px 5px;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: #8B4513; /* 改为咖啡色 */
        }
        
        nav ul li a.active {
            color: #8B4513; /* 改为咖啡色 */
        }
        
        nav ul li a.active:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            background-color: #8B4513; /* 改为咖啡色 */
            bottom: -5px;
            left: 0;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            color: #8B4513; /* 改为咖啡色 */
            cursor: pointer;
        }
        
        /* 主视觉横幅 */
        .hero {
            background: linear-gradient(rgba(139, 69, 19, 0.85), rgba(139, 69, 19, 0.9)), url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80'); /* 改为咖啡色 */
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
        }
        
        .hero h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            font-weight: 400;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        
        /* 公司优势部分 */
        .advantages {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #8B4513; /* 改为咖啡色 */
            margin-bottom: 15px;
			margin-top: -35px;
        }
        
        .section-title p {
            color: #666;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        .forms-content {
            padding: 80px 0;
            background-color: white;
        }
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .advantage-card {
    background-color: #f8f8f8;			
    border-radius: 8px;
    padding: 0px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    min-width: 300px; /* 確保卡片有最小寬度 */
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}      

	 /* 页面标题部分 */
        .page-header {
            background: linear-gradient(rgba(139, 69, 19, 0.85), rgba(139, 69, 19, 0.9));
            color: white;
            text-align: center;
            padding: 80px 0;
        }
        
        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 15px;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* 服务范围部分 */
        .services {
            padding: 80px 0;
            background-color: #f5f0eb; /* 改为浅咖啡色 */
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        .service-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: #8B4513; /* 改为咖啡色 */
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #333;
        }
        
        /* 联系方式部分 */
        .contact {
            padding: 80px 0;
            background-color: white;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #8B4513; /* 改为咖啡色 */
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: #8B4513; /* 改为咖啡色 */
            width: 40px;
        }
        
        .contact-details h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
         /* 页脚样式调整 */
        footer {
            background-color: #8B4513;
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1.2fr repeat(3, 1fr); /* 调整第一列宽度 */
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-about {
            width: calc(100% + 4px); /* 增加约20px宽度 */
        }
        
        .footer-links h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #D2B48C;    
padding-left: 65px;			
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .footer-logo span {
            color: #D2B48C; /* 改为浅咖啡色 */
        }
        

        .footer-links ul {
            list-style: none;			 
        }
        
        .footer-links li {
            margin-bottom: 10px;
			padding-left: 65px;	
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #D2B48C; /* 改为浅咖啡色 */
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        body, header, footer, section {min-width:1160px;}
        .forms-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .forms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .form-card {
            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        
        .form-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .pdf-icon {
            font-size: 4rem;
            color: #d32f2f;
            margin-bottom: 20px;
        }
        
        .form-card h3 {
            font-size: 1.5rem;
            color: #8B4513;
            margin-bottom: 15px;
        }
        
        .form-card p {
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .download-btn {
            display: inline-block;
            background-color: #8B4513;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
            width: 100%;
            max-width: 200px;
        }
        
        .download-btn:hover {
            background-color: #6B3300;
        }
        
        .forms-info {
            background-color: #fff8e1;
            border-left: 4px solid #D2B48C;
            padding: 25px;
            border-radius: 8px;
            margin-top: 30px;
        }
        
        .forms-info h3 {
            color: #8B4513;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .forms-info p {
            margin-bottom: 10px;
        }
        /* 下拉菜单样式 */
        .dropdown {
            position: relative;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 300px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
            display: flex;
            flex-direction: column; /* 改为纵向排列 */
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-menu li {
            margin: 0;
            border-bottom: 1px solid #f0f0f0;
            width: 100%; /* 每个子菜单项占满一行 */
        }
        
        .dropdown-menu li:last-child {
            border-bottom: none;
        }
        
        .dropdown-menu li a {
            padding: 12px 20px;
            display: block;
            color: #555;
            transition: all 0.3s;
            white-space: nowrap;
        }
        
        .dropdown-menu li a:hover {
            background-color: #f8f8f8;
            color: #8B4513;
            padding-left: 25px;
        }
        
        .dropdown > a:after {
            content: '\f107';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            margin-left: 5px;
            font-size: 14px;
        }
        
        .description {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
        }
        
        .description h2 {
            color: #8B4513;
            margin-bottom: 15px;
        }
        
        .description p {
            line-height: 1.6;
            margin-bottom: 10px;
        }
		
		       /* 價格詳情部分 */
        .pricing-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .pricing-container {
            max-width: 1000px;
            margin: 0 auto;
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .pricing-highlight {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .main-price {
            font-size: 3.5rem;
            color: #8B4513; /* 咖啡色 */
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .price-desc {
            font-size: 1.5rem;
            color: #8B4513; /* 咖啡色 */
            font-weight: 500;
        }
        
        .pricing-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .pricing-item {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            border-left: 5px solid #8B4513; /* 咖啡色 */
        }
        
        .pricing-item h3 {
            color: #8B4513; /* 咖啡色 */
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .pricing-item ul {
            list-style: none;
        }
        
        .pricing-item li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }
        
        .pricing-item li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #8B4513; /* 咖啡色 */
            font-weight: bold;
        }
        
        .extra-note {
            background-color: #fff8e1;
            border-left: 4px solid #D2B48C; /* 淺咖啡色 */
            padding: 20px;
            border-radius: 5px;
            font-size: 1.1rem;
        }
		/* 主服務介紹部分 */
        .service-intro {
            padding: 100px 0;
            background-color: white;
        }
        
        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .intro-text h2 {
            font-size: 2.8rem;
            color: #8B4513; /* 咖啡色 */
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .intro-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
        }
        
        .price-tag {
            display: inline-block;
            background-color: #C00; /* 咖啡色 */
            color: white;
            font-size: 2.2rem;
            font-weight: bold;
            padding: 10px 25px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
        }
        
        .intro-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .intro-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* 服務詳情部分 */
        .service-details {
            padding: 80px 0;
            background-color: #f5f0eb; /* 淺咖啡色背景 */
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #8B4513; /* 咖啡色 */
            margin-bottom: 15px;
			margin-top: -25px;
        }
        
        .section-title p {
            color: #666;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .detail-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .detail-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .detail-icon {
            width: 70px;
            height: 70px;
            background-color: #D2B48C; /* 淺咖啡色 */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .detail-icon i {
            font-size: 2rem;
            color: #333;
        }
        
        .detail-card h3 {
            font-size: 1.5rem;
            color: #8B4513; /* 咖啡色 */
            margin-bottom: 15px;
        }
        
        .detail-card p {
            color: #555;
            margin-bottom: 10px;
        }
        
 /* 备注部分 */
        .notes-section {
            background-color: #fff8e1;
            border-left: 4px solid #D2B48C;
            padding: 25px;
            border-radius: 8px;
            margin-top: 40px;
        }
        
        .notes-section h3 {
            color: #8B4513;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .notes-section ul {
            margin-left: 20px;
        }
        
        .notes-section li {
            margin-bottom: 10px;
        }   
		/* 表格样式 */
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 40px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
		
		.pricing-table1 {          
			margin-top: 30px;
            margin-bottom: 0px;
        }
        
        .pricing-table caption {
            font-size: 1.5rem;
            font-weight: bold;
            color: #8B4513;
            margin-bottom: 15px;
            text-align: left;
        }
        
        .pricing-table th, .pricing-table td {
            padding: 15px;
            text-align: center;
            border: 1px solid #ddd;
        }
        
        .pricing-table th {
            background-color: #8B4513;
            color: white;
            font-weight: 600;
        }
        
        .pricing-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .pricing-table tr:hover {
            background-color: #f5f0eb;
        }
        
        .pricing-table .highlight {
            background-color: #fff8e1;
            font-weight: 600;
        }
        
        