body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
}

/* 更小的顶部 venue 图 */
.venue-banner {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}
.venue-banner img {
    width: 160px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* 标题 */
.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

/* 卡片容器 */
.facilities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    background-color: #E5E8EB;
    padding: 30px;
}

/* 单个设施卡片 */
.facility-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 320px;
    height: 460px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.facility-card h3 {
    margin: 40px 0 40px;
    font-size: 20px;
    color: #222;
}

.book-button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #fa5000;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.book-button:hover {
    background-color: #fb6a26;
}

/* ------------------------------ */
/* 📱 Mobile View: 小于 768px 屏幕宽度 */
/* ------------------------------ */
@media (max-width: 768px) {
    .venue-banner {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .venue-banner img {
        width: 120px;
    }

    .facilities-grid {
        flex-direction: column;
        align-items: center;
        padding: 20px 10px;
    }

    .facility-card {
        width: 90%;
        height: auto;
        padding-bottom: 20px;
    }

    .facility-card img {
        height: 200px;
    }

    .facility-card h3 {
        margin: 20px 0;
        font-size: 18px;
    }

    .book-button {
        padding: 10px 16px;
        font-size: 16px;
    }

    .section-title {
        font-size: 20px;
        padding: 0 10px;
    }
}
