/* 重置樣式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans TC', Microsoft JhengHei, Verdana, sans-serif;
}

body {
    font-family: 'Noto Sans TC', Microsoft JhengHei, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to bottom, rgba(254, 254, 246, .8), rgba(254, 254, 246, .8));
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/pattern02.png);
    background-size: 180px 180px;
    background-repeat: repeat;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

header .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

.main-nav .container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

/* 內頁通用樣式 */
.page-container {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.5);
}

/* 圖片輪播樣式 */
.image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f9fa;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-images {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.carousel-image {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: #f8f9fa;
    color: #6c757d;
    border-radius: 8px;
    font-size: 14px;
}

/* 月曆中不可選日期的樣式提示 */
.calendar-day.disabled {
    position: relative;
}

.calendar-day.disabled:hover {
    background-color: rgba(234, 115, 147, 0.1);
    border-radius: 4px;
}

.calendar-day.disabled:hover::after {
    content: "點擊查看說明";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
}

.time-slot.closed:hover::after,
.time-slot.booked:hover::after {
    content: "點擊查看說明";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
}

.time-slot.closed,
.time-slot.booked {
    position: relative;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid rgba(234,115,147,1);
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: rgba(37,81,90,1);
    margin-bottom: 10px;
}

.page-title .en {
    font-size: 20px;
    color: rgba(86, 181, 201, 1);
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.main-content {
    flex: 2;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid rgba(247,182,82,0.3);
}

.main-content h2 {
    color: rgba(37,81,90,1);
    font-size: 24px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(234,115,147,0.3);
}

.main-content h3 {
    color: rgba(37,81,90,1);
    font-size: 20px;
    margin: 20px 0 10px 0;
}

.main-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.main-content ul, .main-content ol {
    margin: 15px 0;
    padding-left: 20px;
    list-style: inherit;
}

.main-content li {
    margin-bottom: 8px;
    color: #555;
}

.sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid rgba(247,182,82,0.3);
}

.sidebar-widget h3 {
    color: rgba(37,81,90,1);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(234,115,147,0.3);
}

.related-links {
    list-style: none;
}

.related-links li {
    margin-bottom: 8px;
}

.related-links a {
    color: rgba(86, 181, 201, 1);
    font-weight: 500;
    padding: 5px 0;
    display: block;
    transition: all 0.3s ease;
}

.related-links a:hover {
    color: rgba(234,115,147,1);
    padding-left: 10px;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.contact-item img {
    width: 30px;
    height: 30px;
}

.contact-item strong {
    color: rgba(37,81,90,1);
    display: block;
    margin-bottom: 3px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.service-hours p {
    color: #666;
    line-height: 1.6;
}

.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 新聞/活動列表樣式 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-list-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid rgba(247,182,82,0.3);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.news-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: rgba(247,182,82,1);
}

.news-list-item .news-image {
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-list-item .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list-item .news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-list-item h3 {
    color: rgba(37,81,90,1);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-list-item .news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #888;
}

.news-list-item .news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-list-item .read-more {
    background: rgba(234,115,147,1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.news-list-item .read-more:hover {
    background: #d65a7a;
    transform: translateY(-1px);
}

/* 分頁樣式 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a, .pagination span {
    padding: 8px 12px;
    border: 1px solid rgba(234,115,147,0.3);
    border-radius: 5px;
    color: rgba(37,81,90,1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: rgba(234,115,147,0.1);
    border-color: rgba(234,115,147,1);
}

.pagination .current {
    background: rgba(234,115,147,1);
    color: #fff;
    border-color: rgba(234,115,147,1);
}

/* 頭部樣式 */
header {
    background-color: rgba(234,115,147,1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    overflow: visible;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    width: 100%;
}

.logo h1 {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
}

.logo p {
    font-size: 23px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0px;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.logo a:hover {
    text-decoration: none;
    color: inherit;
}

.logo a h1, .logo a p {
    margin: 0;
}

.phone {
    display: flex;
    align-items: center;
}

.phone img {
    margin-right: 10px;
}

.phone span {
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
}

/* 導航選單樣式 */
.main-nav {
    position: relative;
    height: 70px;
}

.main-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: -9999px;
    right: -9999px;
    bottom: 0;
    background: 
    linear-gradient(315deg, rgba(245,245,245,.001) 75%, rgba(245,245,245,1) 0) -40px 0,
    linear-gradient(45deg, rgba(245,245,245,.001) 75%, rgba(245,245,245,1) 0) -40px 0,
    linear-gradient(135deg, rgba(252,252,252,1) 50%, rgba(252,252,252,.001) 0) 0 0,
    linear-gradient(45deg, rgba(235,235,235,1) 50%, rgba(245,245,245,1) 0) 0 0 rgba(245,245,245,1);
    background-size: 80px 80px;
    z-index: -1;
}

.menu-toggle {
    display: none;
}

.nav-menu {
    display: flex;
    justify-content: space-around;
    position: relative;
    color: #333;
    padding: 0;
    margin: 0;
    height: 70px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
    height: 70px;
    display: flex;
    align-items: center;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0 15px;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(91,74,66,1);
    text-align: left;
    white-space: nowrap;
}

.nav-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item img {
    margin-right: 10px;
    width: 35px;
    height: auto;
}

.nav-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.nav-text > span:first-child {
    margin-bottom: -2px;
}

.nav-en {
    font-size: 20px;
    opacity: 0.6;
    font-weight: 300;
    color: rgba(86,181,201,1);
    margin-top: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: #FFF2EF;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: none;
    border-top: 2px solid rgba(247,182,82,1);
    border-left: 1px solid rgba(247,182,82,0.5);
    border-right: 1px solid rgba(247,182,82,0.5);
    border-bottom: 1px solid rgba(247,182,82,0.5);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    border-bottom: 2px solid rgba(247,182,82,1);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    font-size: 25px;
    font-weight: 700;
    color: rgba(91, 74, 66, 1);
    letter-spacing: 2px;
    text-align: center;
}

.dropdown-menu li a:hover {
    background-color: rgba(247,182,82,0.1);
}

.nav-menu > li > a:hover {
    background-color: rgba(234,115,147,0.1);
}

/* 主要內容區域 */
main {
    padding: 0px 0;
    max-width: 1440px;
    margin: 0 auto;
}

/* 首頁資訊區塊 */
.info-section {
    margin-bottom: 0px;
    background: linear-gradient(to bottom, rgba(255, 254, 249, 0.9), rgba(255, 254, 249, 0.9)), url(../images/pattern01.png), #FFFEF9;
    background-size: cover, 180px 180px, cover;
    background-repeat: no-repeat, repeat, no-repeat;
    padding: 35px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.info-section .container {
    display: flex;
}

.news-block {
    width: 60%;
    padding-right: 35px;
}

.news-tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid #ea7393;
}

.news-tab {
    padding: 4px 18px;
    background-color: transparent;
    cursor: pointer;
    margin-right: 0;
    font-size: 30px;
    font-weight: 600;
    color: #584D47;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.news-tab.active {
    background-color: transparent;
    color: #ea7393;
    border-bottom: 6px solid #ea7393;
    font-weight: 700;
}

.news-content {
    display: none;
}

.news-content.active {
    display: block;
}

.news-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.news-item .news-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.news-item .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item .news-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
    padding-bottom: 30px;
    overflow: hidden;
}

.news-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #ea7393;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 0;
}

.news-item p {
    font-size: 18px;
    color: #584D47;
    line-height: 1.5;
    margin-bottom: 10px;
    overflow: hidden;
    white-space: normal;
    width: 100%;
    min-width: 0;
    position: relative;
    word-wrap: break-word;
    word-break: break-word;
}

.news-content-wrapper {
    overflow: hidden;
}

.news-item p .more-text {
    position: static;
    background: #fff;
    padding-left: 5px;
    color: #584D47;
    display: inline;
}



.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #584D47;
    margin-bottom: 8px;
}

.news-item .date {
    color: #584D47;
    font-size: 16px;
}

.news-item .views {
    color: #584D47;
    font-size: 16px;
}

.news-item .btn {
    background-color: #ea7393;
    color: #fff;
    padding: 0px 20px;
    border-radius: 20px;
    font-weight: 300;
    font-size: 18px;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 0px;
    right: 5px;
}

.news-item .btn:hover {
    background-color: #d65a7a;
    transform: translateY(-1px);
}

.news-more {
    text-align: center;
    margin-top: 25px;
}

.news-more .btn {
    background-color: #ea7393;
    color: #fff;
    padding: 15px 35px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.news-more .btn:hover {
    background-color: #d65a7a;
    transform: translateY(-2px);
}

.about-block {
    width: 40%;
    padding-left: 35px;
}

.about-content {
    padding: 0px;
}

.about-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-content h3 {
    font-size: 24px;
    color: #61B5C8;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.4;
}

.about-content p {
    font-size: 16px;
    color: #666;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-content .btn {
    background-color: #ea7393;
    color: #fff;
    padding: 5px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    margin-left: auto;
    width: fit-content;
}

.about-content .btn:hover {
    background-color: #d65a7a;
    transform: translateY(-2px);
}

.section-title {
    font-size: 30px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(234,115,147,1);
    padding-bottom: 10px;
    position: relative;
    font-family: 'Noto Sans TC', Microsoft JhengHei, Verdana, sans-serif;
    font-weight: 700;
    color: #274944;
}

.section-title .en {
    font-size: 20px;
    color: #61B5C8;
    margin-left: 0px;
    font-weight: 400;
}

/* 場地介紹區塊 */
.place-section {
    background: linear-gradient(to bottom, rgb(227 244 249 / 30%), rgb(227 244 249 / 30%));
    padding: 40px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.place-section .section-title {
    text-align: center;
    border-bottom: none;
    margin-bottom: 30px;
    color: rgba(37,81,90,1);
}

.place-section .section-title .en {
    color: rgba(86, 181, 201, 1);
    ;
    font-weight: 400;
    display: block;
    margin-top: -10px;
}

.place-images {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 20px;
    gap: 20px;
}

.place-image {
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(247,182,82,1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.place-image:nth-child(1) {
    width: 25%;
}

.place-image:nth-child(2) {
    width: 35%;
}

.place-image:nth-child(3) {
    width: 25%;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.place-info {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(234,115,147,1);
    color: #fff;
    border-radius: 25px;
    margin: 10px 5px;
    font-family: 'Noto Sans TC', Microsoft JhengHei, Verdana, sans-serif;
    font-weight: 500;
}

/* 服務單位區塊 */
.partner-section {
    background: rgba(255,242,239,1);
    padding: 40px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.partner-section .section-title {
    text-align: center;
    border-bottom: none;
    margin-bottom: 30px;
    color: rgba(37,81,90,1);
}

.partner-section .section-title .en {
    color: rgba(86, 181, 201, 1);
    font-weight: 400;
    display: block;
    margin-top: -10px;
}

.partner-slider {
    position: relative;
    margin-bottom: 30px;
}

.partner-items {
    display: flex;
    overflow: hidden;
    gap: 20px;
    justify-content: center;
}

.partner-item {
    flex: 0 0 calc(33.333% - 14px);
    max-width: 350px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.partner-item a {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.partner-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    border-bottom: 2px solid rgba(255,247,157,1);
}

.partner-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-item h3 {
    padding: 15px 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background: #84CCC9;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.partner-nav button {
    background: rgba(234,115,147,0.9);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.partner-nav button:hover {
    background: rgba(234,115,147,1);
    transform: scale(1.1);
}

.partner-nav button:disabled {
    background: rgba(200,200,200,0.5);
    cursor: not-allowed;
    transform: none;
}

.partner-nav button:disabled:hover {
    background: rgba(200,200,200,0.5);
    transform: none;
}

.partner-info {
    text-align: center;
    margin-top: 30px;
}

.partner-info p {
    font-size: 16px;
    color: rgba(37,81,90,1);
    margin-bottom: 25px;
    line-height: 1.6;
}

.partner-info .btn {
    background-color: rgba(234,115,147,1);
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 0 10px;
    display: inline-block;
}

.partner-info .btn:hover {
    background-color: #d65a7a;
    transform: translateY(-2px);
}

/* 場地借用區塊 */
.borrow-section {
    margin-bottom: 0px;
    background: linear-gradient(to bottom, rgba(255, 254, 249, 0.9), rgba(255, 254, 249, 0.9)), url(../images/pattern01.png), #FFFEF9;
    background-size: cover, 180px 180px, cover;
    background-repeat: no-repeat, repeat, no-repeat;
    padding: 40px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.borrow-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.borrow-section .section-title {
    text-align: center;
    border-bottom: none;
    margin-bottom: 30px;
    color: rgba(37,81,90,1);
}

.borrow-section .section-title .en {
    color: rgba(86, 181, 201, 1);
    font-weight: 400;
    display: block;
    margin-top: -10px;
}

.borrow-content {
    display: flex;
    align-items: stretch;
    gap: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 2px solid rgba(247,182,82,1);
}

.borrow-image {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
}

.borrow-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0 0 0 15px;
}

.borrow-info {
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
}



.borrow-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    gap: 15px;
}

.borrow-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    gap: 15px;
    position: relative;
}

.borrow-images img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.borrow-images .separator {
    width: 1px;
    height: 80px;
    background: repeating-linear-gradient(
        to bottom,
        #333 0px,
        #333 4px,
        transparent 4px,
        transparent 8px
    );
}

.borrow-info p {
    font-size: 15px;
    color: rgba(37,81,90,1);
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.borrow-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.borrow-info .btn {
    background-color: rgba(234,115,147,1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.borrow-info .btn:hover {
    background-color: #d65a7a;
    transform: translateY(-2px);
}

.borrow-section .info-boxes {
    margin-top: 40px;
    display: flex;
    gap: 40px;
    justify-content: center;
    width: 100%;
}

.borrow-section .info-box-wrapper {
    flex: 1;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.borrow-section .info-title {
    color: rgba(37,81,90,1);
    font-size: 27px;
    font-weight: 700;
    margin: 0;
    text-align: left;
    align-self: flex-start;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    line-height: 1;
}

.borrow-section .info-title .en {
    color: rgba(86, 181, 201, 1);
    font-size: 20px;
    font-weight: 300;
    display: inline;
    margin: 0;
    text-transform: uppercase;
}

.borrow-section .info-box {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 15px 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(247,182,82,1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.borrow-section .info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.borrow-section .info-image {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.borrow-section .info-image img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.borrow-section .info-box p {
    color: #5B4A42;
    font-size: 20px;
    line-height: 1.4;
    margin: 0;
    font-weight: 700;
}

.borrow-section .info-box-wrapper .btn {
    background-color: rgba(234,115,147,1);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
}

.borrow-section .info-box-wrapper .btn:hover {
    background-color: #d65a7a;
    transform: translateY(-2px);
}

/* 說明區塊 - 已合併到場地借用區塊 */

/* 相關連結區塊 */
.links-section {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    box-shadow: 0 -8px 16px rgba(0,0,0,0.1);
}

.links-section .section-title {
    text-align: center;
    border-bottom: none;
    margin-bottom: 30px;
    color: rgba(37,81,90,1);
}

.links-section .section-title .en {
    color: rgba(86, 181, 201, 1);
    font-weight: 400;
    display: block;
    margin-top: -10px;
}

.links-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.link-item {
    flex: 0 0 calc(25% - 15px);
    max-width: 300px;
}

.link-item a {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    border: 2px solid #F7F6BF;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    gap: 15px;
}

.link-item a:hover {
    background-color: #F7F6BF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.link-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.link-item span {
    color: #56B5C9;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

/* 尾部樣式 */
footer {
    background: linear-gradient(to bottom, rgba(241,155,158,1), rgba(218,100,112,1));
    color: #fff;
    padding: 20px 0;
    text-align: left;
    box-shadow: 0px -8px 8px -5px rgba(170,170,170,1);
}

.footer-container {
    padding-left: 25px;
}

.footer-container * {
    letter-spacing: 3px;
    line-height: 1.2;
}

footer * {
    color: #fff;
}

.footer-top {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    margin-right: 10px;
    width: 48px;
    height: auto;
}

.footer-logo h2 {
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
}

.footer-info {
    text-align: left;
    margin: 0;
    padding-left: 0;
    max-width: 100%;
}

.contact-line,
.address-line,
.service-time {
    font-size: 20px;
    margin: 5px 0;
    letter-spacing: 1px;
}

.contact-address-line {
    font-size: 20px;
    margin: 5px 0;
    letter-spacing: 1px;
    display: flex;
    flex-wrap: wrap;
}

.separator {
    display: inline-block;
    width: 250px;
}

.counter-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 10px 0;
    position: relative;
}

.counter-section p {
    margin: 0;
    font-size: 20px;
    letter-spacing: 1px;
}

.counter img {
    height: 20px;
    margin-right: 2px;
    vertical-align: middle;
}

.privacy-policy {
    color: #fff;
    font-size: 20px;
    letter-spacing: 1px;
    text-decoration: none;
    margin-left: 20px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    margin-top: 10px;
}

.tls-notice {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
    font-size: 18px;
}

.tls-notice img {
    width: 24px;
    height: auto;
    margin-right: 8px;
}

.copyright {
    font-size: 18px;
    letter-spacing: 1px;
    text-align: left;
}

/* 回到頂部按鈕 */
.back-to-top {
    position: fixed;
    bottom: 0px;
    right: 10px;
    display: none;
}

/* 隱私權保護政策彈窗 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    margin: 3% auto;
    padding: 0;
    border-radius: 15px 0 0 15px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid #e0e0e0;
}

.modal-header {
    background: linear-gradient(135deg, rgba(241,155,158,1) 0%, rgba(218,100,112,1) 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 15px 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.close {
    color: #fff;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.close:hover {
    color: #f0f0f0;
    transform: scale(1.1);
}

.privacy-content {
    padding: 30px;
    line-height: 1.8;
    color: #333;
}

.privacy-intro {
    font-size: 16px;
    margin-bottom: 25px;
    padding: 15px;
    background-color: #f8f9fa;
    border-left: 4px solid rgba(241,155,158,1);
    border-radius: 5px;
    color: #555;
}

.privacy-section {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.privacy-section h3 {
    color: rgba(241,155,158,1);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(241,155,158,0.3);
    letter-spacing: 1px;
}

.privacy-section p {
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
}

.privacy-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-section ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* 滾動條美化 */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(241,155,158,0.6);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(241,155,158,0.8);
}

/* 中心介紹頁面專用樣式 */
.intro-page {
    background: rgba(255,242,239,1);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.intro-page .page-container {
    background: transparent;
    padding: 40px 0;
}

.intro-page .page-header {
    border-bottom: none;
    margin-bottom: 10px;
    padding-bottom: 0px;
}

.intro-page .page-title {
    color: rgba(37,81,90,1);
    font-size: 32px;
    margin-bottom: 5px;
}

.intro-page .page-title .en {
    color: rgba(86,181,201,1);
    font-size: 18px;
    width: 100%;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 0;
    letter-spacing: 4px;
}

.intro-page .about-section {
    margin-bottom: 40px;
}

.intro-page .about-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: transparent;
    border-radius: 0;
    padding: 10px 0;
    box-shadow: none;
    border: none;
}

.intro-page .about-text {
    flex: 0 0 60% !important;
    width: 60% !important;
}

.intro-page .about-text h2 {
    color: rgba(234,115,147,1);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

.intro-page .about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 20px;
    letter-spacing: 2px;
}

.intro-page .undertaking-unit {
    color: #666;
    font-size: 14px;
    font-style: italic;
    margin-top: 20px;
}

.intro-page .about-image {
    flex: 0 0 40% !important;
    width: 40% !important;
    margin-bottom: 0 !important;
}

.intro-page .about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid rgba(255,247,157,1);
}

.intro-page .service-section {
    margin-bottom: 0px;
    background: transparent;
    border-radius: 0;
    padding: 0px 0;
    box-shadow: none;
    border: none;
}

.intro-page .service-description {
    margin-bottom: 25px;
}

.intro-page .service-description p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 20px;
    letter-spacing: 2px;
}

.intro-page .contact-info-list {
    margin-bottom: 25px;
}

.intro-page .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
}

.intro-page .arrow-icon {
    color: #fff;
    background: rgba(234,115,147,1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
    font-size: 18px;
}

.intro-page .contact-text {
    color: #555;
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 2px;
}

.intro-page .action-buttons {
    display: flex;
    gap: 20px;
}

.intro-page .action-buttons .btn {
    background-color: rgba(234,115,147,1);
    color: #fff;
    padding: 5px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.intro-page .action-buttons .btn:hover {
    background-color: #d65a7a;
    transform: translateY(-2px);
}

.intro-page .links-section {
    background: transparent;
    border-radius: 0;
    padding: 40px 0;
    box-shadow: none;
    border: none;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100%;
    position: relative;
}

.intro-page .links-title {
    text-align: left;
    color: rgba(234,115,147,1);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.intro-page .links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.intro-page .link-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    transition: none;
    box-shadow: none;
}

.intro-page .link-item:hover {
    background-color: transparent;
    transform: none;
    box-shadow: none;
}

.intro-page .link-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.intro-page .link-text {
    color: rgba(86, 181, 201, 1);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
}

.intro-page .link-text:hover {
    color: rgba(234,115,147,1);
    text-decoration: underline;
}

.intro-page .simple-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.intro-page .simple-links-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.intro-page .simple-links-list img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.intro-page .simple-links-list a {
    color: rgba(91,74,66,1);
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.intro-page .simple-links-list a:hover {
    color: rgba(234,115,147,1);
    text-decoration: underline;
}

/* 響應式設計 */
@media (max-width: 992px) {
    .info-section {
        padding: 25px 0;
    }
    
    .info-section .container {
        flex-direction: column;
    }
    
    .news-block, .about-block {
        width: 100%;
        padding-right: 0;
        margin-bottom: 35px;
    }
    
    .about-block {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-top: 35px;
    }
    
    .news-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .news-item .news-image {
        width: 100%;
        height: 180px;
    }
    
    .news-item .btn {
        position: static;
        align-self: flex-start;
        margin-top: 15px;
    }
    
    .news-item .news-content-wrapper {
        padding-bottom: 0;
        overflow: visible;
        min-height: auto;
    }
    
    .borrow-section {
        padding: 30px 0;
    }
    
    .borrow-content {
        flex-direction: column;
        gap: 0;
    }
    
    .borrow-image, .borrow-info {
        width: 100%;
    }
    
    .borrow-image img {
        border-radius: 15px 15px 0 0;
        height: 200px;
    }
    
    .borrow-info {
        padding: 30px;
    }
    
    .borrow-images {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .borrow-images img {
        width: 60px;
        height: 60px;
    }
    
    .borrow-section .info-boxes {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .borrow-section .info-box-wrapper {
        max-width: 100%;
    }
    
    .borrow-section .info-title {
        text-align: center;
        align-self: center;
        font-size: 22px;
        gap: 6px;
    }
    
    .borrow-section .info-title .en {
        font-size: 16px;
    }
    
    .borrow-section .info-box {
        padding: 12px 20px;
    }
    
    .borrow-section .info-box p {
        font-size: 16px;
    }
    
    .borrow-section .info-image {
        width: 45px;
        height: 45px;
    }
    
    .borrow-section .info-image img {
        width: 28px;
        height: 28px;
    }
    
    /* 說明區塊已合併到場地借用區塊 */
    
    .links-items {
        gap: 15px;
    }
    
    .link-item {
        flex: 0 0 calc(50% - 7.5px);
    }
    
    .link-item a {
        padding: 15px 20px;
    }
    
    .link-item span {
        font-size: 22px;
    }
    
    /* 內頁響應式 */
    .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .main-content, .sidebar {
        width: 100%;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .news-list-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .news-list-item .news-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .partner-section {
        padding: 30px 0;
    }
    
    .partner-items {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .partner-item {
        flex: 0 0 100%;
        max-width: 300px;
    }
    
    .partner-nav {
        display: none;
    }
    
    .header-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        min-height: 50px;
    }
    
    .logo {
        margin-bottom: 0;
        text-align: left;
        flex: 1;
    }
    
    .logo h1 {
        font-size: 26px;
        letter-spacing: 0.5px;
        margin: 0;
        line-height: 1.2;
    }
    
    .logo p {
        font-size: 15px;
        letter-spacing: 0px;
        margin: 0;
        line-height: 1.2;
    }
    
    .phone {
        display: none;
    }
    
    .menu-toggle {
        display: block;
        padding: 8px;
        cursor: pointer;
        position: relative;
        z-index: 2;
        flex-shrink: 0;
        order: 3;
    }
    
    .menu-toggle img {
        width: 37px;
        height: 37px;
    }
    
    .main-nav {
        height: auto;
    }
    
    .nav-menu {
        flex-direction: column;
        display: none;
        height: auto;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu .dropdown-menu {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        display: none !important;
        margin-top: 10px;
        padding: 0;
        background: none !important;
        border: none !important;
    }
    
    .nav-menu .dropdown-menu.active {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 10px;
        justify-content: flex-end;
        padding-right: 20px;
    }
    
    .nav-menu .dropdown-menu li {
        flex: 0 0 calc(50% - 15px) !important;
        margin: 0 !important;
        border-bottom: none !important;
    }
    
    .nav-menu .dropdown-menu li a {
        display: block !important;
        padding: 10px 6px !important;
        text-align: center !important;
        color: #584D47 !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(247, 182, 82, 0.3) !important;
        letter-spacing: normal !important;
        line-height: 1.3 !important;
    }
    
    .nav-item {
        justify-content: flex-start;
    }
    
    .nav-menu > li {
        height: auto;
    }
    
    .nav-menu > li > a {
        height: auto;
        padding: 12px 10px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    
    
    .nav-menu > li.dropdown.active > a::after {
        transform: rotate(180deg);
    }
    
    .borrow-section {
        padding: 20px 0;
    }
    
    .borrow-section .container {
        max-width: 95%;
    }
    
    .borrow-content {
        border-radius: 10px;
    }
    
    .borrow-image img {
        height: 150px;
    }
    
    .borrow-info {
        padding: 20px;
        gap: 15px;
    }
    
    .borrow-images {
        gap: 10px;
    }
    
    .borrow-images img {
        width: 50px;
        height: 50px;
    }
    
    .borrow-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .borrow-info .btn {
        display: block;
        margin: 10px 0;
        text-align: center;
    }
    
    .borrow-section .info-boxes {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .borrow-section .info-box {
        max-width: 100%;
    }
    
    .links-section {
        padding: 20px 0;
    }
    
    .links-items {
        gap: 10px;
    }
    
    .link-item {
        flex: 0 0 100%;
    }
    
    .link-item a {
        padding: 12px 18px;
    }
    
    .link-item span {
        font-size: 20px;
    }
    
    .link-item img {
        width: 25px;
        height: 25px;
    }
    
    .info-section {
        padding: 20px 0;
    }
    
    .news-tabs {
        flex-direction: column;
    }
    
    .news-tab {
        text-align: center;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .news-tab.active {
        border-bottom: 3px solid #ea7393;
    }
    
    .news-item {
        padding: 15px;
    }
    
    .news-item .news-image {
        width: 100%;
        height: 120px;
    }
    
    .news-item h3 {
        font-size: 20 px;
    }
    
    .news-item p {
        font-size: 15px;
        white-space: normal;
        word-wrap: break-word;
        word-break: break-word;
        overflow: visible;
    }
    
    .about-content {
        padding: 20px;
    }
    
    .about-content h3 {
        font-size: 17px;
    }
    
    .about-content p {
        font-size: 13px;
    }
    
    .place-images {
        flex-direction: column;
        align-items: center;
    }
    
    .place-image {
        width: 80%;
        margin-bottom: 20px;
    }
    
    .place-image:nth-child(1),
    .place-image:nth-child(2),
    .place-image:nth-child(3) {
        width: 80%;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .tls-notice {
        margin-bottom: 15px;
    }
    
    /* 內頁手機版樣式 */
    .page-container {
        padding: 20px 0;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .sidebar-widget {
        padding: 15px;
    }
    
    .news-list-item {
        padding: 15px;
    }
    
    .news-list-item .news-image {
        height: 150px;
    }
    
    .news-list-item h3 {
        font-size: 16px;
    }
    
    /* 中心介紹頁面響應式 */
    .intro-page .about-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .intro-page .about-text, .intro-page .about-image {
        width: 100%;
    }
    
    .intro-page .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-page .action-buttons .btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .intro-page .contact-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .intro-page .arrow-icon {
        margin-top: 0;
    }
} 

/* 新聞頁面樣式 */
.news-page {
    background: rgba(255,242,239,1);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    min-height: 100vh;
}

.news-page .page-container {
    background: transparent;
    padding: 40px 0;
}

.news-page .page-header {
    border-bottom: none;
    margin-bottom: 30px;
    padding-bottom: 0px;
    text-align: center;
}

.news-page .page-title {
    color: rgba(37,81,90,1);
    font-size: 32px;
    margin-bottom: 5px;
}

.news-page .page-title .en {
    color: rgba(86,181,201,1);
    font-size: 18px;
    width: 100%;
    text-align: center;
    margin-top: -5px;
    margin-bottom: 0;
    letter-spacing: 4px;
    display: block;
}

/* 新聞統計 */
.news-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.news-stats {
    color: rgba(91,74,66,1);
    font-size: 16px;
    font-weight: 500;
}

/* 新聞列表網格 */
.news-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* 新聞卡片 */
.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid rgba(247,182,82,0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: auto;
    min-height: 150px;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: rgba(247,182,82,1);
}

/* 左側圖片區域 */
.news-card-left {
    width: 140px;
    height: 160px;
    overflow: visible;
    flex-shrink: 0;
    position: relative;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    aspect-ratio: 1;
    max-height: 130px;
}

.news-card-left .news-card-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(86,181,201,1);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.news-card-icon img {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
}

.news-card-label {
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
}

/* 右側內容區域 */
.news-card-center {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}



.news-card-title {
    font-size: 20px;
    margin-bottom: 8px;
    color: #ea7393;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 0;
}

.news-card-title a {
    color: #ea7393;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-title a:hover {
    color: #d65a7a;
    text-decoration: none;
}

.news-card-excerpt {
    color: #666;
    line-height: 1.4;
    margin-bottom: 10px;
    flex: 1;
    font-size: 18px;
}

.news-card-btn {
    background: rgba(234,115,147,1);
    color: #fff;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 16px;
    align-self: flex-end;
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-card-btn:hover {
    background: #d65a7a;
    transform: translateY(-1px);
    color: #fff;
}

/* 右側圖片區域 */
.news-card-right {
    display: none; /* 不使用這個，圖片放在left區域 */
}

/* 暫無新聞 */
.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: #888;
    font-size: 18px;
}

/* 新聞內容頁 */
.news-detail {
    border-radius: 0;
    padding: 0px 0;
    box-shadow: none;
    border: none;
    background: transparent;
}

.news-detail-header {
    margin-bottom: 30px;
    position: relative;
}

.news-detail-title {
    color: rgba(234,115,147,1);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 1.4;
}

.news-detail-divider {
    height: 0;
    border-top: 1px solid rgba(37,81,90,1);
    margin-bottom: 0px;
}

.news-detail-date {
    color: rgba(91,74,66,1);
    font-size: 16px;
    font-weight: 500;
    text-align: right;
}

.news-detail-content {
    color: #555;
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 40px;
}

.news-detail-content h1,
.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4,
.news-detail-content h5,
.news-detail-content h6 {
    color: rgba(37,81,90,1);
    margin: 20px 0 15px 0;
}

.news-detail-content p {
    margin-bottom: 15px;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

.news-detail-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-back {
    background: rgba(234,115,147,1);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-back:hover {
    background: #d65a7a;
    transform: translateY(-2px);
    color: #fff;
}

/* 分頁樣式 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn, .pagination-current {
    padding: 10px 15px;
    border: 2px solid rgba(234,115,147,0.3);
    border-radius: 8px;
    color: rgba(37,81,90,1);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination-btn:hover {
    background: rgba(234,115,147,0.1);
    border-color: rgba(234,115,147,1);
    color: rgba(37,81,90,1);
}

.pagination-current {
    background: rgba(234,115,147,1);
    color: #fff;
    border-color: rgba(234,115,147,1);
}

/* 響應式設計 */
@media (max-width: 768px) {
    .news-list-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-card {
        flex-direction: column;
        height: auto;
    }
    
    .news-card-left {
        width: 100%;
        height: 120px;
    }
    
    .news-card-left .news-card-icon {
        top: 8px;
        left: 8px;
        padding: 6px;
    }
    
    .news-card-icon img {
        width: 16px;
        height: 16px;
    }
    
    .news-card-label {
        font-size: 9px;
    }
    
    .news-card-center {
        padding: 12px;
    }
    
    .news-card-title {
        font-size: 18px;
    }
    
    .news-card-excerpt {
        font-size: 12px;
    }
    
    .news-detail {
        padding: 20px;
    }
    
    .news-detail-title {
        font-size: 24px;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .pagination-btn, .pagination-current {
        padding: 8px 12px;
        font-size: 14px;
    }
} 

/* 樓層平面頁面樣式 */
.level-content {
    margin-top: 30px;
}

.pdf-download-section {
    padding: 0px 0;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.pdf-download-section p {
    font-size: 18px;
    color: #555;
    margin: 0;
    flex-shrink: 0;
}

.pdf-download-btn {
    background: rgba(234,115,147,1);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.pdf-download-btn:hover {
    background: #d65a7a;
    transform: translateY(-2px);
    color: #fff;
}

.floor-plans {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.floor-section {
    padding: 0px 0;
}

.floor-title {
    color: rgba(234,115,147,1);
    font-size: 27px;
    font-weight: 500;
    text-align: left;
}

/* level.php 專用樓層樣式 */
.level-floor-section {
    padding: 0;
    margin-bottom: 40px;
    display: block;
}

.level-floor-title {
    color: rgba(234,115,147,1);
    font-size: 27px;
    font-weight: 500;
    text-align: left;
    margin: 0 0 5px 0;
    background: none;
    border: none;
    padding: 0;
}

.level-floor-image {
    text-align: center;
}

.level-floor-image img {
    max-width: 100%;
    height: auto;
    border: 2px solid rgba(247,182,82,1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.floor-image {
    text-align: center;
}

.floor-image img {
    max-width: 100%;
    height: auto;
    border: 2px solid rgba(247,182,82,1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 響應式設計 */
@media (max-width: 768px) {
    .pdf-download-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .floor-section {
        padding: 20px 0;
    }
    
    .floor-title {
        font-size: 24px;
    }
    
    .level-floor-title {
        font-size: 24px;
    }
    
    .level-floor-section {
        margin-bottom: 30px;
    }
    
    .level-floor-image img {
        border-width: 1px;
    }
    
    .floor-image img {
        border-width: 1px;
    }
} 

/* 交通位置頁面樣式 */
.map-content {
    margin-top: 30px;
}

.google-map-section {
    margin-bottom: 40px;
}

.google-map-section iframe {
    border: 2px solid rgba(255,247,157,1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.transportation-section {
    margin-bottom: 40px;
}

.transportation-title {
    color: rgba(234,115,147,1);
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: left;
}

.transport-method {
    margin-bottom: 30px;
}

.method-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(37,81,90,1);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.method-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.method-content {
    padding-left: 44px;
}

.method-content p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.method-content strong {
    color: rgba(234,115,147,1);
}

.center-info-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.info-left {
    flex: 1;
}

.info-title {
    color: rgba(234,115,147,1);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.info-details p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.info-details strong {
    color: rgba(37,81,90,1);
}

.info-right {
    flex: 0 0 700px;
}

.info-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 響應式設計 */
@media (max-width: 768px) {
    .center-info-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .info-right {
        flex: none;
    }
    
    .method-content {
        padding-left: 0;
    }
    
    .method-title {
        font-size: 20px;
    }
    
    .transportation-title {
        font-size: 24px;
    }
    
    .method-content p {
        font-size: 16px;
    }
    
    .info-details p {
        font-size: 16px;
    }
} 

/* 借用流程頁面樣式 */
.process-content {
    margin-top: 30px;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-image {
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.step-image img {
    width: auto;
    max-width: none;
    height: auto;
    object-fit: contain;
}

.step-number {
    color: rgba(234,115,147,1);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-title {
    color: rgba(91,74,66,1);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content {
    text-align: left;
    width: 100%;
    max-width: 220px;
}

.step-content p {
    color: rgba(91,74,66,1);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 8px;
}

.process-arrow {
    color: rgba(255,193,7,1);
    font-size: 24px;
    font-weight: bold;
    align-self: center;
    margin: 0 10px;
    flex-shrink: 0;
}

/* 轉帳資訊 */
.transfer-info {
    text-align: left;
    margin-bottom: 50px;
}

.transfer-title {
    color: rgba(234,115,147,1);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.transfer-details p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.transfer-details strong {
    color: rgba(37,81,90,1);
}

.transfer-note {
    color: rgba(234,115,147,1) !important;
    font-size: 16px !important;
    margin-top: 10px;
}

/* 聯絡資訊 */
.contact-info-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
}

.contact-title {
    color: rgba(234,115,147,1);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-details p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-details strong {
    color: rgba(37,81,90,1);
}

.contact-right {
    flex: 0 0 400px;
}

.contact-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 響應式調整 */
@media (max-width: 1200px) {
    .process-steps {
        gap: 10px;
    }
    
    .process-step {
        max-width: 220px;
    }
    
    .process-arrow {
        font-size: 20px;
        margin: 0 8px;
    }
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .process-step {
        max-width: 300px;
    }
    
    .step-content {
        text-align: center;
        max-width: 280px;
    }
    
    .step-content p {
        font-size: 18px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-number {
        font-size: 30px;
    }
    
    .transfer-info {
        text-align: left;
    }
    
    .contact-info-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-right {
        flex: none;
    }
    
    .contact-title {
        font-size: 22px;
    }
    
    .transfer-title {
        font-size: 22px;
    }
    
    .contact-details p {
        font-size: 16px;
    }
    
    .transfer-details p {
        font-size: 16px;
    }
}

/* 進駐辦法頁面樣式 */
.method-content {
    margin-top: 30px;
}

.intro-text {
    text-align: left;
    margin-bottom: 40px;
}

.intro-text p {
    color: rgba(91,74,66,1);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 10px;
}

.conditions-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 00px;
}

.conditions-left {
    flex: 1;
    text-align: left;
}

.conditions-title {
    color: rgba(234,115,147,1);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.condition-item {
    margin-bottom: 25px;
}

.condition-item h3 {
    color: rgba(37,81,90,1);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.condition-item p {
    color: rgba(91,74,66,1);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.condition-item strong {
    color: rgba(37,81,90,1);
}

.conditions-right {
    flex: 0 0 590px;
}

.conditions-right img {
    width: 100%;
    height: auto;
    border: 2px solid rgba(255,247,157,1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-info-title {
    color: rgba(234,115,147,1);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.contact-details p {
    color: rgba(91,74,66,1);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.contact-details strong {
    color: rgba(37,81,90,1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .conditions-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .conditions-right {
        flex: none;
    }
    
    .intro-text p {
        font-size: 18px;
    }
    
    .conditions-title {
        font-size: 22px;
    }
    
    .condition-item h3 {
        font-size: 18px;
    }
    
    .condition-item p {
        font-size: 16px;
    }
    
    .contact-details p {
        font-size: 16px;
    }
    
    .contact-info-title {
        font-size: 22px;
    }
}

/* 樓層分類頁面樣式 */
.ptype-content {
    margin-top: 30px;
}

.floor-section {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.floor-section .floor-content,
.floor-section .floor-dual-content,
.floor-section .floor-content-wrapper {
    flex: 1;
}

/* 1樓特殊樣式 - 繼承父容器的flex佈局 */

.floor-content-left {
    flex: 1;
}

.floor-title-special {
    background: rgba(234,115,147,1);
    color: white;
    font-size: 24px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.floor-services p {
    color: rgba(91,74,66,1);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 8px;
}



/* 一般樓層標題 */
.floor-title {
    background: rgba(234,115,147,1);
    color: white;
    font-size: 24px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

/* 樓層內容 */
.floor-content h3 {
    color: rgb(106 93 82);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.floor-content p {
    color: rgba(91,74,66,1);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.floor-content strong {
    color: rgb(106 93 82);
}

/* 左右雙欄樓層 */
.floor-dual-content {
    display: flex;
    gap: 40px;
    margin-bottom: 0px;
}

.floor-dual-left,
.floor-dual-right {
    flex: 1;
}

.floor-dual-left h3,
.floor-dual-right h3 {
    color: rgb(106 93 82);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.floor-dual-left p,
.floor-dual-right p {
    color: rgba(91,74,66,1);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* 統一圖片樣式 */
.floor-image-center,
.floor-image-right {
    flex: 0 0 400px;
}

.floor-image-center img,
.floor-image-right img {
    width: 100%;
    height: auto;
    border: 2px solid rgba(255,247,157,1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 分隔線 */
.floor-divider {
    height: 2px;
    background: rgba(220,220,220,1);
    margin: 40px 0;
}

/* 響應式調整 */
@media (max-width: 768px) {
    .floor-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .floor-image-center,
    .floor-image-right {
        flex: none;
    }
    
    .floor-dual-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .floor-title-special {
        font-size: 20px;
        padding: 10px 25px;
    }
    
    .floor-title {
        font-size: 20px;
        padding: 10px 25px;
    }
    
    .floor-services p {
        font-size: 16px;
    }
    
    .floor-content p {
        font-size: 16px;
    }
    
    .floor-dual-left p,
    .floor-dual-right p {
        font-size: 16px;
    }
    
    .floor-content h3,
    .floor-dual-left h3,
    .floor-dual-right h3 {
        font-size: 18px;
    }
    
    .floor-image-center img,
    .floor-image-right img {
        max-width: 100%;
    }
}

/* ==========================================
   服務單位介紹頁面樣式
   ========================================== */

/* 滿版背景 */
.unit-page {
    background: rgba(255, 242, 239, 1);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.unit-page .page-container {
    background: transparent;
    padding: 40px 0;
}

.unit-page .page-header {
    border-bottom: none;
    margin-bottom: 10px;
    padding-bottom: 0px;
}

.unit-page .page-title {
    color: rgba(37,81,90,1);
    font-size: 32px;
    margin-bottom: 5px;
}

.unit-page .page-title .en {
    color: rgba(86,181,201,1);
    font-size: 18px;
    width: 100%;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 0;
    letter-spacing: 4px;
}



/* 說明文字區域 */
.unit-intro-left {
    margin-bottom: 20px;
    text-align: center;
}

.unit-intro-left p {
    margin: 0;
    font-size: 18px;
    color: rgba(91,74,66,1);
    line-height: 1.6;
}

/* 統計文字放在右上方 */
.unit-stats {
    text-align: right;
    margin-bottom: 30px;
    font-size: 18px;
    color: rgba(91,74,66,1);
    font-weight: 500;
}

.unit-stats .count {
    font-size: 24px;
    font-weight: 700;
    color: rgba(234,115,147,1);
}

/* 服務單位網格 */
.unit-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* 服務單位卡片 */
.unit-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 300px;
    display: flex;
    flex-direction: column;
}

.unit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.unit-card-image {
    width: 100%;
    height: 80%;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.unit-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.unit-card-content {
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(132, 204, 201, 1);
}

.unit-card-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 0 15px;
}

/* 分頁樣式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(37,81,90,1);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background: rgba(91,74,66,1);
    color: #fff;
    text-decoration: none;
}

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    color: rgba(91,74,66,1);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(220,220,220,1);
}

.page-number:hover,
.page-number.active {
    background: rgba(234,115,147,1);
    color: #fff;
    text-decoration: none;
    border-color: rgba(234,115,147,1);
}

/* 詳情頁樣式 */
.unit-detail {
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.unit-detail-header {
    text-align: left;
    margin-bottom: 30px;
}

.unit-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: rgba(234,115,147,1);
    margin: 0 0 10px 0;
}

.unit-detail-divider {
    width: 100%;
    height: 1px;
    background: rgba(37,81,90,1);
    margin: 0;
}

.unit-detail-content {
    margin-bottom: 40px;
}

.unit-detail-image {
    text-align: center;
    margin-bottom: 30px;
}

.unit-detail-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.unit-detail-text {
    font-size: 18px;
    color: rgba(91,74,66,1);
    line-height: 1.8;
}

.unit-detail-footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(220,220,220,1);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(234,115,147,1);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(214,95,127,1);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* 響應式設計 */
@media (max-width: 768px) {
    .unit-page .page-container {
        padding: 20px 0;
    }
    
    .unit-intro-left p {
        font-size: 16px;
        text-align: center;
    }
    
    .unit-stats {
        font-size: 16px;
        text-align: center;
    }
    
    .unit-stats .count {
        font-size: 20px;
    }
    
    .unit-list-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .unit-card {
        height: 250px;
    }
    
    .unit-card-title {
        font-size: 18px;
    }
    
    .pagination {
        flex-direction: column;
        gap: 20px;
    }
    
    .page-numbers {
        order: 2;
    }
    
    .page-btn.prev {
        order: 1;
    }
    
    .page-btn.next {
        order: 3;
    }
    
    .unit-detail {
        padding: 20px;
        margin: 0 15px;
    }
    
    .unit-detail-title {
        font-size: 24px;
    }
    
    .unit-detail-text {
        font-size: 16px;
    }
    
    .unit-detail-image img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .unit-page .page-container {
        padding: 15px 0;
    }
    
    .unit-list-grid {
        gap: 15px;
    }
    
    .unit-card {
        height: 220px;
    }
    
    .unit-card-title {
        font-size: 16px;
    }
    
    .unit-detail {
        margin: 0 10px;
        padding: 15px;
    }
    
    .page-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .page-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* 服務單位詳情內容區塊樣式 */
.unit-content-section {
    margin-bottom: 40px;
}

/* 區塊1: 靠左文字 */
.content-section-1 {
    text-align: left;
    color: rgba(91,74,66,1);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* 區塊2: 寬文字 */
.content-section-2 {
    font-size: 18px;
    color: rgba(91,74,66,1);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* 區塊3: 左文字右圖片 */
.content-section-3 {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.content-section-3 .text-content {
    flex: 2;
    font-size: 18px;
    color: rgba(91,74,66,1);
    line-height: 1.8;
}

.content-section-3 .image-content {
    flex: 1;
    text-align: center;
}

.content-section-3 .image-content img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border: 2px solid rgba(255,247,157,1);
    border-radius: 8px;
}

/* 區塊4: 寬文字 */
.content-section-4 {
    font-size: 18px;
    color: rgba(91,74,66,1);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* 區塊5: 左圖片右文字 */
.content-section-5 {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.content-section-5 .image-content {
    flex: 1;
    text-align: center;
}

.content-section-5 .image-content img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border: 2px solid rgba(255,247,157,1);
    border-radius: 8px;
}

.content-section-5 .text-content {
    flex: 2;
    font-size: 18px;
    color: rgba(91,74,66,1);
    line-height: 1.8;
}

/* 區塊6: 寬文字 */
.content-section-6 {
    font-size: 18px;
    color: rgba(91,74,66,1);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* 響應式調整 */
@media (max-width: 768px) {
    .content-section-3,
    .content-section-5 {
        flex-direction: column;
        gap: 20px;
    }
    
    .content-section-3 .image-content,
    .content-section-5 .image-content {
        order: -1;
    }
    
    .content-section-1,
    .content-section-2,
    .content-section-4,
    .content-section-6 {
        font-size: 16px;
    }
    
    .content-section-3 .text-content,
    .content-section-5 .text-content {
        font-size: 16px;
    }
}

/* ==========================================
   網站導覽頁面樣式
   ========================================== */

/* 網站導覽頁面基礎樣式 */
.sitemap-page {
    background: rgba(255,242,239,1);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.sitemap-page .page-container {
    background: transparent;
    padding: 40px 0 20px 0;
    min-height: auto;
}

.sitemap-page .page-header {
    border-bottom: none;
    margin-bottom: 30px;
    padding-bottom: 0px;
    text-align: center;
}

.sitemap-page .page-title {
    color: rgba(37,81,90,1);
    font-size: 32px;
    margin-bottom: 5px;
}

.sitemap-page .page-title .en {
    color: rgba(86,181,201,1);
    font-size: 18px;
    width: 100%;
    text-align: center;
    margin-top: -5px;
    margin-bottom: 0;
    letter-spacing: 4px;
    display: block;
}

/* 網站導覽內容樣式 */

.sitemap-content {
    margin-top: 30px;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 40px;
    max-width: 1320px;
    margin: 0 auto;
}

.sitemap-section {
    padding: 0;
}

.sitemap-title {
    font-size: 24px;
    font-weight: 700;
    color: rgba(91,74,66,1);
    margin: 0 0 0px 0;
    text-align: left;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(37,81,90,1);
}

.sitemap-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-links li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
    padding: 0px 0;
}

.sitemap-links li:last-child {
    margin-bottom: 0;
}

.sitemap-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.sitemap-links a {
    font-size: 20px;
    color: rgba(91,74,66,1);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sitemap-links a:hover {
    color: rgba(234,115,147,1);
    text-decoration: none;
}

.sitemap-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sitemap-image img {
    width: 100%;
    height: auto;
    border: 2px solid rgba(255,247,157,1);
    border-radius: 8px;
    object-fit: cover;
}

/* 響應式設計 */
@media (max-width: 1024px) {
    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 25px;
    }
    
    .sitemap-title {
        font-size: 20px;
    }
    
    .sitemap-links a {
        font-size: 18px;
    }
    
    .sitemap-icon {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .sitemap-content {
        margin-top: 20px;
    }
    
    .sitemap-grid {
        gap: 20px;
    }
    
    .sitemap-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .sitemap-links li {
        gap: 12px;
        margin-bottom: 5px;
    }
    
    .sitemap-links a {
        font-size: 18px;
    }
    
    .sitemap-icon {
        width: 20px;
        height: 20px;
    }
}

/* 場地介紹頁面樣式 */
.venue-page {
    background: rgba(255,242,239,1);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    min-height: 100vh;
}

.venue-page .page-container {
    background: transparent;
    padding: 40px 0;
}

.venue-page .page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 0px;
    border-bottom: none;
}

.venue-page .page-title {
    color: rgba(37,81,90,1);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.venue-page .page-title .en {
    color: rgba(86,181,201,1);
    font-size: 18px;
    font-weight: 400;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: -5px;
    margin-bottom: 0;
}

/* 場地按鈕導航 */
.venue-nav-section {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    padding: 0;
}

.venue-nav-btn {
    background: rgba(234,115,147,1);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(234,115,147,1);
}

.venue-nav-btn:hover {
    background: rgba(214,95,127,1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234,115,147,0.4);
    text-decoration: none;
    color: white;
}

/* 場地卡片列表 */
.venue-cards-section {
    margin-bottom: 50px;
}

.venue-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    display: flex;
    min-height: 300px;
    transition: all 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.venue-card-left {
    flex: 0 0 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.venue-card-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    max-height: 260px;
}

.venue-card-left .no-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 16px;
    border-radius: 8px;
}

.venue-card-right {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venue-name {
    color: rgba(37,81,90,1);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 3px solid rgba(234,115,147,1);
    padding-bottom: 10px;
}

.venue-details p {
    margin-bottom: 12px;
    color: rgba(91,74,66,1);
    font-size: 18px;
    line-height: 1.6;
}

.venue-details strong {
    color: rgba(37,81,90,1);
    font-weight: 600;
}

/* 場地說明區塊 */
.venue-info-section {
    margin-bottom: 40px;
    padding: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-left h3,
.info-right h3 {
    color: rgba(234,115,147,1);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(234,115,147,1);
    padding-bottom: 10px;
}

.info-left p,
.info-right p {
    color: rgba(91,74,66,1);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* 通用區塊樣式 */
.application-section,
.equipment-section,
.purpose-section,
.discount-section,
.payment-section,
.regulations-section {
    margin-bottom: 40px;
    padding: 0;
}

.application-section h3,
.equipment-section h3,
.purpose-section h3,
.discount-section h3,
.payment-section h3,
.regulations-section h3 {
    color: rgba(234,115,147,1);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 3px solid rgba(234,115,147,1);
    padding-bottom: 10px;
}

.application-content p,
.equipment-content p,
.purpose-content p,
.discount-content p,
.payment-content p,
.regulations-content p {
    color: rgba(91,74,66,1);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 12px;
}

.equipment-content h4,
.discount-content h4,
.payment-content h4,
.regulations-content h4 {
    color: rgba(234,115,147,1);
    font-size: 26px;
    font-weight: 700;
    margin: 20px 0 15px 0;
}

/* 銀行資訊區塊 */
.bank-info {
    background: rgba(234,115,147,0.1);
    border-left: 4px solid rgba(234,115,147,1);
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.bank-info p {
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 22px;
    color: rgba(91,74,66,1);
}

/* 異動說明區塊 */
.change-section {
    margin-bottom: 40px;
    padding: 0;
}

.change-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.change-left h3,
.change-right h3 {
    color: rgba(234,115,147,1);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(234,115,147,1);
    padding-bottom: 10px;
}

.change-left p,
.change-right p {
    color: rgba(91,74,66,1);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* PDF下載區塊 */
.pdf-download-section {
    padding: 0;
    margin-top: 30px;
    text-align: left;
}

.pdf-download-section p {
    color: rgba(91,74,66,1);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.6;
}

.pdf-download-btn {
    background: rgb(234 115 147);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.pdf-download-btn:hover {
    background: rgb(234 115 147);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247,182,82,0.4);
    text-decoration: none;
    color: white;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .venue-page .page-title {
        font-size: 32px;
    }
    
    .venue-nav-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .venue-nav-btn {
        text-align: center;
    }
    
    .venue-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .venue-card-left {
        flex: none;
        height: 200px;
    }
    
    .venue-card-right {
        padding: 20px;
    }
    
    .venue-name {
        font-size: 22px;
    }
    
    .venue-details p {
        font-size: 16px;
    }
    
    .info-grid,
    .change-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .application-section,
    .equipment-section,
    .purpose-section,
    .discount-section,
    .payment-section,
    .change-section,
    .regulations-section {
        padding: 0;
    }
    
    .venue-info-section {
        padding: 0;
    }
}

/* 場地借用頁面樣式 */
.borrow-content {
    margin-bottom: 40px;
}

/* 所有借用步驟頁面 - 移除背景和邊框 */
#agreement-step.borrow-content,
#time-selection-step.borrow-content,
#form-fill-step.borrow-content,
#completion-step.borrow-content {
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    gap: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 場地列表專用樣式 - 確保沒有背景框和邊框 */
#venue-list {
    background: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
}

/* 覆蓋場地列表的flex設定，避免影響佈局 */
#venue-list.borrow-content {
    display: block;
    align-items: normal;
    gap: normal;
}

#venue-list .borrow-venue-cards {
    background: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
}

/* 借用場地卡片列表 (新樣式名稱) */
.borrow-venue-cards {
    margin-bottom: 50px;
}

/* 確保場地列表中的卡片佔滿容器寬度 */
#venue-list .borrow-venue-card {
    width: 100%;
    margin: 0 0 30px 0;
}

.borrow-venue-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    display: flex;
    height: 300px;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
}

.borrow-venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.borrow-venue-card-left {
    flex: 0 0 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.borrow-venue-card-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    object-position: center;
}

.borrow-venue-card-left .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 16px;
}

.borrow-venue-card-right {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 場地標題和價格 */
.venue-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.borrow-venue-name {
    color: rgba(234,115,147,1);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.venue-price {
    border: 2px solid rgba(234,115,147,1);
    color: rgba(234,115,147,1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 20px;
}

/* 基本資訊 */
.venue-basic-info {
    margin-bottom: 15px;
}

.basic-info-row {
    color: rgba(91,74,66,1);
    font-size: 16px;
    line-height: 1.5;
}

.basic-info-row span {
    font-weight: 500;
}

.basic-info-row i {
    color: rgba(234,115,147,1);
    margin-right: 5px;
}

/* 其他設備 */
.venue-other-equipment {
    color: rgba(91,74,66,1);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* 描述內容 */
.venue-description {
    color: rgba(91,74,66,1);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.venue-description i {
    color: rgba(234,115,147,1);
    margin-right: 5px;
}

/* 設備內容 */
.venue-equipment {
    color: rgba(91,74,66,1);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.venue-equipment i {
    color: rgba(234,115,147,1);
    margin-right: 5px;
}

.borrow-venue-actions {
    margin-top: auto;
    text-align: right;
    padding-top: 0px;
}

.rental-btn {
    background: linear-gradient(135deg, rgba(234,115,147,1) 0%, rgba(255,182,203,1) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(234,115,147,0.3);
}

.rental-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(234,115,147,0.4);
}

/* 預約規則通知 */
.booking-notice {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 10px 15px;
    margin: 10px 0;
    color: #856404;
    font-size: 14px;
}

/* 步驟內容樣式 */
.borrow-step-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 20px;
    max-width: 1000px;
    margin: 0 auto 20px auto;
    padding: 40px;
}

/* 進度條樣式 - 無背景框 */
.progress-section {
    margin-bottom: 20px;
}

/* 同意須知步驟的進度條需要上方padding */
.agreement-container .progress-section {
    padding-top: 0;
    margin-bottom: 30px;
}

/* 進度條文字 */
.progress-step-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
}

/* 進度條文字樣式 */
.progress-step-text span {
    color: #333; /* 預設黑色文字 */
}

/* 已完成進度文字：數字和文字都是桃紅色 */
.progress-step-text span.completed {
    color: rgba(234,115,147,1);
}

/* 當前進度文字：保持黑色，但數字部分需要在HTML中特別處理 */
.progress-step-text span.active {
    color: #333;
}

/* 進度文字中的數字樣式 */
.progress-step-text .step-number {
    color: rgba(234,115,147,1);
    font-weight: 700;
}

.progress-step-text span.completed .step-number {
    color: rgba(234,115,147,1);
}

/* 進度條容器 */
.progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* 進度步驟 */
.progress-step {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* 進度圓圈 */
.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid #ccc;
    background: white;
    color: #ccc;
}

/* 當前進度圓圈：桃紅色背景和邊框 */
.progress-step.active .step-circle {
    background: rgba(234,115,147,1);
    border: 2px solid rgba(234,115,147,1);
    color: white;
    box-shadow: 0 0 15px rgba(234,115,147,0.3);
}

/* 已完成進度圓圈：桃紅色背景和邊框 */
.progress-step.completed .step-circle {
    background: rgba(234,115,147,1);
    border: 2px solid rgba(234,115,147,1);
    color: white;
}

/* 進度線 */
.step-line {
    flex: 1;
    height: 4px;
    background: #ccc;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* 已完成進度線：桃紅色 */
.step-line.completed {
    background: rgba(234,115,147,1);
}

/* 同意需知容器 - 進度條與內容統一背景框 */
.agreement-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    padding: 40px;
    margin: 0 auto 40px auto;
    max-width: 1000px;
}

/* 同意需知內容 */
.agreement-content {
    padding: 0;
    margin-top: 30px;
}

.agreement-text {
    line-height: 1.8;
    margin-bottom: 30px;
}

.agreement-text h4 {
    color: rgba(234,115,147,1);
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

.agreement-text p {
    color: rgba(91,74,66,1);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.agreement-checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.agreement-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: rgba(234,115,147,1);
}

/* 時間選擇內容 */
.time-selection-content {
    padding: 20px;
}

.selected-venue-info h3 {
    color: rgba(234,115,147,1);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.selected-venue-info p {
    color: rgba(234,115,147,1);
    font-size: 18px;
    margin-bottom: 10px;
}

.time-slots-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.time-slots-info p {
    color: rgba(91,74,66,1);
    font-size: 16px;
    margin: 0;
}

.equipment-info {
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.equipment-info h4 {
    color: rgba(234,115,147,1);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.equipment-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-info li {
    color: rgba(91,74,66,1);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.equipment-note {
    color: rgba(234,115,147,1);
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
}

/* 月曆圖例 */
.calendar-legend h4 {
    color: rgba(37,81,90,1);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.color-box.available {
    background: #28a745;
}

.color-box.booked {
    background: #dc3545;
}

.color-box.selected {
    background: rgba(234,115,147,1);
}

.color-box.closed {
    background: #6c757d;
}

.calendar-note {
    color: rgba(91,74,66,1);
    font-size: 14px;
    font-style: italic;
}

/* 月曆樣式 */
.calendar-container {
    margin: 30px 0;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.calendar-header {
    background: rgb(255 255 255);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px;
}

.calendar-nav {
    background: none;
    border: none;
    color: #000000;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.calendar-nav:hover {
    background: rgba(255,255,255,0.2);
}

/* Borrow.php 專用的月曆樣式 */
.borrow-content .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.borrow-content .calendar-day-header {
    background: #f8f9fa;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    color: rgba(37,81,90,1);
    border-bottom: 1px solid #dee2e6;
}

.borrow-content .calendar-day {
    min-height: 80px;
    border-bottom: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    padding: 5px;
    position: relative;
    cursor: pointer;
}

.borrow-content .calendar-day:nth-child(7n) {
    border-right: none;
}

.borrow-content .calendar-day.other-month {
    background: #f8f9fa;
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.calendar-day.available:hover {
    background: #e8f5e8;
}

.day-number {
    font-weight: 600;
    margin-bottom: 5px;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.time-slot {
    background: #28a745;
    color: white;
    font-size: 10px;
    text-align: center;
    padding: 2px 4px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: #218838;
}

.time-slot.selected {
    background: rgba(234,115,147,1);
}

.time-slot.booked {
    background: #dc3545;
    cursor: not-allowed;
}

.time-slot.closed {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
}

/* 已選擇日期摘要 */
.selected-dates-summary h4 {
    color: rgba(37,81,90,1);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.no-selection {
    color: #6c757d;
    font-style: italic;
}

.selected-date-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(234,115,147,0.1);
    border: 1px solid rgba(234,115,147,1);
    border-radius: 5px;
    padding: 8px 12px;
    margin-bottom: 5px;
}

.remove-date {
    background: rgba(234,115,147,1);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 表單樣式 */
.form-fill-content {
    padding: 40px;
}

.booking-summary h3 {
    color: rgba(37,81,90,1);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.booking-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.booking-details p {
    color: rgba(91,74,66,1);
    font-size: 18px;
    margin-bottom: 10px;
}

.booking-form {
    max-width: 100%;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h4 {
    color: rgba(234,115,147,1);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(234,115,147,1);
    padding-bottom: 10px;
}

.required-note {
    color: rgba(234,115,147,1);
    font-size: 14px;
    font-weight: 400;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    flex: none;
    width: 100%;
}

.form-group label {
    display: block;
    color: rgba(37,81,90,1);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(234,115,147,1);
    box-shadow: 0 0 0 3px rgba(234,115,147,0.1);
}

.equipment-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    color: rgba(91,74,66,1);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.form-notice {
    background: rgba(255,193,7,0.1);
    border-left: 4px solid rgba(255,193,7,1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.form-notice p {
    color: rgba(91,74,66,1);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* 完成申請內容 */
.completion-content {
    padding: 40px;
    text-align: center;
}

.success-message h3 {
    color: rgba(40,167,69,1);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.completion-info {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.info-highlight {
    background: rgba(255,193,7,0.1);
    border-left: 4px solid rgba(255,193,7,1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.highlight-text {
    color: rgba(234,115,147,1);
}

.payment-info h4 {
    color: rgba(37,81,90,1);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.payment-info p {
    color: rgba(91,74,66,1);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.bank-details {
    background: rgba(234,115,147,0.1);
    border-left: 4px solid rgba(234,115,147,1);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.bank-details p {
    font-size: 16px;
    margin-bottom: 8px;
}

.completion-actions {
    margin-top: 30px;
}

/* 按鈕樣式 */
.step-actions {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* 居中按鈕樣式 - 同意需知專用 */
.step-actions-center {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 0 0 0;
    margin-top: 0;
}

.btn-cancel,
.btn-next,
.btn-primary {
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel {
    background: transparent;
    color: rgba(234,115,147,1);
    border: 2px solid rgba(234,115,147,1);
}

.btn-cancel:hover {
    background: rgba(234,115,147,0.1);
    color: rgba(234,115,147,1);
    border: 2px solid rgba(234,115,147,1);
}

.btn-next,
.btn-primary {
    background: rgba(234,115,147,1);
    color: white;
    border: 2px solid rgba(234,115,147,1);
}

.btn-next:hover,
.btn-primary:hover {
    background: rgba(217,98,130,1);
    border: 2px solid rgba(217,98,130,1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(234,115,147,0.4);
}

.btn-next:disabled {
    background: #6c757d;
    border: 2px solid #6c757d;
    color: white;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 複選框自定義樣式 */
.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(234,115,147,1);
    border-radius: 4px;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

input[type="checkbox"]:checked + .checkmark {
    background: rgba(234,115,147,1);
    border-color: rgba(234,115,147,1);
}

input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

input[type="checkbox"] {
    display: none;
}

/* View.php 借用查詢頁面樣式 */
.view-page {
    background: rgba(255,242,239,1);
    min-height: 100vh;
    padding: 20px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.view-page .page-container {
    background: transparent;
    padding: 0;
    min-height: auto;
}

/* view-page 使用網站統一的 page-header 樣式，不需要特殊覆蓋 */

/* 月曆容器樣式 */
#calendar-container {
    margin-bottom: 20px;
}

#calendar-container * {
    box-sizing: border-box;
}

/* View.php 專用的月曆樣式 */
#calendar-container .calendar-grid {
    width: 100%;
    border: 1px solid rgba(247, 182, 82, 0.2);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background: white;
}

#calendar-container .calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: rgb(249 161 185 / 39%);
}

#calendar-container .calendar-day-header {
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
    color: rgba(91, 74, 66, 1);
    border-right: 1px solid rgba(247, 182, 82, 0.1);
    border-bottom: 1px solid rgba(247, 182, 82, 0.2);
    font-size: 14px;
    box-sizing: border-box;
}

#calendar-container .calendar-day-header:last-child {
    border-right: none;
}

#calendar-container .calendar-body {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    width: 100%;
}

#calendar-container .calendar-day {
    min-height: 120px;
    border-right: 1px solid rgba(247, 182, 82, 0.1);
    border-bottom: 1px solid rgba(247, 182, 82, 0.1);
    padding: 8px;
    position: relative;
    background-color: #fff;
    box-sizing: border-box;
    overflow: hidden;
}

#calendar-container .calendar-day:nth-child(7n) {
    border-right: none;
}

#calendar-container .calendar-day.empty {
    background-color: rgba(247, 182, 82, 0.02);
}

#calendar-container .calendar-day.today {
    background-color: rgba(247, 182, 82, 0.1);
    border: 2px solid rgba(247, 182, 82, 0.5);
}

#calendar-container .calendar-date {
    font-weight: 600;
    margin-bottom: 6px;
    color: rgba(91, 74, 66, 1);
    font-size: 14px;
}

#calendar-container .calendar-events {
    font-size: 0.7rem;
}

#calendar-container .calendar-event {
    background-color: rgba(247, 182, 82, 0.1);
    border: 1px solid rgba(247, 182, 82, 0.3);
    border-radius: 4px;
    padding: 3px 5px;
    margin-bottom: 3px;
    line-height: 1.3;
}

#calendar-container .event-venue {
    font-weight: 600;
    color: rgba(91, 74, 66, 1);
    font-size: 0.65rem;
}

#calendar-container .event-time {
    color: rgba(247, 182, 82, 1);
    font-size: 0.6rem;
    font-weight: 500;
}

#calendar-container .event-name {
    color: rgba(91, 74, 66, 0.8);
    font-weight: 500;
    font-size: 0.65rem;
}

#calendar-container .event-org {
    color: rgba(91, 74, 66, 0.6);
    font-size: 0.55rem;
}

/* 借用查詢內容樣式 */
.view-content {
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

/* 控制面板樣式 - 參考截圖 */
.view-control-panel {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    padding: 15px 20px;
}

.view-control-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.view-control-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.view-control-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.view-control-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 1;
}

/* 年月控制面板 */
.view-date-panel {
    background: rgb(234 115 147);
    color: white;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.view-date-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.view-date-controls:last-child {
    margin-bottom: 0;
}

.view-date-nav {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.view-date-nav:hover {
    background: rgba(255,255,255,0.1);
}

.view-date-display {
    text-align: center;
    flex: 1;
}

.view-year {
    font-size: 20px;
    font-weight: 600;
}

.view-month {
    font-size: 20px;
    font-weight: 600;
}

/* 模式切換按鈕樣式 - 參考截圖 */
.mode-toggle {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mode-toggle .btn {
    border-radius: 0;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 14px;
    border: none;
    margin: 0;
}

.mode-toggle .btn:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.mode-toggle .btn:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.mode-toggle .btn-primary {
    background-color: rgb(234 115 147);
    color: white;
}

.mode-toggle .btn-outline-primary {
    background-color: #6c757d;
    color: white;
}

.mode-toggle .btn-outline-primary:hover {
    background-color: rgb(234 115 147);
    color: white;
}

/* 場地借用按鈕樣式 - 參考截圖 */
.view-borrow-btn {
    background-color: rgb(234 115 147);
    border-color: rgb(234 115 147);
    color: white;
    border-radius: 6px;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.view-borrow-btn:hover {
    background-color: rgb(249 161 185);
    border-color: rgb(249 161 185);
    color: white;
    text-decoration: none;
}

/* 場地選擇下拉框 */
.view-venue-select {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(91, 74, 66, 1);
    font-weight: 500;
}

.view-venue-select i {
    color: rgb(234 115 147);
}

.view-venue-select select {
    border: 1px solid rgba(247, 182, 82, 0.3);
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 14px;
    background: white;
    color: rgba(91, 74, 66, 1);
    min-width: 150px;
}

/* 列表模式樣式 - 參考截圖 */
.view-table-container {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.view-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.view-table th {
    background-color: rgb(239 150 154);
    color: white;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 15px;
    text-align: center;
    border: none;
}

.view-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
    font-size: 14px;
    text-align: center;
}

.view-table tr:last-child td {
    border-bottom: none;
}

.view-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.view-table .date-cell {
    font-weight: 600;
    color: rgba(91, 74, 66, 1);
}

.view-table .venue-cell {
    color: rgb(234 115 147);
    font-weight: 500;
}

.view-table .badge {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.view-table .badge-primary {
    background-color: rgba(247, 182, 82, 1);
    color: white;
}

.view-table .text-primary {
    color: rgb(234 115 147) !important;
    font-weight: 500;
}

.view-table .equipment-cell {
    font-size: 12px;
    color: #666;
    max-width: 200px;
    word-wrap: break-word;
}

/* 響應式設計 - View頁面 */
@media (max-width: 768px) {
    .view-page .page-title {
        font-size: 2rem;
    }
    
    .view-page .page-title .en {
        font-size: 1rem;
    }
    
    .view-page .page-header {
        padding: 20px 0;
    }
    
    .calendar-day {
        min-height: 80px;
        padding: 3px;
    }
    
    .calendar-date {
        font-size: 12px;
        margin-bottom: 3px;
    }
    
    .calendar-events {
        font-size: 0.65rem;
    }
    
    .calendar-event {
        padding: 1px 2px;
        margin-bottom: 1px;
    }
    
    .event-venue,
    .event-name {
        font-size: 0.6rem;
    }
    
    .event-time,
    .event-org {
        font-size: 0.55rem;
    }
    
    .list-mode-table .table {
        font-size: 0.875rem;
    }
    
    .list-mode-table .table td {
        padding: 8px;
    }
    
    .mode-toggle .btn {
        padding: 6px 12px;
        font-size: 0.875rem;
    }
}

/* 響應式設計 - 借用頁面 */
@media (max-width: 768px) {
    .borrow-venue-card {
        flex-direction: column;
        height: auto;
    }
    
    .borrow-venue-card-left {
        flex: none;
        padding: 0;
        height: 200px;
        min-height: 200px;
    }
    
    .borrow-venue-card-right {
        padding: 20px;
    }
    
    .venue-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .venue-price {
        margin-left: 0;
    }
    
    .borrow-venue-name {
        font-size: 24px;
    }
    
    .venue-price {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .basic-info-row,
    .venue-other-equipment,
    .venue-description,
    .venue-equipment {
        font-size: 14px;
    }
    
    .progress-step-text {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .progress-bar {
        flex-direction: column;
        gap: 10px;
    }
    
    .step-line {
        width: 4px;
        height: 20px;
        margin: 0;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .time-slots-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .legend-items {
        justify-content: center;
    }
    
    .calendar-day {
        min-height: 60px;
    }
    
    .time-slot {
        font-size: 8px;
        padding: 1px 2px;
    }
    
    .equipment-checkboxes {
        grid-template-columns: 1fr;
    }
    
    .step-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-actions-center {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .agreement-container {
        padding: 20px;
        margin: 0 auto 20px auto;
    }
    
    .borrow-step-content {
        padding: 20px;
        margin: 0 auto 20px auto;
    }
}
