    /* Base layout */
    html, body { height: 100%; margin: 0; }
    body { font-family: system-ui, -apple-system, "PingFang TC", "Noto Sans CJK TC", sans-serif; }

    /* Make master page behave like a classic header-content-footer layout */
    #masterPage {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* iframe embed styling */
    .embed-frame {
      width: 100%;
      border: 0;
      display: block;
      overflow: hidden;
      background: transparent;
    }

    /* You can set fixed heights, or resize dynamically (see JS below) */
    #headerFrame { height: 72px; }
    #footerFrame { height: 250px; }

    /* Main content expands */
    #PAGES_CONTAINER { flex: 1; }
    #SITE_PAGES img { width: 100%; height: auto; display: block; }
	
	/* Intro section background */
.intro-section {
  width: 100%;
  padding: 80px 24px;
  background: linear-gradient(135deg, #8bbf8a 0%, #2fa4b6 50%, #1f6fae 100%);
  display: flex;
  justify-content: center;
}

/* Cream card */
.intro-card {
  max-width: 760px;
  width: 100%;
  background: #fff7d6;
  padding: 48px 56px 40px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* Title */
.intro-title {
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 700;
}

/* Body text */
.intro-card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.9;
}

/* Meta block */
.intro-meta {
  margin-top: 28px;
}
.intro-meta p {
  margin: 0 0 6px;
}

/* Buttons */
.intro-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.intro-actions a {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
}

.intro-actions a:hover {
  background: #f2f2f2;
}

/* Responsive */
@media (max-width: 640px) {
  .intro-card {
    padding: 36px 28px;
  }
}

.contact-map-section {
  background: #ffffff;
  padding: 60px 24px;
}

.contact-map-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* Left column */
.info-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
  font-size: 14px;
  line-height: 1.8;
}

.info-block p {
  margin: 0;
}

.plain-email {
  color: #000000; /* Black color */
  text-decoration: none; /* Remove underline */
  font-weight: normal; /* Ensure normal font weight */
}

.plain-email:hover {
  color: #333333; /* Slightly lighter black on hover */
  /* Keep underline removed on hover too */
}

/* Right column */
.button-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Outline buttons */
.map-btn {
  min-width: 220px;
  padding: 12px 28px;
  border: 2px solid #9b6a4a;
  border-radius: 999px;
  background: transparent;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.map-btn:hover {
  background: rgba(155, 106, 74, 0.08);
}

.map-btn .icon {
  font-size: 16px;
}


/* ---------- MOBILE: STACK & COMPRESS ---------- */
@media (max-width: 932px) {

  #PAGES_CONTAINER .contact-map-wrap {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 6px 14px !important;
    gap: 6px !important;
  }

  #map{

	width: 351px;
  }

  #PAGES_CONTAINER .info-col,
  #PAGES_CONTAINER .button-col {
    width: 100% !important;
    max-width: 100% !important;
  }

  #PAGES_CONTAINER a.map-btn {
    font-size: 16px !important;
    min-height: 38px !important;
  }
}

/* ---------- FOOTER: REMOVE GAP ABOVE ---------- */
#footerFrame {
  display: block !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  border: none !important;
}

/* REMOVE margin collapse before footer iframe */
#PAGES_CONTAINER::after {
  content: "";
  display: block;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
