.navbar {
/* ✅ 移除導覽列與跑馬燈之間的空白 */
.navbar {
margin-bottom: 0 !important;
padding-bottom: 0 !important;
}
/* ✅ 減少跑馬燈與導覽列之間的距離 */
.carousel-container {
margin-top: -20px !important; /* 減少空隙 */
padding-top: 0 !important;
}
/* ✅ 確保跑馬燈區塊不會過高 */
.carousel-container img {
max-height: 400px; /* 調整圖片高度 */
object-fit: cover; /* 確保圖片不變形 */
}