/* --- 大樓出租頁面樣式 --- */
.rental-container {
    width: 100%;
    margin: 0 auto;
    font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif;
}

.page-title {
    font-size: 2em;
    color: #c2242d;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

/* --- Hero 區塊 --- */
.hero-section {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}
.hero-image {
    flex: 1;
    max-width: 300px;
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.hero-text {
    flex: 2;
}
.hero-text h2 {
    font-size: 1.8em;
    color: #005a9c;
    margin-top: 0;
}
.hero-text .address {
    font-size: 1.2em;
    font-weight: bold;
    color: #c2242d;
}
.hero-text p {
    line-height: 1.8;
}
.contact-info {
    margin-top: 20px;
    font-size: 1.3em;
    font-weight: bold;
}
.contact-info a {
    color: #c2242d;
    text-decoration: none;
}

/* --- 招租樓層區塊 --- */
.floors-section h2 {
    text-align: center;
    font-size: 1.6em;
    margin-bottom: 25px;
}
.floors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.floor-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
}
.floor-card h3 {
    margin-top: 0;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.floor-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
}

/* --- 地理位置區塊 --- */
.location-section {
    margin-top: 40px;
}
.location-section h2 {
    text-align: center;
    font-size: 1.6em;
    margin-bottom: 25px;
}
.map-wrapper {
    position: relative;
    padding-bottom: 50%; /* 可調整地圖長寬比 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #ddd;
}
.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* RWD */
@media (max-width: 768px) {
    .page-title { font-size: 1.6em; }
    .hero-section { flex-direction: column; text-align: center; }
    .hero-image { max-width: 100%; }
}