.content {
  background-color: rgb(237, 242, 253);
  min-height: 80vh;
  padding: 30px 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  font-family: "MyIansui", serif;
}

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

.content-section h3 {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 15px;
}

.content-section h5 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 15px;
}

.content-section p {
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
}

/* 第 1 區塊：地圖與詳細地點的左右佈局 */
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* 左側地圖稍寬 */
  gap: 40px;
  align-items: start;
}

.map-wrapper img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  margin-bottom: 5px;
}

.address {
  text-align: center;
  margin: 0;
}

/* 網格內的小標題 */
.location-grid p {
  margin-top: 0;
  color: #333;
}

/* 網格佈局調整 */
.location-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr; /* 稍微加大地圖比例 */
  gap: 50px;
  align-items: start;
}

/* 響應式：手機版全部變單欄 */
@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  .contact-section {
    padding: 25px;
  }
}
