.services {
    position: relative;
    left: 100px;
    top: 110px;
    font-size: 20;
    border: thick double black;
    padding: 10px;
    
    width: 250px;   
}

.services div ul li {
    font-weight: bold;
}

.region {
    position: relative;
    left: 170px;
    top: 110px;
    font-size: 20;
    border: thick double black;
    padding: 10px;
    width: 880px;
    height: 190px;  
}

.region div ul li {
    font-weight: bold;
}

.one {
    display: flex;
}

.one .services h2 {
    margin-left: 20px;
}

.one .region h2 {
    margin-left: 20px;
}

.spend {
    position: relative;
    left: 449.5px;
    font-size: 20;
    border: thick double black;
    padding: 10px;
    width: 880px; 
    padding-bottom: 60px;
    
}

.note {
    padding: 10px;
    position: relative;
    right: 90px;
    line-height: 32px;
}

.two {
    /* 公用樣式集中管理 */
    display: flex;

    .note, .spend div {
        font-weight: bold;
    }

    .spend div {
        margin-left: 40px;

        /* 內部元素縮排調整 */
        p, h2 { margin-left: -5px; }
        
        li { margin-left: 10px; }

        h2 { margin-top: 12px; }
    }
}

.workplace {
    left: 100px;
    top: -211px;
    border: thick double black;
    width: 240px;
    padding: 10px;
    position: relative;
    line-height: 20px;
    padding-left: 20px;
    font-weight: bold;
}

.under {
    background-color: #333;
    color: white;
    position: fixed;
    bottom:0px;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.highlight {
    color: #E60F0F; 
}


/* 1. 調整導覽列容器 */
nav {
    background-color: #333; /* 您的導覽列底色 */
    width: 100%;
    /* 增加上下內距，確保裡面有空間讓文字「跳動」而不頂到邊框 */
    padding: 15px 0; 
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    height: 33px;
}

/* 2. 導覽列選單 */
.nav-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-container ul li {
    display: inline-block;
    margin: 0 10px;
    /* transition 放在這裡控制整體的跳動 */
    transition: transform 0.2s ease; 
}

/* 3. 連結文字樣式 */
.nav-container ul li a {
    text-decoration: none;
    color: white; /* 保持白色 */
    padding: 8px 16px; /* 增加一點左右內距讓背景色更好看 */
    border-radius: 4px;
    display: block;
    transition: background-color 0.3s ease;
}

/* 4. Hover 效果 */
.nav-container ul li:hover {
    /* 往上跳動 */
    transform: translateY(-5px); 
}

.nav-container ul li a:hover {
    /* 背景顏色：使用透明度白，讓它跟底色融合 */
    background-color: #333; 
    color: white; /* 字體依舊白色 */
}

.ml2 {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    letter-spacing: 4px; /* 拉開字距會顯得更大器 */
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

html {
  scroll-behavior: smooth;
}