
        /* Global Styles & Base Settings */
        body {
            margin: 0;
            font-family: 'Noto Sans TC', sans-serif;
            color: #ffffff;
            background-color: #1a1a1a;
            overflow-x: hidden;
        }

        /* Header Styles */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            background-color: rgba(0, 0, 0, 0.8);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 10000;
            box-sizing: border-box;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        }

        .header .logo {
            display: flex;
            align-items: center;
            font-size: clamp(20px, 2.5vw, 32px);
            font-weight: bold;
            color: #ffffff;
            text-decoration: none;
            flex-shrink: 0;
        }

        .header .logo img {
            height: clamp(30px, 4vw, 40px);
            margin-right: 5px;
            flex-shrink: 0;
        }

        .header .logo h1 {
            font-size: inherit;
            margin: 0;
            color: #cccccc;
            white-space: nowrap;
        }

        /* Navigation Links (Desktop) */
        .header .nav-links {
            display: flex;
            align-items: center;
            flex-grow: 1;
            justify-content: flex-end;
        }

        .header .nav-links a {
            color: #cccccc;
            text-decoration: none;
            margin-left: clamp(15px, 1.5vw, 25px);
            font-size: clamp(14px, 1.5vw, 20px);
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .header .nav-links a:hover {
            color: #00bcd4;
        }

        /* Hamburger Icon */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            cursor: pointer;
            z-index: 10001;
        }

        .hamburger .bar {
            width: 100%;
            height: 3px;
            background-color: #ffffff;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        /* Hero Section Styles */
        .hero-section {
            position: relative;
            height: 60vh;
            min-height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.1) 100%),
                                 url('../images/f2.webp') no-repeat center center / cover;
            padding-top: 80px;
            box-sizing: border-box;
        }

        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.1);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: #ffffff;
            max-width: 800px;
            padding: 20px;
        }

        .hero-content h1 {
            font-size: clamp(0.5em, 1.5vw, 1.5em);
            margin-bottom: 15px;
        }

        .hero-content p {
            font-size: clamp(1.5em, 5vw, 20em);
            line-height: 1.0;
            margin-bottom: 15px;
            text-shadow: 0 0 3px rgba(0, 255, 255, 0.5);
        }

        /* Common Background for Content Sections */
        .content-background {
    background: url('../images/a1.webp') no-repeat center center fixed;
    background-size: cover;
    padding-top: 1px;

}
        .team-section {
            padding-bottom: 50px;
        }

        /* Section Titles & Descriptions */
        .section-title {
            font-size: clamp(1.8em, 4vw, 4.8em);
            color: #444444;
            text-align: left; /* 讓「加入宏成」靠左 */
            margin-top: 50px;
            margin-bottom: 20px;
            padding: 0 5%;
        }
        /* 新增這個規則，讓「招募流程」標題置中 */
        .recruitment-process-title {
            text-align: center;
        }


        .section-description {
            font-size: clamp(0.9em, 1.8vw, 1.3em);
            max-width: 1000px;
            margin: 0 5% 50px 5%;
            line-height: 1.6;
            color: #cccccc;
            text-align: left;
        }
        
        .team-section .section-description {
            font-size: clamp(0.9em, 1.8vw, 3.9em);
        }

        /* Card Containers for Job Listings */
        .cards-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start; /* 將卡片容器內的項目從左邊開始排列 */
            gap: 30px;
            padding: 20px 5%; /* 維持與區塊標題和描述相同的左右內邊距 */
            margin-bottom: 50px;
            flex-direction: column; /* 垂直堆疊卡片 */
            align-items: flex-start; /* 當 flex-direction: column 時，這控制水平對齊，使其靠左 */
            max-width: 800px; /* 限制總寬度 */
            margin-left: 5%; /* 將容器本身靠左對齊，與 padding 保持一致 */
            margin-right: auto; /* 配合 margin-left 實現靠左效果 */
        }

        /* Card Base Styles */
        .team-card { /* Renamed to .team-card to specifically target career cards */
            width: 100%; /* Make card fill its parent container width */
            flex-direction: column;
            text-align: left;
            padding: 20px 30px;
            border-radius: 8px;
            box-shadow: 0 0px 4px rgba(255, 255, 255, 0); /* Maintain original shadow */
        }

        .team-card h2 { /* Position title */
            font-size: clamp(1.6em, 2.8vw, 2.5em);
            color: #444444;
            margin-bottom: 8px;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0);
        }

        .team-card p { /* Position description */
            font-size: clamp(0.9em, 1.5vw, 1.2em);
            line-height: 1.7;
            color: #dddddd;
        }
        .team-card:hover {
            transform: none; /* Remove hover effect */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0); /* Keep consistent shadow */
        }
        
        /* Recruitment Flow Image Container */
        .recruitment-flow-container {
            display: flex;
            justify-content: center; /* 水平置中圖片 */
            align-items: center;
            padding: 20px 5%; /* 與其他內容保持一致的左右間距 */
            margin: 0 auto 50px auto; /* 置中容器，下方留白 */
            max-width: 1200px; /* 限制圖片容器的最大寬度 */
        }

        .recruitment-flow-container img {
            max-width: 100%; /* 確保圖片響應式 */
            height: auto; /* 保持圖片比例 */
            display: block; /* 讓圖片行為更像區塊元素，以配合 margin: auto; */
            margin: 0 auto; /* 如果父容器沒有 text-align: center; 且圖片為 block，則此行有效 */
        }

        /* Contact Email Section */
        .contact-email-section {
            display: flex;
            flex-direction: column; /* 讓內容垂直堆疊 */
            align-items: center; /* 水平置中內容 */
            text-align: center; /* 確保文字也置中 */
            padding: 40px 20px;
            margin-bottom: 50px; /* 在底部留一些空間 */
        }

        .contact-email-section img {
            width: clamp(80px, 10vw, 120px); /* 控制圖片大小 */
            height: auto;
            margin-bottom: 20px;
        }

        .contact-email-section a {
            font-size: clamp(1.2em, 2vw, 1.8em);
            color: #ffffff;
            margin: 0;
            
        }

        /* Site Footer */
        .site-footer {
            background-color: rgba(0, 0, 0, 0.8);
            padding: 10px;
            text-align: center;
            color: #888;
            width: 100%;
            box-sizing: border-box;
        }

        .site-footer p {
            font-size: clamp(0.7em, 1vw, 2.7em);
        }

        /* New Contact Section Styles */
        .contact-section {
            padding: 50px 20px;
            background-color: #1a1a1a; /* Dark background */
            color: #ffffff;
            display: flex;
            flex-direction: column; /* Stack vertically on small screens */
            align-items: center;
            gap: 40px; /* Space between columns */
	    
        }

        .contact-header {
            text-align: center;
            margin-bottom: 40px;
	    min-width: 60%;
            
            padding: 0 20px;
        }

        .contact-header h2 {
            font-size: clamp(2em, 5vw, 3.5em);
            margin-bottom: 15px;
            color: #333333;
        }

        .contact-header p {
            font-size: clamp(0.9em, 2vw, 1.2em);
            line-height: 1.6;
            color: #cccccc;
        }

        .contact-content-wrapper {
            display: flex;
            flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
            justify-content: center;
            gap: 40px;
            max-width: 1200px;
            width: 100%;
        }

        .contact-form-container,
        .contact-map-container,
        .contact-info-container {
            background-color: #333333; /* Darker card background */
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            flex: 1; /* Allow items to grow and shrink */
            min-width: 280px; /* Minimum width for each column */
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .contact-form-container {
            max-width: 400px; /* Max width for the form */
        }

        .contact-form label {
            display: block;
            margin-bottom: 8px;
            font-size: 1.1em;
            color: #dddddd;
        }

        .contact-form input[type="text"],
        .contact-form input[type="email"],
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #555555;
            border-radius: 5px;
            background-color: #444444;
            color: #ffffff;
            font-size: 1em;
            box-sizing: border-box;
            transition: border-color 0.3s ease;
        }

        .contact-form input[type="text"]:focus,
        .contact-form input[type="email"]:focus,
        .contact-form textarea:focus {
            border-color: #007bff; /* Highlight on focus */
            outline: none;
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form button {
            background-color: #007bff;
            color: #ffffff;
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1em;
            transition: background-color 0.3s ease;
        }

        .contact-form button:hover {
            background-color: #0056b3;
        }

        .contact-map-container {
            flex-grow: 2; /* Map takes more space */
            min-width: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden; /* Ensure map doesn't overflow */
        }

        .contact-map-container iframe {
            width: 100%;
            height: 100%;
            min-height: 300px; /* Minimum height for the map */
            border: 0;
            border-radius: 8px;
        }

        .contact-info-container {
            max-width: 350px; /* Max width for contact info */
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start; /* Align icon and text at the top */
            margin-bottom: 25px;
            font-size: 1.1em;
            color: #dddddd;
        }

        .contact-info-item i {
            font-size: 1.5em;
            margin-right: 15px;
            color: #007bff; /* Icon color */
            flex-shrink: 0; /* Prevent icon from shrinking */
            width: 25px; /* Fixed width for consistent alignment */
            text-align: center;
        }

        .contact-info-item p,
        .contact-info-item a {
            margin: 0;
            line-height: 1.5;
            color: #dddddd;
            text-decoration: none;
            word-break: break-all; /* Break long words */
        }

        .contact-info-item a:hover {
            color: #007bff;
        }
	.mission-vision-overlay
	 {
            position: relative; /* 內部文字絕對定位的基準 */
            width: 100%;
            height: 200px; /* 設置一個固定高度，或者根據內容自適應 */
            background-image: url('../images/f1.webp'); /* a3.webp 作為背景圖 */
            background-size: cover; /* 覆蓋整個區域 */
            background-position: center center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center; /* 垂直居中文本 */
            justify-content: center; /* 水平居中文本 */
            text-align: center; /* 文本居中 */
            color: #eeeeee; /* 文字顏色 */
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
	    margin: 50px auto;
        }
	.vision-section-b1 {
            background-image: url('../images/e1.webp');
        }

        .mission-vision-overlay::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6); /* 半透明黑色覆蓋層 */
            z-index: 1; /* 確保覆蓋層在圖片上，文字在覆蓋層上 */
	    transition: background-color 0.3s ease;
        }
	   .mission-vision-overlay:hover::before {
           background-color: rgba(0, 0, 0, 0.8); /* Darker overlay on hover */
	}

        .mission-vision-overlay-content {
            position: relative;
            z-index: 2; /* 確保文字在覆蓋層之上 */
            max-width: 90%; /* 控制文字寬度，防止過長 */
            padding: 20px;
            font-size: clamp(1em, 2vw, 1.5em); /* 響應式字體大小 */
            line-height: 1.8;
            
            overflow: hidden; /* Important for hiding content outside of container */
        }

        /* Style for initial text */
        .mission-vision-overlay-content .initial-text {
            opacity: 1;
            transition: opacity 0.5s ease-in-out;
        }

        .mission-vision-overlay-content .initial-text h2 {
            font-size: clamp(1.8em, 4vw, 4.8em); /* Match .team-section h2 */
            margin-bottom: 20px;
            color:  #edffed; /* Adjust color for visibility on overlay */
            text-shadow: 0 0 3px rgba(0, 255, 255, 0.5); /* Adjust for visibility */
        }

        .mission-vision-overlay-content .initial-text p {
            font-size: clamp(0.9em, 1.8vw, 3.9em); /* Match other paragraphs */
            line-height: 1.6;
            color:  #edffed;
	    font-weight: bold;
	    text-shadow: 0 0 3px rgba(0, 255, 255, 0.5);
        }

        /* Style for hover text - initially hidden */
        .mission-vision-overlay-content .hover-text {
            opacity: 0;
            position: absolute;
            top: 50%; /* Center vertically */
            left: 50%; /* Center horizontally */
            transform: translate(-50%, -50%); /* Adjust for true centering */
            width: 100%; /* Take full width of parent */
            box-sizing: border-box; /* Include padding in width */
            padding: 20px; /* Match parent padding */
            transition: opacity 0.5s ease-in-out;
	    color: #ffffff;
	    
        }

        /* On hover, hide initial text and show hover text */
        .mission-vision-overlay:hover .initial-text {
            opacity: 0;
        }

        .mission-vision-overlay:hover .hover-text {
            opacity: 1;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .header {
                padding: 10px 15px;
            }
            .header .logo {
                font-size: clamp(16px, 2vw, 28px);
            }
            .header .logo img {
                height: clamp(24px, 3.5vw, 35px);
            }
            .header .nav-links a {
                margin-left: clamp(10px, 1vw, 20px);
                font-size: clamp(12px, 1.2vw, 16px);
            }
            .hero-section {
                padding-top: 70px;
            }
            .team-card {
                width: clamp(280px, 90%, 450px);
                min-width: unset;
            }

            .contact-content-wrapper {
                flex-direction: column; /* Stack all columns vertically */
                align-items: center;
            }

            .contact-form-container,
            .contact-map-container,
            .contact-info-container {
                width: 90%; /* Take up more width on smaller screens */
                max-width: 500px; /* Limit max width even when stacked */
            }

            .contact-map-container iframe {
                min-height: 250px; /* Adjust map height for smaller screens */
            }
	    .mission-vision-overlay {
                height: 150px; /* 平板下的高度 */
            }
            .mission-vision-overlay-content {
                font-size: clamp(0.9em, 2.5vw, 1.3em); /* 平板下的文字大小 */
            }
            .mission-vision-overlay-content .initial-text h2 {
                font-size: clamp(1.6em, 3.5vw, 4.0em);
            }
            .mission-vision-overlay-content .initial-text p {
                font-size: clamp(0.8em, 1.5vw, 1.2em);
            }
        }
        @media (max-width: 768px) {
            .header {
                padding: 15px 20px;
                justify-content: space-between;
            }
            .header .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 0;
                right: -100%;
                width: 50%;
                height: 100vh;
                background-color: rgba(0, 0, 0, 0.95);
                padding-top: 80px;
                transition: right 0.3s ease-in-out;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
                box-sizing: border-box;
                justify-content: flex-start;
                align-items: flex-start;
            }
            .header .nav-links.active {
                right: 0;
                display: flex;
            }
            .header .nav-links a {
                margin: 15px 20px;
                font-size: 1.2em;
                width: calc(100% - 40px);
            }
            .hamburger {
                display: flex;
            }
            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }
            .hero-section {
                padding-top: 60px;
                height: 60vh;
            }
            .team-section {
                padding: 60px 20px;
            }
            .team-card {
                width: clamp(250px, 95%, 400px);
                min-width: unset;
            }

            .contact-section {
                padding: 30px 15px; /* Adjust padding for smaller screens */
            }

            .contact-header {
                margin-bottom: 30px;
            }

            .contact-form-container,
            .contact-map-container,
            .contact-info-container {
                padding: 20px; /* Smaller padding for cards */
            }
	    .mission-vision-overlay {
                height: 90px; /* 手機下的高度 */
            }
            .mission-vision-overlay-content {
                font-size: clamp(0.8em, 3vw, 1.2em); /* 手機下的文字大小 */
		text-align: center;
		width: 80%;
            }
            .mission-vision-overlay-content .initial-text h2 {
                font-size: clamp(1.4em, 3vw, 3.5em);
		
            }
            .mission-vision-overlay-content .initial-text p {
                font-size: clamp(0.75em, 1.2vw, 1.1em);
            }
        }
