:root {
  --font-sans: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --color-text: #1a1a1a;
  --color-muted: #666;
  --color-bg: #ffffff;
  --color-dark: #0e0e0f;
  --color-primary: #111111;
  --color-accent: #ededed;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --radius: 10px;
  --maxw: 1120px;
  --maxw-narrow: 580px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html { font-family: var(--font-sans); color: var(--color-text); background: var(--color-bg); scroll-behavior: smooth; }
body { margin: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }

.container { width: min(var(--maxw), 92%); margin: 0 auto; }
.container-narrow { width: min(var(--maxw-narrow), 90%); margin: 0 auto; }

@media (min-width: 768px) {
  .container-narrow { width: min(760px, 90%); }
}

@media (min-width: 1024px) {
  .container-narrow { width: min(980px, 90%); }
}

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--color-dark); color: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.2); }
.nav-bar { display: flex; align-items: center; justify-content: space-between; padding: var(--space-4) 0; }
.logo { 
  font-weight: 700; 
  letter-spacing: 0.5px; 
  font-size: 15px;
  width: 120px;
  height: 36px;
  background-image: url('./fGTWhpfrx.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

@media (min-width: 768px) {
  .logo { 
    font-size: 20px;
    width: 190px;
    height: 48px;
  }
}
.nav-toggle { appearance: none; border: none; background: transparent; color: #fff; font-size: 20px; cursor: pointer; display: none; }
.site-nav { display: flex; gap: var(--space-6); font-size: 14px; }

@media (min-width: 768px) {
  .site-nav { font-size: 17px; gap: var(--space-8); }
}
.site-nav a { opacity: 0.9; transition: opacity 0.2s; }
.site-nav a.active, .site-nav a:hover { opacity: 1; font-weight: 600; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-block; }
  .site-nav { position: absolute; right: 4%; top: calc(100% + 8px); background: var(--color-dark); padding: var(--space-4); border-radius: 8px; box-shadow: var(--shadow); display: none; flex-direction: column; gap: var(--space-3); }
  .site-nav.open { display: flex; }
}

/* Hero Banner */
.hero-banner { 
  position: relative; 
  width: 100%; 
  height: 85vh; 
  min-height: 500px;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), 
              url('home-banner.jpg') center/cover no-repeat;
}

/* About页面专用Banner */
.hero-banner-about {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), 
              url('123.png') center/cover no-repeat;
}

/* Booking页面专用Banner */
.hero-banner-booking {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), 
              url('booking-banner.jpg') center/cover no-repeat;
}

.hero-overlay { 
  position: absolute; 
  inset: 0; 
  display: flex; 
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  background: rgba(0,0,0,0.2);
  padding: 20px;
}

.hero-title { 
  font-size: clamp(32px, 8vw, 56px); 
  font-weight: 300; 
  letter-spacing: 3px; 
  color: #ffffff; 
  margin: 0 0 20px;
  text-align: center;
  width: 280px;
  height: 84px;
  background-image: url('./fGTWhpfrx.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 768px) {
  .hero-title { 
    font-size: clamp(56px, 8vw, 84px); 
    letter-spacing: 5px; 
    margin: 0 0 24px;
    width: 420px;
    height: 126px;
  }
}

/* 内容页面的hero-title显示为文字 */
.hero-title-text {
  width: auto !important;
  height: auto !important;
  background-image: none !important;
  font-size: clamp(32px, 8vw, 56px) !important;
  font-weight: 300 !important;
  letter-spacing: 3px !important;
}

@media (min-width: 768px) {
  .hero-title-text {
    font-size: clamp(56px, 8vw, 84px) !important;
    letter-spacing: 5px !important;
  }
}

.hero-subtitle {
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: center;
  max-width: 90%;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: clamp(18px, 2.5vw, 22px); letter-spacing: 1.5px; max-width: 800px; }
}

@media (min-width: 1024px) {
  .hero-subtitle { font-size: clamp(20px, 2.5vw, 24px); }
}

/* ABOUT US Section */
.about-section { 
  padding: 60px 0 50px; 
  background: #fff;
}

