
    /* 自訂 CSS */
    body {
        font-family: 'Noto Sans TC', sans-serif;
    }
    .hero-bg {
        background: linear-gradient(to right, #2f855adb, #68d39195);
        color: white;
    }
    .header-bg {
        position: relative;
        min-height: 300px; /* Increased height to accommodate content */
        background-color: #f7f8f2; 
        background: radial-gradient(circle, #fbfbf9 0%, #dce8b6 100%); /* Gradient layer */
    }
    .header-content {
        background-color: rgba(39, 103, 73, 0.7); 
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        z-index: 3; 
        text-align: center;
        padding: 2rem;
        color: rgb(255, 255, 255);
        opacity: 0; /* For fade-in animation */
        transform: translateY(20px); /* Start slightly below */
        animation: fadeInUp 1s ease-out forwards;
    }
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .header-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('image/name.png'); 
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 2;
    }
    .section-title {
        position: relative;
        display: inline-block;
        margin-bottom: 2rem;
        font-size: 2.25rem; /* Changed to text-4xl equivalent */
        font-weight: 700; /* Bolder weight */
        opacity: 0; /* Start hidden for animation */
        transform: translateX(-20px); /* Start slightly left */
        transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth transition */
    }
    .section-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 50%;
        height: 4px;
        background-color: #2f855a;
        border-radius: 2px;
    }
    .section-title.visible {
        opacity: 1;
        transform: translateX(0); /* Slide in to original position */
    }
    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
    .card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%; /* Ensure the card stretches to the full height */
    }
    .card:hover {
        transform: translateY(-5px) scale(1.02); /* Added slight scale on hover */
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    .hashtag {
    color: #3b82f6;
    font-weight: 500;
    margin-right: 0.25rem;
    }

    .hashtag::before {
        content: "#";
    }

    .job-card {
        position: relative;
        overflow: hidden;
    }
    .job-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 100%;
        background-image: url('');
        background-size: cover;
        background-position: center;
        opacity: 0.2;
        z-index: 0;
    }
    .work-grid {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 2rem;
        align-items: stretch; /* Ensure grid items stretch to match tallest */
    }
    @media (min-width: 768px) {
        .work-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }
    nav a {
        transition: color 0.3s ease;
    }
    nav a:hover {
        color: #2f855a;
    }
    .btn-primary {
        background: linear-gradient(to right, #2f855aa7, #68d391);
        transition: background 0.3s ease, transform 0.3s ease;
    }
    .btn-primary:hover {
        background: linear-gradient(to right, #276749a7, #4ade80);
        animation: pulse 0.5s infinite alternate;
    }
    @keyframes pulse {
        to {
            transform: scale(1.05);
        }
    }
    .footer-bg {
        background-color: #276749;
    }
    .link-hover:hover {
        color: #68d391;
    }
    .h-30 {
        height: 15rem;
    }
    .h-10 {
        height: 2.5rem;
    }