            :root {
            --primary: #003366;
            --secondary: #D4AF37;
            --accent: #8B0000;
            --light: #F5F7FA;
            --dark: #1A1A1A;
            --gray: #6C757D;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #fff;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--primary);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            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-text {
            font-size: 28px;
            font-weight: 235;
            color: var(--primary);
            margin-left: 10px;
            font-family: 'Playfair Display', serif;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin: 0 15px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 16px;
            position: relative;
            padding-bottom: 5px;
            transition: var(--transition);
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .nav-menu a:hover:after {
            width: 100%;
        }
        
        .header-actions {
            display: flex;
            align-items: center;
        }
        
        .language-switcher {
            margin-right: 20px;
            position: relative;
            cursor: pointer;
        }
        
        .language-switcher span {
            font-weight: 500;
            display: flex;
            align-items: center;
        }
        
        .language-switcher span i {
            margin-left: 5px;
            transition: var(--transition);
        }
        
        .language-switcher:hover .dropdown {
            display: block;
        }
        
        .dropdown {
            display: none;
            position: absolute;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 10px;
            border-radius: 5px;
            width: 150px;
            top: 30px;
            right: 0;
        }
        
        .dropdown a {
            display: block;
            padding: 8px 0;
            text-decoration: none;
            color: var(--dark);
            transition: var(--transition);
        }
        
        .dropdown a:hover {
            color: var(--primary);
        }
        
        .mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Gallery Section */
        .hero-gallery {
            height: 90vh;
            position: relative;
            margin-top: 80px;
            overflow: hidden;
        }
        
        .gallery-slide {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }
        
        .gallery-slide.active {
            display: block;
            opacity: 1;
        }
        
        .hero-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 90%;
            max-width: 900px;
            z-index: 10;
        }
        
        .tagline-box {
            background: rgba(0, 51, 102, 0.85);
            padding: 30px 40px;
            border-left: 5px solid var(--secondary);
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .tagline-box h1 {
            font-size: 3.2rem;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .tagline-box p {
            font-size: 1.4rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .gallery-indicators {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            z-index: 10;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            margin: 0 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .indicator.active {
            background: white;
            transform: scale(1.2);
        }
        
        /* Businesses Section */
        .businesses {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-header p {
           /*color: var(--gray); */
            max-width: 800px;
            margin: 20px auto 0;
        }
        
        .business-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .business-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .business-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .card-image {
            height: 240px;
            overflow: hidden;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .business-card:hover .card-image img {
            transform: scale(1.05);
        }
        
        .card-content {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .card-content h3 {
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .card-content p {
            color: var(--gray);
            margin-bottom: 20px;
            flex: 1;
        }
        
        .btn {
            display: inline-block;
            background: #003DA7;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border: 2px solid #003DA7;
            text-align: center;
        }
        
        .btn:hover {
            background: transparent;
            color: #003DA7;
        }
        
        .btn-secondary {
            background: var(--secondary);
            border-color: var(--secondary);
        }
        
        .btn-secondary:hover {
            color: var(--secondary);
        }
        
        /* History Section */
        .history {
            padding: 100px 0;
            background: white;
            position: relative;
        }
        
        .history-content {
            display: flex;
            align-items: flex-start;
            gap: 50px;
        }
        
        .history-text {
            flex: 1;
        }
        
        .history-text h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
        }
        
        .milestone {
            margin-top: 40px;
            padding-left: 20px;
            border-left: 3px solid var(--secondary);
        }
        
        .milestone h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .history-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .history-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: #003DA7;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 30px;
        }
        
        .service-card h3 {
            margin-bottom: 15px;
        }
        
        /* About Section */
        .about {
            padding: 50px 0;
            background: white;
        }
        
        .about-content {
            display: flex;
            align-items: flex-start;
            gap: 50px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
	        position: relative;
            display: inline-block;
        }
		
		
	.about-text h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--secondary); 
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
        
        .values {
            margin-top: 40px;
        }
        
        .value-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .value-icon {
            background: #003DA7;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        /* Leadership Section */
        .leadership {
            padding: 50px 0;
            background-color: var(--light);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        
        .team-member:hover {
            /*transform: translateY(-10px);*/
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .member-image {
            height: 300px;
            overflow: hidden;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .team-member:hover .member-image img {
            /*transform: scale(1.05);*/
        }
        
        .member-info {
            padding: 25px;
            text-align: center;
        }
        
        .member-info h3 {
            margin-bottom: 5px;
        }
        
        .member-position {
            color: var(--secondary);
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: white;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info {
            padding: 30px;
        }
        
        .contact-info h2 {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            background: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .contact-form {
            background: var(--light);
            padding: 40px;
            border-radius: 10px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
        }
        
        .form-group textarea {
            height: 150px;
        }
        
        /* Partners Section */
        .partners {
            padding: 50px 0;
            background-color: var(--primary);
            color: white;
        }
        
        .partners h2 {
            color: white;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .partner-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }
        
        .partner-logo {
            /*height: 60px; */
            /* filter: grayscale(100%) brightness(200%); */
            opacity: 0.7;
            transition: var(--transition);
        }
        
        .partner-logo:hover {
            filter: grayscale(0%) brightness(100%);
            opacity: 1;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 70px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background: var(--secondary);
            bottom: -8px;
            left: 0;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-column ul li a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-column p {
            color: #ccc;
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Page Navigation */
        .page {
            display: none;
        }
        
        .page.active {
            display: block;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .tagline-box h1 {
                font-size: 2.8rem;
            }
            
            .tagline-box p {
                font-size: 1.2rem;
            }
            
            .history-content, .about-content {
                flex-direction: column;
            }
            
            .business-cards, .contact-container {
                grid-template-columns: 1fr;
            }
            
            .history-image, .about-image {
                margin-top: 40px;
            }
        }
        
        @media (max-width: 768px) {
			
			.header-container {
        justify-content: flex-start;
        gap: 90px; /* LOGO 和三條線之間的距離 */
        }
			
			
            .mobile-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                background: white;
                width: 100%;
                flex-direction: column;
                padding: 30px 0;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
                transition: var(--transition);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
                text-align: center;
            }
            
            .tagline-box h1 {
                font-size: 2.2rem;
            }
            
            .tagline-box p {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-gallery {
                height: 70vh;
            }
            
            .tagline-box h1 {
                font-size: 1.8rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .partner-logos {
                gap: 20px;
            }
            
            .partner-logo {
                /*height: 40px; */
            }
            
            .tagline-box {
                padding: 20px;
            }
        }
                    /* Dropdown behavior for mobile */
            .dropdown-menu {
                position: static; /* Allows menu to flow within the mobile nav */
                display: none;
                width: 100%;
                box-shadow: none;
                margin-top: 10px;
                background-color: var(--light); /* Lighter background for sub-menu */
            }

            .dropdown-menu a {
                padding: 10px 0;
            }
             /* Dropdown 修正定位與樣式 */
        .dropdown-parent {
            position: relative;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%; /* 出現在主選單正下方 */
            left: 0;
            background-color: white;
            min-width: 180px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            z-index: 999;
            padding: 5px 0;
            margin-top: 5px; /* 與主選單按鈕稍微間距 */
            border-radius: 5px;
            list-style: none;
        }

        .dropdown-menu li {
            padding: 0; /* 重置 li 的 padding */
            margin: 0; /* 重置 li 的 margin */
        }

        .dropdown-menu a {
            color: var(--dark);
            padding: 10px 20px; /* 下拉選單項目的內邊距 */
            text-decoration: none;
            display: block; /* 讓整個區域可點擊 */
            white-space: nowrap; /* 防止文字換行 */
        }

        .dropdown-menu a:hover {
            background-color: var(--light);
            color: var(--primary);
        }

        /* 電腦版hover效果 */
        .dropdown-parent:hover .dropdown-menu {
            display: block;
        }   