.section-heading { 
  font-size: 20px; 
  font-weight: 700; 
  letter-spacing: 1px; 
  text-align: center; 
  margin: 0 0 32px; 
  color: #1a1a1a;
}

@media (min-width: 768px) {
  .section-heading { font-size: 32px; margin: 0 0 56px; }
}

@media (min-width: 1024px) {
  .section-heading { font-size: 38px; margin: 0 0 64px; }
}

.about-intro { 
  font-size: 14px; 
  line-height: 2; 
  text-align: center; 
  color: #2a2a2a; 
  margin: 0 0 20px;
}

@media (min-width: 768px) {
  .about-intro { font-size: 18px; line-height: 2.2; }
}

@media (min-width: 1024px) {
  .about-intro { font-size: 20px; }
}

.about-detail { 
  font-size: 12px; 
  line-height: 2.2; 
  text-align: justify; 
  color: #555; 
  margin: 0;
}

@media (min-width: 768px) {
  .about-detail { font-size: 16px; }
}

@media (min-width: 1024px) {
  .about-detail { font-size: 18px; }
}

/* Philosophy Section */
.philosophy-section { 
  padding: 50px 0; 
  background: #fafafa;
}

.philosophy-text { 
  font-size: 13px; 
  line-height: 1.8; 
  text-align: center; 
  font-style: italic; 
  color: #333; 
  margin: 0 0 20px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .philosophy-text { font-size: 18px; }
}

@media (min-width: 1024px) {
  .philosophy-text { font-size: 21px; }
}

.philosophy-desc { 
  font-size: 11px; 
  line-height: 2.2; 
  text-align: center; 
  color: #555; 
  margin: 0;
}

@media (min-width: 768px) {
  .philosophy-desc { font-size: 15px; }
}

@media (min-width: 1024px) {
  .philosophy-desc { font-size: 17px; }
}

/* Cards Grid Section */
.cards-section { 
  padding: 50px 0; 
  background: #fff;
}

.card-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 12px;
}

