/* 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/d1.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: linear-gradient(to top, rgba(0, 0, 0, -0.4) 10%, rgba(0, 0, 0, -0.2) 30%, rgba(0, 0, 0, -0.4) 100%),
                        url('../images/a1.webp') no-repeat center center fixed;
            background-size: cover;
            background-blend-mode: multiply;
            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 */
        .cards-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px; /* Unified gap */
            padding: 20px 5%;
            margin-bottom: 50px;
        }

        /* Card Base Styles */
        .card {
            padding: 30px 20px;
            flex: 1;
            min-width: 300px;
            max-width: 550px; /* Max-width for two cards side-by-side */
            display: flex; /* Changed to flex for side-by-side content */
            align-items: center; /* Align items vertically in the middle */
            gap: 20px; /* Gap between image and text */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-sizing: border-box;
            text-align: left; /* Default text alignment for content */
        }

        .team-card { /* Specific overrides for team card max-width */
            width: 100%; /* Make card fill its parent container width */
            flex-direction: column; /* Keep team cards stacked vertically */
            text-align: center; /* 將文字置中 */
            padding: 20px 30px;
            border-radius: 8px;
            box-shadow: none; /* Removed redundant box-shadow */
            min-width: unset; /* Revert min-width for team-card */
            max-width: 80%; /* Allow two cards to fit side-by-side with gap */
	   
        }
	.team-card h2 {
	flex-direction: column;
	align-items: center; 
	max-width: 800px; 
	margin-left: auto; 
	margin-right: auto;
	   
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
        }

        /* Card Image */
        .card-image {
            width: clamp(100px, 10vw, 150px);
            height: clamp(100px, 10vw, 150px);
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
        }

        .team-card .card-image { /* Specific override for team card image height, revert to original behavior */
            width: 100%;
            height: clamp(150px, 30vw, 400px);
            margin-bottom: 20px;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        /* Card Content for text */
        .card-content {
            flex-grow: 1; /* Allow content to take remaining space */
        }

        /* Card Headings */
        .card h3 {
            font-size: clamp(1.4em, 2.5vw, 2.0em);
            margin-top: 0;
            margin-bottom: 10px;
            color: #444444;
        }

        .team-card h3 { /* Specific override for team card heading font size */
            font-size: clamp(1.4em, 2.5vw, 4.4em);
        }

        /* Card Description */
        .card .card-description {
            font-size: clamp(0.85em, 1.3vw, 1.0em);
            line-height: 1.7;
            color: #eeeeee;
            margin-bottom: 0;
        }

        .team-card .card-description { /* Specific override for team card description font size */
            font-size: clamp(0.85em, 1.3vw, 3.85em);
        }
        
        /* 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: 0 auto;
        }

        /* 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;
            text-decoration: none; /* Ensure link is not underlined */
        }
        .contact-email-section a:hover {
            color: #00bcd4; /* Added hover effect for the link */
        }

        /* 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);
        }
        
        .mission-vision-overlay {
            position: relative;
            width: 80%;
            height: 200px;
            background-image: url('../images/e2.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;
            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, box-shadow 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
        }

        /* Common overlay hover effect */
        .mission-vision-overlay:hover::before {
            background-color: rgba(0, 0, 0, 0.8);
        }

        /* Specific hover effect for vision-section-b1 */
        .mission-vision-overlay.vision-section-b1:hover::before {
            box-shadow: none;
            background-color: transparent;
        }

        .mission-vision-overlay-content {
            position: relative;
            z-index: 2;
            max-width: 100%;
            padding: 20px;
            font-size: clamp(1em, 2vw, 1.5em);
            line-height: 1.8;
            overflow: hidden;
	    width: 80%;
        }

        /* 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);
            margin-bottom: 20px;
            color: #edffed;
            text-shadow: 0 0 3px rgba(0, 255, 255, 0.5);
        }

        .mission-vision-overlay-content .initial-text p {
            font-size: clamp(0.9em, 1.8vw, 3.9em);
            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%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            box-sizing: border-box;
            padding: 20px;
            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;
        }

        /* SPECIFICALLY FOR THE TEAM CARDS */
        .team-cards-container {
            flex-direction: row; /* Change to row for side-by-side */
            justify-content: center; /* Center the cards horizontally */
            max-width: none; /* Remove max-width constraint for this specific container */
            margin-left: auto; /* Revert margin-left */
            margin-right: auto; /* Revert margin-right */
        }

        /* Contact Section */
        .contact-info-container { /* This class is present in CSS but not used in the provided HTML. */
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
        }

        .contact-item { /* This class is present in CSS but not used in the provided HTML. */
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #ffffff;
            text-decoration: none;
            flex: 1;
            min-width: 250px;
            max-width: 350px;
        }

        .contact-item .icon-circle { /* This class is present in CSS but not used in the provided HTML. */
            background-color: #000;
            border-radius: 50%;
            width: clamp(80px, 10vw, 120px);
            height: clamp(80px, 10vw, 120px);
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 15px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        .contact-item .icon-circle p { /* This class is present in CSS but not used in the provided HTML. */
            font-size: clamp(1.2em, 2.5vw, 2em);
            color: #ffffff;
            margin: 0;
        }

        .contact-item .icon-circle img { /* This class is present in CSS but not used in the provided HTML. */
            width: clamp(40px, 5vw, 60px);
            height: clamp(40px, 5vw, 60px);
            filter: invert(100%);
        }

        .contact-item p,
        .contact-item a { /* This class is present in CSS but not used in the provided HTML. */
            font-size: clamp(1em, 1.8vw, 1.2em);
            margin: 0;
            line-height: 1.5;
            word-break: break-all;
            text-align: center;
            padding: 0 10px;
            color: #ffffff;
            text-decoration: none;
        }

        .contact-item a:hover { /* This class is present in CSS but not used in the provided HTML. */
            color: #444444;
        }

        /* 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;
            }
            .mission-vision-overlay {
                height: 150px; /* Tablet height */
            }
            .mission-vision-overlay-content {
                font-size: clamp(0.9em, 2.5vw, 1.3em); /* Tablet text size */
                text-align: center;
                width: 80%;
            }
            .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);
            }
            /* Adjusted for tablet for two columns */
            .team-cards-container {
                flex-direction: row;
                justify-content: center;
                gap: 20px; /* Adjust gap for smaller screens */
            }
            .team-card {
                max-width: 48%; /* Adjust width to fit two in a row */
                min-width: 250px; /* Ensure a minimum size */
                text-align: center; /* Ensure text is centered on tablet too */
            }
        }
        @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;
                max-width: 100%; /* On mobile, stack them again */
                text-align: center; /* Ensure text is centered on mobile too */
            }   
            .mission-vision-overlay {
                height: 90px; /* Mobile height */
            }
            .mission-vision-overlay-content {
                font-size: clamp(0.8em, 3vw, 1.2em); /* Mobile text size */
                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);
            }
            /* Adjusted for mobile to stack again */
            .team-cards-container {
                flex-direction: column;
                align-items: center;
            }
        }
