body {
    font-family: 'Noto Sans TC', sans-serif;
    background-color: #f0fbfc; /* 更淺的冰藍色背景 */
    color: #2b2b2b; /* 調整字體顏色為深灰，與淺藍色背景形成對比 */
    text-align: center;
    padding: 50px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.banner {
    display: block;
    margin: 0 auto; /* 這將使圖片在水平方向上置中 */
    width: 100%; /* 設置寬度為 100%，使其適應父容器的寬度 */
    max-width: 1200px; /* 設置最大寬度，根據需要調整此值 */
    height: auto; /* 自動調整高度，保持圖片的縱橫比 */
}

h1 {
    font-size: 4rem; /* 適當減小字體大小 */
    color: #4d8b8b; /* 使用柔和的藍綠色 */
    font-family: 'Roboto', sans-serif; /* 使用新的字型 */
    letter-spacing: 2px; /* 增加字母間距 */
    margin-bottom: 15px;
    padding-bottom: 10px;
}

h2 {
    font-size: 1.5rem; /* 調整副標題大小 */
    color: #5b9b9b; /* 稍微淺一點的藍綠色 */
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1.5px; /* 增加字母間距 */
    margin-bottom: 25px;
}

.link-container {
    display: flex;
    flex-direction: column; /* 默認為垂直排列 */
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .link-container {
        flex-direction: row; /* 寬度超過768px時才改成橫向排列 */
        justify-content: space-between;
    }
}

.link-item {
    flex: 1;
    margin: 10px 0;
    padding: 20px;
    background-color: #f0fcfc; /* 連結項目背景改為淺藍綠色，增添涼爽感 */
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 123, 123, 0.2); /* 調整陰影顏色，增添清爽感 */
    width: 90%; /* 手機螢幕上元素寬度調整為90% */
}

@media (min-width: 768px) {
    .link-item {
        margin: 0 10px;
        width: auto; /* 寬度超過768px時恢復原本自適應寬度 */
    }
}

.link-item a {
    display: block;
    margin-bottom: 10px;
    padding: 12px 24px;
    background-color: #80ced6; /* 連結按鈕改為淡藍綠色 */
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.link-item a:hover {
    background-color: #66b2b2; /* 滑鼠懸停時按鈕變為稍深藍綠色 */
    transform: translateY(-2px);
}

.link-item img {
    width: 30%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.description {
    font-size: 0.9rem; /* 減小文字大小 */
    color: #6a6a6a;
    line-height: 1.4;
    margin-top: 10px;
}

footer {
    font-size: 0.9rem;
    color: #2b2b2b; /* 調整為深灰色，更符合整體風格 */
    margin-top: 30px;
}

/* 關於我們區域 */
.about-us {
    margin-top: 50px;
    padding: 20px;
    text-align: center;
    background-color: #f0fbfc; /* 使用與 body 相同的背景色 */
}

.about-us h3 {
    font-size: 3rem;
    color: #357a7a;
    margin-bottom: 15px;
}

.about-us p {
    font-size: 1rem;
    color: #6a6a6a;
    line-height: 1.6;
}

.about-us img {
    margin-bottom: 20px;
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
}

/* 會長介紹區域 */
.leader-introduction {
    margin-top: 50px;
    padding: 20px;
    text-align: center;
    background-color: #f0fbfc; /* 使用與 about-us 相同的背景色 */
}

.leader-introduction h3 {
    font-size: 3rem;
    color: #357a7a;
    margin-bottom: 15px;
}

.leader-introduction p {
    font-size: 1rem;
    color: #6a6a6a;
    line-height: 1.6;
    margin-top: 10px;
}

.leader-introduction img {
    margin-bottom: 20px;
    width: 100%;
    max-width: 300px; /* 設置最大寬度 */
    height: auto;
    border-radius: 10px;
}

/* 里程碑區域 */
.milestone {
    margin-top: 50px;
}

.milestone h3 {
    font-size: 3rem;
    color: #357a7a;
    margin-bottom: 20px;
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #80ced6;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s ease forwards;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 40%;
}

.timeline-item::after {
    content: ' ';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    background-color: #80ced6;
    border: 4px solid #f0fbfc; /* 使用與背景一致的淺藍色 */
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.left::after {
    left: -12px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #357a7a;
}

.timeline-item p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #6a6a6a;
}

/* 圖集區域 */
.gallery {
    margin-top: 50px;
}

.gallery h3 {
    font-size: 3rem;
    color: #357a7a;
    margin-bottom: 20px;
}

.gallery-row {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.gallery-row img {
    width: 350px;
    height: 350px;
    margin: 0 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 123, 123, 0.2);
    object-fit: cover; /* 預覽時保持比例填滿容器 */
    transition: transform 0.3s ease, object-fit 0.3s ease; /* 增加過渡效果 */
}

.gallery-row img:hover {
    transform: scale(1.8); /* 滑鼠懸停時放大 */
    object-fit: contain; /* 滑鼠懸停時顯示完整圖片 */
}

/* 針對小螢幕的調整 */
@media (max-width: 600px) {
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.left, .timeline-item.right {
        left: 15%;
    }

    .timeline-item::after {
        left: -8px;
    }

    .gallery-row {
        flex-direction: column;
    }

    .gallery-row img {
        margin-bottom: 10px;