@media (min-width: 768px) {
  .card-grid { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .card-grid { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.theme-card { 
  position: relative; 
  aspect-ratio: 3/4; 
  border-radius: 8px; 
  overflow: hidden; 
  display: flex; 
  align-items: flex-end; 
  padding: 16px 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.theme-card h3 { 
  font-size: 11px; 
  line-height: 1.6; 
  font-weight: 600; 
  color: #fff; 
  margin: 0; 
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .theme-card h3 { font-size: 15px; }
}

@media (min-width: 1024px) {
  .theme-card h3 { font-size: 17px; line-height: 1.8; }
}

/* Why Choose Section */
.why-section { 
  padding: 50px 0; 
  background: #fafafa;
}

.why-layout { 
  margin-top: 30px;
}

.why-image { 
  width: 100%; 
  margin-bottom: 24px;
}

.img-placeholder { 
  width: 100%; 
  aspect-ratio: 16/10; 
  border-radius: 8px; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.why-content { }

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

.why-list li { 
  font-size: 11px; 
  line-height: 2; 
  color: #333; 
  margin: 12px 0; 
  text-align: justify;
}

@media (min-width: 768px) {
  .why-list li { font-size: 15px; margin: 18px 0; }
}

@media (min-width: 1024px) {
  .why-list li { font-size: 17px; margin: 22px 0; }
}

/* Advantage Section */
.advantage-section { 
  padding: 50px 0; 
  background: #fff;
}

.advantage-layout { 
  margin-top: 30px;
}

.advantage-content { 
  margin-bottom: 24px;
}

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

.advantage-list li { 
  font-size: 11px; 
  line-height: 2; 
  color: #333; 
  margin: 12px 0; 
  text-align: justify;
}

@media (min-width: 768px) {
  .advantage-list li { font-size: 15px; margin: 18px 0; }
}

@media (min-width: 1024px) {
  .advantage-list li { font-size: 17px; margin: 22px 0; }
}

.advantage-image { 
  width: 100%;
}

/* VIP Section */
.vip-section { 
  padding: 50px 0; 
  background: #fafafa;
}

.vip-section .section-heading {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.vip-layout { 
  margin-top: 30px;
}

.vip-steps { 
  margin-bottom: 30px;
}

.vip-step { 
  margin-bottom: 32px;
}

.step-number { 
  font-size: 16px; 
  font-weight: 700; 
  color: #1a1a1a; 
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .step-number { font-size: 24px; margin-bottom: 14px; }
}

@media (min-width: 1024px) {
  .step-number { font-size: 28px; }
}

.step-title { 
  font-size: 13px; 
  font-weight: 600; 
  color: #1a1a1a; 
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .step-title { font-size: 17px; margin-bottom: 10px; }
}

@media (min-width: 1024px) {
  .step-title { font-size: 19px; }
}

.step-desc { 
  font-size: 11px; 
  line-height: 1.8; 
  color: #555; 
  text-align: justify;
}

@media (min-width: 768px) {
  .step-desc { font-size: 15px; line-height: 2; }
}

@media (min-width: 1024px) {
  .step-desc { font-size: 17px; }
}

.vip-image { 
  width: 100%;
}

/* Cases Section */
.cases-section { 
  padding: 50px 0 80px; 
  background: #fff;
}

.cases-section .section-heading {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.cases-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 12px;
}

@media (min-width: 768px) {
  .cases-grid { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .cases-grid { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px;
  }
}

.case-card { 
  position: relative; 
  aspect-ratio: 3/4; 
  border-radius: 8px; 
  overflow: hidden; 
  padding: 20px 16px; 
  display: flex; 
  flex-direction: column; 
  justify-content: flex-end;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.case-card h3 { 
  font-size: 13px; 
  line-height: 1.6; 
  font-weight: 700; 
  color: #fff; 
  margin: 0 0 12px; 
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

@media (min-width: 768px) {
  .case-card h3 { font-size: 17px; margin: 0 0 18px; }
}

@media (min-width: 1024px) {
  .case-card h3 { font-size: 19px; }
}

.case-card p { 
  font-size: 10px; 
  line-height: 1.8; 
  color: #fff; 
  margin: 0; 
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  opacity: 0.95;
}

@media (min-width: 768px) {
  .case-card p { font-size: 14px; }
}

@media (min-width: 1024px) {
  .case-card p { font-size: 16px; line-height: 2; }
}

/* Footer */
.site-footer { 
  border-top: 1px solid #eee; 
  padding: var(--space-6) 0; 
  background: #fafafa;
}

.footer-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  font-size: 13px;
}

@media (min-width: 768px) {
  .footer-inner { font-size: 16px; }
}

@media (min-width: 1024px) {
  .footer-inner { font-size: 18px; }
}

.footer-links { 
  display: flex; 
  gap: var(--space-6);
}

.footer-logo {
  width: 100px;
  height: 30px;
  background-image: url('./200.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 768px) {
  .footer-logo {
    width: 140px;
    height: 42px;
  }
}

@media (min-width: 1024px) {
  .footer-logo {
    width: 160px;
    height: 48px;
  }
}

@media (max-width: 700px) { 
  .footer-inner { flex-direction: column; gap: var(--space-4); }
}

/* Reveal Animation */
.reveal { 
  opacity: 0; 
  transform: translateY(18px); 
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in { 
  opacity: 1; 
  transform: translateY(0);
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Header */
.about-header { 
  background: #000; 
  padding: 30px 0 20px;
}

.about-title { 
  font-size: 18px; 
  font-weight: 700; 
  color: #fff; 
  margin: 0; 
  text-align: left;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .about-title { font-size: 28px; }
}

@media (min-width: 1024px) {
  .about-title { font-size: 32px; }
}

/* About Image Section */
.about-image-section { 
  padding: 0; 
  background: #fff;
}

.about-main-image { 
  width: 100%; 
  margin: 0;
}

/* Brand Intro Section */
.brand-intro-section { 
  padding: 30px 0; 
  background: #fff;
}

.brand-box { 
  background: #1a1a1a; 
  color: #fff; 
  padding: 24px 20px; 
  border-radius: 0;
}

.brand-box-title { 
  font-size: 16px; 
  font-weight: 700; 
  margin: 0 0 16px; 
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .brand-box-title { font-size: 24px; margin: 0 0 24px; }
}

@media (min-width: 1024px) {
  .brand-box-title { font-size: 28px; margin: 0 0 28px; }
}

.brand-box-text { 
  font-size: 11px; 
  line-height: 2.2; 
  margin: 0; 
  text-align: justify; 
  color: #e8e8e8;
}

@media (min-width: 768px) {
  .brand-box-text { font-size: 15px; }
}

@media (min-width: 1024px) {
  .brand-box-text { font-size: 17px; }
}

/* Serandipians Section */
.serandipians-section { 
  padding: 50px 0; 
  background: #fafafa;
}

.section-heading.center { 
  text-align: center;
}

.serandipians-subtitle { 
  font-size: 12px; 
  text-align: center; 
  margin: -20px 0 30px; 
  color: #333;
}

@media (min-width: 768px) {
  .serandipians-subtitle { font-size: 16px; }
}

@media (min-width: 1024px) {
  .serandipians-subtitle { font-size: 18px; }
}

.serandipians-logo { 
  width: 100%; 
  max-width: 280px; 
  margin: 0 auto 30px; 
  padding: 20px; 
  background: #fff; 
  border-radius: 8px; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.serandipians-logo svg { 
  width: 100%; 
  height: auto;
}

.serandipians-desc { 
  margin-top: 30px;
}

.desc-title { 
  font-size: 12px; 
  font-weight: 600; 
  text-align: center; 
  margin: 0 0 16px; 
  color: #1a1a1a;
}

@media (min-width: 768px) {
  .desc-title { font-size: 16px; }
}

@media (min-width: 1024px) {
  .desc-title { font-size: 18px; }
}

.desc-text { 
  font-size: 10px; 
  line-height: 2; 
  text-align: center; 
  margin: 0 0 16px; 
  color: #555;
}

@media (min-width: 768px) {
  .desc-text { font-size: 14px; }
}

@media (min-width: 1024px) {
  .desc-text { font-size: 16px; }
}

.desc-footer { 
  font-size: 10px; 
  line-height: 2; 
  text-align: center; 
  margin: 0; 
  color: #555;
}

@media (min-width: 768px) {
  .desc-footer { font-size: 14px; }
}

@media (min-width: 1024px) {
  .desc-footer { font-size: 16px; }
}

/* Partners Section */
.partners-section { 
  padding: 50px 0; 
  background: #fff;
}

.partners-grid { 
  display: grid; 
  grid-template-columns: repeat(7, 1fr); 
  gap: 1px; 
  background: #ddd; 
  border: 1px solid #ddd;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .partners-grid { 
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (min-width: 1024px) {
  .partners-grid { 
    grid-template-columns: repeat(10, 1fr);
  }
}

@media (max-width: 600px) {
  .partners-grid { 
    grid-template-columns: repeat(4, 1fr);
  }
}

.partner-logo { 
  background: #fff; 
  padding: 16px 8px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 9px; 
  font-weight: 600; 
  text-align: center; 
  color: #333; 
  min-height: 60px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .partner-logo { 
    font-size: 11px; 
    min-height: 80px;
    padding: 20px 12px;
  }
}

@media (min-width: 1024px) {
  .partner-logo { 
    font-size: 12px; 
    min-height: 90px;
    padding: 22px 14px;
  }
}

/* Contact Section */
.contact-section { 
  padding: 50px 0 80px; 
  background: #fafafa;
}

.qr-code-box { 
  text-align: center; 
  margin: 30px 0 40px;
}

.qr-placeholder { 
  width: 180px; 
  height: 180px; 
  margin: 0 auto 12px; 
  background: #fff; 
  border: 1px solid #ddd; 
  border-radius: 8px; 
  overflow: hidden; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

@media (min-width: 768px) {
  .qr-placeholder { 
    width: 260px; 
    height: 260px;
  }
}

@media (min-width: 1024px) {
  .qr-placeholder { 
    width: 300px; 
    height: 300px;
  }
}

.qr-placeholder svg { 
  width: 100%; 
  height: 100%;
}

.qr-label { 
  font-size: 13px; 
  font-weight: 600; 
  margin: 0; 
  color: #1a1a1a;
}

@media (min-width: 768px) {
  .qr-label { font-size: 17px; }
}

@media (min-width: 1024px) {
  .qr-label { font-size: 19px; }
}

.contact-list { 
  margin-top: 30px;
}

.contact-item { 
  display: flex; 
  align-items: center; 
  padding: 12px 0; 
  border-bottom: 1px solid #e8e8e8; 
  font-size: 12px;
}

@media (min-width: 768px) {
  .contact-item { 
    font-size: 16px;
    padding: 18px 0;
  }
}

@media (min-width: 1024px) {
  .contact-item { 
    font-size: 18px;
    padding: 20px 0;
  }
}

.contact-item:last-child { 
  border-bottom: none;
}

.contact-icon { 
  font-size: 16px; 
  margin-right: 12px; 
  min-width: 24px; 
  text-align: center;
}

@media (min-width: 768px) {
  .contact-icon { 
    font-size: 22px;
    margin-right: 18px;
    min-width: 30px;
  }
}

@media (min-width: 1024px) {
  .contact-icon { 
    font-size: 26px;
    min-width: 36px;
  }
}

.contact-label { 
  font-weight: 600; 
  color: #333; 
  min-width: 100px;
}

@media (min-width: 768px) {
  .contact-label { min-width: 140px; }
}

@media (min-width: 1024px) {
  .contact-label { min-width: 160px; }
}

.contact-value { 
  color: #666; 
  margin-left: auto;
}

/* ============================================
   BOOKING PAGE STYLES
   ============================================ */

/* Booking Intro Section */
.booking-intro-section { 
  padding: 30px 0; 
  background: #2a2a2a;
}

.intro-layout { 
  display: flex; 
  flex-direction: column; 
  gap: 20px;
}

.intro-image { 
  width: 100%;
}

.intro-text { 
  color: #e8e8e8;
}

.intro-text p { 
  font-size: 11px; 
  line-height: 2.2; 
  margin: 0; 
  text-align: justify;
}

@media (min-width: 768px) {
  .intro-text p { font-size: 15px; }
}

@media (min-width: 1024px) {
  .intro-text p { font-size: 17px; }
}

/* Process Section */
.process-section { 
  padding: 50px 0; 
  background: #fff;
}

.process-image-box { 
  width: 100%; 
  margin: 30px 0;
}

.process-list { 
  list-style: decimal; 
  padding-left: 20px; 
  margin: 30px 0;
}

.process-list li { 
  font-size: 11px; 
  line-height: 2; 
  color: #333; 
  margin: 12px 0; 
  text-align: justify;
}

@media (min-width: 768px) {
  .process-list li { font-size: 15px; margin: 18px 0; }
}

@media (min-width: 1024px) {
  .process-list li { font-size: 17px; margin: 22px 0; }
}

.process-note { 
  margin-top: 30px; 
  padding: 16px; 
  background: #f8f8f8; 
  border-radius: 8px;
}

.process-note p { 
  font-size: 12px; 
  font-weight: 600; 
  margin: 0 0 12px; 
  color: #1a1a1a;
}

@media (min-width: 768px) {
  .process-note p { font-size: 16px; }
}

@media (min-width: 1024px) {
  .process-note p { font-size: 18px; }
}

.process-note ul { 
  list-style: disc; 
  padding-left: 20px; 
  margin: 0;
}

.process-note li { 
  font-size: 11px; 
  line-height: 2; 
  color: #555; 
  margin: 8px 0;
}

@media (min-width: 768px) {
  .process-note li { font-size: 15px; margin: 12px 0; }
}

@media (min-width: 1024px) {
  .process-note li { font-size: 17px; margin: 14px 0; }
}

/* Custom Process Section */
.custom-process-section { 
  padding: 50px 0; 
  background: #fafafa;
}

.custom-image-box { 
  width: 100%; 
  margin: 30px 0;
}

.custom-block { 
  margin: 30px 0;
}

.custom-block-title { 
  font-size: 14px; 
  font-weight: 700; 
  margin: 0 0 16px; 
  color: #1a1a1a;
}

@media (min-width: 768px) {
  .custom-block-title { font-size: 18px; margin: 0 0 22px; }
}

@media (min-width: 1024px) {
  .custom-block-title { font-size: 20px; margin: 0 0 26px; }
}

.custom-block-text { 
  font-size: 11px; 
  line-height: 2.2; 
  margin: 0; 
  text-align: justify; 
  color: #333;
}

@media (min-width: 768px) {
  .custom-block-text { font-size: 15px; }
}

@media (min-width: 1024px) {
  .custom-block-text { font-size: 17px; }
}

.price-table { 
  margin: 20px 0;
}

.price-table table { 
  width: 100%; 
  border-collapse: collapse; 
  border: 1px solid #ddd; 
  background: #fff;
}

.price-table th, 
.price-table td { 
  padding: 12px 16px; 
  border: 1px solid #ddd; 
  font-size: 11px; 
  text-align: left;
}

@media (min-width: 768px) {
  .price-table th, 
  .price-table td { 
    padding: 16px 20px; 
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .price-table th, 
  .price-table td { 
    padding: 18px 24px; 
    font-size: 17px;
  }
}

.price-table thead th { 
  background: #f5f5f5; 
  font-weight: 600; 
  color: #1a1a1a;
}

.price-table tbody td { 
  color: #333;
}

.price-note { 
  margin-top: 16px;
}

.price-note p { 
  font-size: 12px; 
  font-weight: 600; 
  margin: 0 0 12px; 
  color: #1a1a1a;
}

@media (min-width: 768px) {
  .price-note p { font-size: 16px; }
}

@media (min-width: 1024px) {
  .price-note p { font-size: 18px; }
}

.price-note ol { 
  list-style: none; 
  padding: 0; 
  margin: 0;
}

.price-note li { 
  font-size: 10px; 
  line-height: 2; 
  color: #555; 
  margin: 8px 0; 
  text-align: justify;
}

@media (min-width: 768px) {
  .price-note li { font-size: 14px; margin: 12px 0; }
}

@media (min-width: 1024px) {
  .price-note li { font-size: 16px; margin: 14px 0; }
}

/* Notice Section */
.notice-section { 
  padding: 50px 0; 
  background: #fff;
}

.notice-block { 
  margin: 30px 0;
}

.notice-title { 
  font-size: 13px; 
  font-weight: 700; 
  margin: 0 0 12px; 
  color: #1a1a1a;
}

@media (min-width: 768px) {
  .notice-title { font-size: 17px; margin: 0 0 18px; }
}

@media (min-width: 1024px) {
  .notice-title { font-size: 19px; margin: 0 0 22px; }
}

.notice-text { 
  font-size: 11px; 
  line-height: 2.2; 
  margin: 0; 
  text-align: justify; 
  color: #333;
}

@media (min-width: 768px) {
  .notice-text { font-size: 15px; }
}

@media (min-width: 1024px) {
  .notice-text { font-size: 17px; }
}

/* Attention Section */
.attention-section { 
  padding: 50px 0 80px; 
  background: #fafafa;
}

.attention-image-box { 
  width: 100%; 
  margin: 30px 0;
}

.attention-block { 
  margin: 30px 0;
}

.attention-title { 
  font-size: 13px; 
  font-weight: 700; 
  margin: 0 0 12px; 
  color: #1a1a1a;
}

@media (min-width: 768px) {
  .attention-title { font-size: 17px; margin: 0 0 18px; }
}

@media (min-width: 1024px) {
  .attention-title { font-size: 19px; margin: 0 0 22px; }
}

.attention-text { 
  font-size: 11px; 
  line-height: 2.2; 
  margin: 0; 
  text-align: justify; 
  color: #333;
}

@media (min-width: 768px) {
  .attention-text { font-size: 15px; }
}

@media (min-width: 1024px) {
  .attention-text { font-size: 17px; }
}