:root{
  --primary:#2B1A12;
  --primary-dark:#211410;
  --accent:#C49A5A;
  --accent-dark:#AE8548;
  --accent-light:rgba(196,154,90,.12);
  --bg-a:#F6F1E7;
  --bg-b:#1F2A22;
  --bg-c:#FBF7EF;
  --green:#5C7A5E;
  --text:#2B211A;
  --text-light:#6B5D4F;
  --text-dark-bg:#F1E8DA;
  --border:rgba(196,154,90,.25);
  --radius:12px;
  --radius-btn:8px;
  --shadow:0 2px 12px rgba(43,26,18,.08);
  --shadow-hover:0 12px 28px rgba(43,26,18,.14);
  --spacer:96px;
  --spacer-mobile:64px;
  --container:1200px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Noto Sans SC',sans-serif;
  font-size:16px;
  line-height:1.7;
  color:var(--text);
  background:var(--bg-a);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
.container{max-width:var(--container);margin:0 auto;padding:0 24px;}
.section{padding:var(--spacer) 0;}
.section-header{margin-bottom:52px;text-align:center;}
.section-kicker{display:inline-block;font-size:14px;font-weight:500;letter-spacing:2px;color:var(--accent-dark);background:var(--accent-light);border-radius:999px;padding:6px 18px;margin-bottom:16px;}
.section-title{font-family:'Noto Serif SC',serif;font-size:32px;font-weight:700;color:var(--text);line-height:1.3;}
.section-desc{font-size:16px;color:var(--text-light);max-width:680px;margin:16px auto 0;}
@media(max-width:992px){
  .section-title{font-size:28px;}
  .section-desc{font-size:15px;}
}
@media(max-width:767px){
  .section{padding:var(--spacer-mobile) 0;}
  .section-title{font-size:24px;}
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 28px;border-radius:var(--radius-btn);
  font-family:'Noto Sans SC',sans-serif;font-size:16px;font-weight:500;
  border:1px solid transparent;cursor:pointer;
  transition:all .3s ease;text-decoration:none;line-height:1.4;
}
.btn-primary{background:var(--accent);color:var(--primary);border-color:var(--accent);}
.btn-primary:hover{background:var(--accent-dark);border-color:var(--accent-dark);transform:translateY(-2px);box-shadow:var(--shadow-hover);}
.btn-primary:active{transform:translateY(1px);}
.btn-outline{background:transparent;color:var(--accent);border-color:var(--accent);}
.btn-outline:hover{background:var(--accent-light);border-color:var(--accent);}
.btn-outline:active{transform:translateY(1px);}
.btn-large{padding:16px 36px;font-size:17px;}
.btn-small{padding:8px 18px;font-size:14px;}
.btn .arrow{display:inline-block;transition:transform .3s;}
.btn:hover .arrow{transform:translateX(4px);}
.btn:focus-visible{outline:3px solid rgba(196,154,90,.5);outline-offset:2px;}
.hero .btn-outline{color:var(--text-dark-bg);border-color:var(--accent);}
.hero .btn-outline:hover{background:rgba(196,154,90,.15);color:#fff;}

/* ===== Header ===== */
.site-header{position:sticky;top:0;z-index:1000;box-shadow:0 2px 12px rgba(0,0,0,.12);transition:box-shadow .3s;}
.site-header.scrolled{box-shadow:0 4px 20px rgba(0,0,0,.25);}
.header-brand{background:var(--primary);height:64px;}
.header-brand .container{display:flex;align-items:center;justify-content:space-between;height:64px;}
.logo{display:flex;align-items:baseline;gap:10px;}
.logo-name{font-family:'Noto Serif SC',serif;font-size:22px;font-weight:700;color:var(--accent);letter-spacing:2px;}
.logo-sub{font-size:13px;color:var(--text-dark-bg);opacity:.85;letter-spacing:1px;}
.header-actions{display:flex;align-items:center;gap:16px;}
.hotline-btn{display:inline-flex;}
.header-toggle{display:none;flex-direction:column;gap:5px;width:40px;height:40px;align-items:center;justify-content:center;border-radius:8px;transition:background .3s;}
.header-toggle span{display:block;width:20px;height:2px;background:var(--text-dark-bg);transition:transform .3s,opacity .3s;border-radius:2px;}
.header-toggle:hover{background:rgba(255,255,255,.06);}
.header-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.header-toggle.open span:nth-child(2){opacity:0;}
.header-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
.header-nav{background:var(--primary-dark);height:48px;border-top:1px solid rgba(255,255,255,.04);}
.header-nav .container{display:flex;align-items:center;justify-content:space-between;height:48px;}
.channel-nav{display:flex;align-items:center;gap:4px;height:48px;overflow-x:auto;scrollbar-width:none;}
.channel-nav::-webkit-scrollbar{display:none;}
.nav-link{
  display:inline-flex;align-items:center;height:48px;padding:0 20px;
  font-size:15px;font-weight:500;color:var(--text-dark-bg);
  border-bottom:2px solid transparent;transition:color .3s,border-color .3s,background .3s;
  white-space:nowrap;
}
.nav-link:hover{color:var(--accent);background:rgba(196,154,90,.06);}
.nav-link.active{color:var(--accent);border-bottom-color:var(--accent);background:rgba(196,154,90,.04);}
.nav-aside{display:flex;align-items:center;gap:12px;}
.nav-time{font-size:13px;color:var(--text-dark-bg);opacity:.7;}
@media(max-width:767px){
  .header-toggle{display:flex;}
  .hotline-btn{display:none;}
  .header-nav{
    display:none;
    position:fixed;top:64px;left:0;right:0;
    background:var(--primary);
    height:auto;border-top:1px solid rgba(255,255,255,.08);
    padding:16px 0;box-shadow:0 12px 28px rgba(0,0,0,.3);
  }
  .header-nav.open{display:block;}
  .header-nav .container{flex-direction:column;align-items:stretch;height:auto;gap:8px;}
  .channel-nav{flex-direction:column;align-items:stretch;height:auto;gap:4px;}
  .nav-link{height:48px;padding:0 20px;border-bottom:none;border-left:3px solid transparent;}
  .nav-link.active{border-bottom:none;border-left-color:var(--accent);background:rgba(196,154,90,.08);}
  .nav-link:hover{border-left-color:var(--accent-dark);}
  .nav-aside{padding:8px 20px 4px;border-top:1px solid rgba(255,255,255,.06);}
  .nav-time{font-size:12px;}
}

/* ===== Hero ===== */
.hero{
  position:relative;background-color:var(--bg-b);
  background-size:cover;background-position:center;
  color:var(--text-dark-bg);overflow:hidden;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(120deg,rgba(31,42,34,.96) 0%,rgba(31,42,34,.82) 45%,rgba(31,42,34,.45) 100%);
  z-index:1;
}
.hero-inner{position:relative;z-index:2;display:grid;grid-template-columns:1.1fr .9fr;gap:60px;align-items:center;padding-top:88px;padding-bottom:100px;}
.hero-kicker{
  display:inline-block;font-size:14px;font-weight:500;letter-spacing:3px;
  color:var(--accent);background:rgba(196,154,90,.12);
  border:1px solid rgba(196,154,90,.3);border-radius:999px;
  padding:6px 20px;margin-bottom:22px;
}
.hero-title{
  font-family:'Noto Serif SC',serif;font-size:44px;font-weight:700;
  line-height:1.3;color:#fff;margin-bottom:20px;
}
.hero-title span{color:var(--accent);}
.hero-sub{
  font-size:17px;line-height:1.8;color:rgba(241,232,218,.85);
  max-width:520px;margin-bottom:32px;
}
.hero-ctas{display:flex;flex-wrap:wrap;gap:16px;margin-bottom:36px;}
.hero-stats{display:flex;flex-wrap:wrap;gap:32px;border-top:1px solid rgba(255,255,255,.12);padding-top:24px;}
.hero-stats span{font-size:14px;color:rgba(241,232,218,.7);}
.hero-stats strong{display:block;font-size:24px;font-weight:700;color:var(--accent);font-family:'Noto Serif SC',serif;}
.hero-visual{position:relative;z-index:2;display:flex;align-items:center;justify-content:center;}
.hero-img{
  width:420px;height:420px;border-radius:50%;
  background-size:cover;background-position:center;
  border:6px solid var(--accent);box-shadow:0 20px 60px rgba(0,0,0,.35);
  position:relative;
}
.hero-img::after{
  content:'';position:absolute;inset:-24px;border-radius:50%;
  border:1px dashed rgba(196,154,90,.5);
}
.hero-slots{
  position:relative;z-index:2;
  background:rgba(0,0,0,.25);border-top:1px solid rgba(196,154,90,.2);
  padding:20px 0;display:flex;flex-wrap:wrap;gap:12px;align-items:center;
}
.slot-label{font-size:13px;color:rgba(241,232,218,.7);margin-right:8px;padding-left:0;}
.slot{
  font-size:14px;color:var(--text-dark-bg);
  background:rgba(255,255,255,.06);border:1px solid rgba(196,154,90,.3);
  border-radius:999px;padding:6px 18px;cursor:pointer;transition:all .3s;
}
.slot:hover{background:var(--accent);color:var(--primary);border-color:var(--accent);}
@media(max-width:1200px){
  .hero-img{width:360px;height:360px;}
}
@media(max-width:992px){
  .hero-inner{grid-template-columns:1fr;gap:48px;padding-top:60px;padding-bottom:70px;}
  .hero-title{font-size:36px;}
  .hero-sub{font-size:16px;}
  .hero-visual{display:none;}
}
@media(max-width:767px){
  .hero-inner{padding-top:48px;padding-bottom:60px;gap:40px;}
  .hero-title{font-size:28px;}
  .hero-sub{font-size:15px;}
  .hero-ctas{flex-direction:column;gap:12px;}
  .hero-ctas .btn{width:100%;}
  .hero-stats{gap:20px;flex-wrap:wrap;}
  .hero-stats span{font-size:13px;}
  .hero-stats strong{font-size:20px;}
  .slot-label{width:100%;}
}

/* ===== Pain ===== */
.pain{background:var(--bg-a);}
.pain-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;}
.pain-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  padding:28px 30px;transition:all .3s ease;display:flex;gap:20px;align-items:flex-start;
}
.pain-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-4px);}
.pain-icon{flex-shrink:0;width:48px;height:48px;border-radius:12px;background:var(--accent-light);display:flex;align-items:center;justify-content:center;color:var(--accent-dark);}
.pain-card h3{font-size:18px;font-weight:600;color:var(--text);margin-bottom:6px;font-family:'Noto Serif SC',serif;}
.pain-card p{font-size:15px;color:var(--text-light);line-height:1.6;}
@media(max-width:767px){
  .pain-grid{grid-template-columns:1fr;gap:16px;}
  .pain-card{padding:22px;flex-direction:column;gap:12px;}
}

/* ===== Solution ===== */
.solution{background:#EFE6D8;}
.solution-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;position:relative;}
.step-card{
  background:var(--bg-c);border:1px solid var(--border);border-radius:var(--radius);
  padding:32px 28px;position:relative;transition:all .3s ease;
}
.step-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-4px);}
.step-num{
  font-family:'Noto Serif SC',serif;font-size:48px;font-weight:700;
  color:var(--accent);opacity:.25;line-height:1;margin-bottom:20px;
}
.step-card h3{font-size:20px;font-weight:600;color:var(--text);margin-bottom:8px;font-family:'Noto Serif SC',serif;}
.step-card p{font-size:15px;color:var(--text-light);line-height:1.7;}
.step-img{
  width:100%;height:160px;border-radius:8px;background-size:cover;background-position:center;
  margin-bottom:20px;border:1px solid var(--border);
}
.step-connector{display:none;}
@media(min-width:1200px){
  .step-connector{
    display:block;position:absolute;top:80px;left:33.33%;width:33.33%;
    border-top:2px dashed var(--accent);opacity:.4;z-index:0;
  }
}
@media(max-width:992px){
  .solution-steps{grid-template-columns:1fr;gap:20px;}
  .step-connector{display:none;}
}

/* ===== Stats/Achievement ===== */
.stats{background:var(--primary);color:var(--text-dark-bg);}
.stats .section-title{color:#fff;}
.stats .section-desc{color:rgba(241,232,218,.7);}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;margin-bottom:56px;}
.stat-card{text-align:center;padding:24px 16px;border-right:1px solid rgba(255,255,255,.08);}
.stat-card:last-child{border-right:none;}
.stat-num{font-family:'Noto Serif SC',serif;font-size:44px;font-weight:700;color:var(--accent);line-height:1.2;}
.stat-unit{font-size:18px;color:var(--accent);margin-left:4px;}
.stat-label{font-size:14px;color:rgba(241,232,218,.65);margin-top:8px;}
.rating-wrap{display:grid;grid-template-columns:1fr 1fr;gap:40px;}
.rating-item{display:flex;flex-direction:column;gap:12px;padding:20px 0;border-bottom:1px solid rgba(255,255,255,.06);}
.rating-head{display:flex;justify-content:space-between;align-items:center;}
.rating-name{font-size:15px;color:var(--text-dark-bg);}
.rating-val{font-size:16px;font-weight:600;color:var(--accent);}
.rating-bar{height:6px;background:rgba(255,255,255,.08);border-radius:999px;overflow:hidden;}
.rating-fill{height:100%;background:var(--accent);border-radius:999px;transition:width 1s ease;}
@media(max-width:992px){
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:20px;}
  .stat-card{border-right:none;border-bottom:1px solid rgba(255,255,255,.06);}
  .rating-wrap{grid-template-columns:1fr;gap:16px;}
}
@media(max-width:767px){
  .stats-grid{grid-template-columns:1fr 1fr;gap:16px;}
  .stat-num{font-size:34px;}
  .rating-wrap{grid-template-columns:1fr;}
}

/* ===== Assurance ===== */
.assurance{background:var(--bg-c);}
.assurance-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.assurance-item{
  text-align:center;padding:32px 20px;background:#fff;
  border:1px solid var(--border);border-radius:var(--radius);
  transition:all .3s ease;
}
.assurance-item:hover{box-shadow:var(--shadow-hover);transform:translateY(-4px);}
.assurance-icon{width:64px;height:64px;margin:0 auto 18px;border-radius:50%;background:var(--accent-light);color:var(--accent-dark);display:flex;align-items:center;justify-content:center;}
.assurance-item h3{font-size:18px;font-weight:600;color:var(--text);margin-bottom:8px;font-family:'Noto Serif SC',serif;}
.assurance-item p{font-size:14px;color:var(--text-light);}
@media(max-width:1200px){.assurance-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:767px){.assurance-grid{grid-template-columns:1fr;}}

/* ===== Testimonials ===== */
.testimonials{background:var(--bg-a);}
.testimonial-layout{display:grid;grid-template-columns:360px 1fr;gap:40px;align-items:stretch;}
.rating-card{
  background:var(--primary);border-radius:var(--radius);color:var(--text-dark-bg);
  padding:40px 32px;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;
}
.rating-score{font-family:'Noto Serif SC',serif;font-size:56px;font-weight:700;color:var(--accent);line-height:1;}
.rating-stars{font-size:22px;color:var(--accent);letter-spacing:4px;margin:16px 0 8px;}
.rating-count{font-size:14px;color:rgba(241,232,218,.6);}
.testimonial-list{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;}
.testimonial-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  padding:24px;display:flex;flex-direction:column;gap:12px;transition:all .3s ease;
}
.testimonial-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-4px);}
.t-head{display:flex;align-items:center;justify-content:space-between;}
.t-name{font-weight:500;color:var(--text);font-size:15px;}
.t-time{font-size:13px;color:var(--text-light);}
.t-stars{font-size:14px;color:var(--accent);}
.t-text{font-size:15px;color:var(--text-light);line-height:1.7;}
.t-tag{align-self:flex-start;font-size:13px;color:var(--accent-dark);background:var(--accent-light);border-radius:999px;padding:4px 14px;}
@media(max-width:992px){
  .testimonial-layout{grid-template-columns:1fr;}
  .testimonial-list{grid-template-columns:1fr;}
}
@media(max-width:767px){
  .testimonial-list{grid-template-columns:1fr;}
  .rating-card{padding:28px 20px;}
}

/* ===== News ===== */
.news{background:#fff;}
.news-layout{display:grid;grid-template-columns:2fr 1fr;gap:48px;}
.news-list{display:flex;flex-direction:column;gap:4px;}
.news-item{
  display:flex;align-items:center;gap:16px;padding:18px 0;
  border-bottom:1px solid rgba(43,26,18,.06);transition:all .3s;
}
.news-item:hover{padding-left:12px;}
.news-date{flex-shrink:0;width:80px;font-size:13px;color:var(--text-light);}
.news-title{font-size:16px;font-weight:500;color:var(--text);transition:color .3s;}
.news-item:hover .news-title{color:var(--accent-dark);}
.news-arrow{color:var(--accent);margin-left:auto;opacity:0;transition:opacity .3s;font-size:18px;}
.news-item:hover .news-arrow{opacity:1;}
.news-sidebar{
  background:var(--bg-c);border:1px solid var(--border);border-radius:var(--radius);
  padding:32px 28px;
}
.news-sidebar h3{font-size:20px;font-weight:600;font-family:'Noto Serif SC',serif;margin-bottom:16px;color:var(--text);}
.news-sidebar p{font-size:15px;color:var(--text-light);line-height:1.7;margin-bottom:20px;}
.sidebar-badge{display:inline-block;background:var(--accent);color:var(--primary);font-size:14px;font-weight:500;border-radius:999px;padding:6px 18px;}
@media(max-width:992px){.news-layout{grid-template-columns:1fr;gap:32px;}}
@media(max-width:767px){
  .news-date{width:60px;}
  .news-title{font-size:15px;}
  .news-arrow{display:none;}
}

/* ===== FAQ ===== */
.faq{background:var(--bg-c);}
.faq-wrap{max-width:820px;margin:0 auto;}
.faq-item{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  margin-bottom:16px;overflow:hidden;transition:box-shadow .3s;
}
.faq-item:hover{box-shadow:var(--shadow);}
.faq-item.open{box-shadow:var(--shadow);border-color:var(--accent);}
.faq-q{
  width:100%;display:flex;justify-content:space-between;align-items:center;gap:16px;
  padding:22px 26px;font-size:17px;font-weight:500;color:var(--text);
  text-align:left;transition:background .3s;
}
.faq-q:hover{background:var(--accent-light);}
.faq-icon{flex-shrink:0;width:24px;height:24px;border-radius:50%;background:var(--accent-light);color:var(--accent-dark);display:flex;align-items:center;justify-content:center;font-size:16px;transition:transform .3s;font-weight:700;}
.faq-item.open .faq-icon{transform:rotate(45deg);background:var(--accent);color:var(--primary);}
.faq-a{
  max-height:0;overflow:hidden;transition:max-height .4s ease;padding:0 26px;
  font-size:15px;color:var(--text-light);line-height:1.8;
}
.faq-item.open .faq-a{max-height:500px;padding:0 26px 24px;}
@media(max-width:767px){
  .faq-q{font-size:15px;padding:18px 18px;}
  .faq-a{padding:0 18px;}
  .faq-item.open .faq-a{padding:0 18px 20px;}
}

/* ===== CTA ===== */
.cta-section{
  background-color:var(--bg-b);background-size:cover;background-position:center;
  position:relative;padding:var(--spacer) 0;
}
.cta-overlay{position:absolute;inset:0;background:rgba(31,42,34,.85);}
.cta-box{
  position:relative;z-index:2;max-width:800px;margin:0 auto;
  background:rgba(31,42,34,.6);border:2px solid var(--accent);
  border-radius:var(--radius);padding:56px 48px;text-align:center;
  outline:4px solid rgba(196,154,90,.12);outline-offset:-12px;
  background-image:
    linear-gradient(135deg, rgba(196,154,90,.12) 25%, transparent 25%),
    linear-gradient(225deg, rgba(196,154,90,.12) 25%, transparent 25%);
  background-size:20px 20px;
}
.cta-box .section-kicker{background:var(--accent);color:var(--primary);}
.cta-box h2{
  font-family:'Noto Serif SC',serif;font-size:34px;font-weight:700;color:#fff;
  line-height:1.4;margin-bottom:18px;
}
.cta-box h2 span{color:var(--accent);}
.cta-box p{font-size:17px;color:rgba(241,232,218,.85);max-width:560px;margin:0 auto 32px;}
.cta-info{display:flex;flex-wrap:wrap;justify-content:center;gap:24px;margin-bottom:32px;padding-top:24px;border-top:1px dashed rgba(196,154,90,.4);}
.cta-info-item{font-size:14px;color:rgba(241,232,218,.8);display:flex;align-items:center;gap:8px;}
.cta-info-item strong{color:var(--accent);font-weight:500;}
.cta-btn-large{font-size:18px;padding:18px 48px;}
@media(max-width:767px){
  .cta-box{padding:36px 24px;}
  .cta-box h2{font-size:26px;}
  .cta-box p{font-size:15px;}
  .cta-info{flex-direction:column;gap:12px;text-align:left;}
  .cta-btn-large{width:100%;}
}

/* ===== Footer ===== */
.site-footer{background:var(--primary);color:var(--text-dark-bg);padding:56px 0 0;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:48px;padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,.06);}
.footer-brand .logo{margin-bottom:16px;}
.footer-brand p{font-size:14px;color:rgba(241,232,218,.6);line-height:1.8;max-width:320px;}
.footer-col h4{font-size:15px;font-weight:600;color:var(--accent);margin-bottom:18px;letter-spacing:1px;}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:10px;}
.footer-links a{font-size:14px;color:rgba(241,232,218,.7);transition:color .3s,padding-left .3s;}
.footer-links a:hover{color:var(--accent);padding-left:6px;}
.footer-contact{list-style:none;display:flex;flex-direction:column;gap:10px;font-size:14px;color:rgba(241,232,218,.7);}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding:20px 0;flex-wrap:wrap;gap:8px;}
.footer-bottom p{font-size:13px;color:rgba(241,232,218,.4);}
.footer-bottom .icp{font-size:13px;color:rgba(241,232,218,.4);}
@media(max-width:992px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px;}
}
@media(max-width:767px){
  .footer-grid{grid-template-columns:1fr;gap:28px;padding-bottom:24px;}
  .footer-bottom{flex-direction:column;text-align:center;}
}

/* ===== Utility ===== */
.icon-svg{width:24px;height:24px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}

:root {
            --primary: #2B1A12;
            --primary-dark: #211410;
            --accent: #C49A5A;
            --accent-hover: #AE8548;
            --accent-soft: rgba(196, 154, 90, .12);
            --bg-warm: #F6F1E7;
            --bg-dark: #1F2A22;
            --green: #5C7A5E;
            --text-main: #2B211A;
            --text-muted: #6B5D4F;
            --text-light: #F1E8DA;
            --border: rgba(196, 154, 90, .25);
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-pill: 999px;
            --shadow: 0 2px 12px rgba(43, 26, 18, .08);
            --shadow-hover: 0 12px 28px rgba(43, 26, 18, .14);
            --container: 1200px;
            --header-h: 64px;
            --channel-h: 48px;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Noto Sans SC', sans-serif;
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-main);
            background: var(--bg-warm);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        button {
            font-family: inherit;
            border: none;
            background: none;
            cursor: pointer;
        }
        h1,
        h2,
        h3,
        h4 {
            font-family: 'Noto Serif SC', serif;
            line-height: 1.3;
        }
        ul,
        ol {
            list-style: none;
        }
        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== Header ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
            transition: box-shadow .3s;
        }
        .site-header.scrolled {
            box-shadow: 0 6px 24px rgba(0, 0, 0, .28);
        }
        .header-brand {
            background: var(--primary);
            height: var(--header-h);
        }
        .header-brand .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .logo {
            display: inline-flex;
            align-items: baseline;
            gap: 10px;
        }
        .logo-name {
            font-family: 'Noto Serif SC', serif;
            font-size: 26px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 3px;
            line-height: 1.2;
        }
        .logo-sub {
            font-size: 13px;
            color: rgba(241, 232, 218, .65);
            letter-spacing: 1px;
            font-weight: 400;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .hotline-btn {
            color: var(--accent);
            border-color: rgba(196, 154, 90, .5);
            font-size: 14px;
        }
        .hotline-btn:hover {
            background: rgba(196, 154, 90, .1);
            border-color: var(--accent);
        }
        .header-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 10px;
            border-radius: 6px;
        }
        .header-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
            transition: transform .3s, opacity .3s;
        }
        .header-toggle.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .header-toggle.open span:nth-child(2) {
            opacity: 0;
        }
        .header-toggle.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        .header-nav {
            background: var(--primary-dark);
            min-height: var(--channel-h);
        }
        .header-nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: var(--channel-h);
        }
        .channel-nav {
            display: flex;
            align-items: center;
            gap: 2px;
            height: var(--channel-h);
            overflow-x: auto;
            scrollbar-width: none;
        }
        .channel-nav::-webkit-scrollbar {
            display: none;
        }
        .nav-link {
            display: inline-flex;
            align-items: center;
            height: var(--channel-h);
            padding: 0 22px;
            color: rgba(241, 232, 218, .82);
            font-size: 15px;
            font-weight: 500;
            position: relative;
            white-space: nowrap;
            transition: color .2s;
        }
        .nav-link:hover {
            color: var(--accent);
        }
        .nav-link:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: -2px;
            border-radius: 4px;
        }
        .nav-link.active {
            color: var(--accent);
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 18px;
            right: 18px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }
        .nav-aside {
            color: rgba(241, 232, 218, .55);
            font-size: 13px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-time::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--green);
            display: inline-block;
            margin-right: 6px;
        }

        /* ===== Buttons ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 500;
            border: 1px solid transparent;
            transition: all .25s ease;
            cursor: pointer;
            line-height: 1.4;
            text-align: center;
        }
        .btn:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        .btn-primary {
            background: var(--accent);
            color: var(--primary);
            border-color: var(--accent);
        }
        .btn-primary:hover {
            background: var(--accent-hover);
            border-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .btn-primary:active {
            transform: translateY(0);
            box-shadow: none;
        }
        .btn-outline {
            background: transparent;
            color: var(--accent);
            border-color: rgba(196, 154, 90, .5);
        }
        .btn-outline:hover {
            background: rgba(196, 154, 90, .12);
            border-color: var(--accent);
        }
        .btn-outline:active {
            background: rgba(196, 154, 90, .2);
        }
        .btn-small {
            padding: 7px 16px;
            font-size: 14px;
        }
        .btn-large {
            padding: 14px 38px;
            font-size: 16px;
        }
        .btn-full {
            width: 100%;
        }
        .btn .arrow {
            margin-left: 8px;
            transition: transform .2s;
        }
        .btn:hover .arrow {
            transform: translateX(4px);
        }

        /* ===== Page Hero ===== */
        .page-hero {
            position: relative;
            background-size: cover;
            background-position: center;
            background-color: var(--bg-dark);
            padding: 64px 0 40px;
            color: var(--text-light);
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(100deg, rgba(31, 42, 34, .94) 30%, rgba(31, 42, 34, .65) 70%, rgba(31, 42, 34, .45));
        }
        .page-hero .container {
            position: relative;
            z-index: 1;
        }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--accent);
            letter-spacing: 2px;
            margin-bottom: 14px;
            font-weight: 500;
        }
        .hero-eyebrow::before {
            content: '';
            width: 24px;
            height: 1px;
            background: var(--accent);
        }
        .page-hero h1 {
            font-size: 40px;
            font-weight: 700;
            color: var(--text-light);
            line-height: 1.25;
            max-width: 760px;
            margin-bottom: 16px;
        }
        .page-hero .hero-desc {
            font-size: 16px;
            color: rgba(241, 232, 218, .85);
            max-width: 640px;
            line-height: 1.8;
            margin-bottom: 32px;
        }

        /* ===== Filter Bar ===== */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            padding: 16px 20px;
            background: rgba(43, 26, 18, .55);
            border: 1px solid rgba(196, 154, 90, .25);
            border-radius: var(--radius-card);
            max-width: 75%;
        }
        .filter-label {
            font-size: 13px;
            color: rgba(241, 232, 218, .65);
            margin-right: 4px;
        }
        .filter-pill {
            display: inline-block;
            padding: 6px 18px;
            border-radius: var(--radius-pill);
            background: rgba(241, 232, 218, .08);
            border: 1px solid rgba(196, 154, 90, .3);
            color: rgba(241, 232, 218, .85);
            font-size: 14px;
            transition: all .2s;
            cursor: pointer;
        }
        .filter-pill:hover {
            background: rgba(196, 154, 90, .2);
            border-color: var(--accent);
        }
        .filter-pill:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        .filter-pill.active {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--primary);
            font-weight: 500;
        }

        /* ===== Tea Grid ===== */
        .tea-list-section {
            padding: 72px 0 96px;
            background: var(--bg-warm);
        }
        .section-head {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 48px;
        }
        .section-head h2 {
            font-size: 32px;
            color: var(--text-main);
            margin-bottom: 12px;
            font-weight: 700;
        }
        .section-head p {
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.7;
        }
        .tea-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }
        .tea-card {
            background: #fff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform .3s, box-shadow .3s;
            display: flex;
            flex-direction: column;
        }
        .tea-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .tea-card:active {
            transform: translateY(-1px);
        }
        .tea-card-cover {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: var(--bg-warm);
        }
        .tea-card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .45s ease;
        }
        .tea-card:hover .tea-card-cover img {
            transform: scale(1.04);
        }
        .tea-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--accent);
            color: var(--primary);
            font-size: 12px;
            padding: 4px 14px;
            border-radius: var(--radius-pill);
            font-weight: 500;
            letter-spacing: .5px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
        }
        .tea-badge.badge-green {
            background: var(--green);
            color: #fff;
        }
        .tea-price {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(43, 26, 18, .82);
            color: var(--text-light);
            font-size: 14px;
            font-weight: 500;
            padding: 4px 14px;
            border-radius: var(--radius-pill);
            backdrop-filter: none;
        }
        .tea-card-body {
            padding: 22px 22px 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex: 1;
        }
        .tea-card-body h3 {
            font-size: 19px;
            font-weight: 600;
            color: var(--text-main);
            letter-spacing: .3px;
        }
        .tea-card-body>p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.65;
            flex: 1;
        }
        .tea-card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
            border-top: 1px solid rgba(196, 154, 90, .1);
            padding-top: 10px;
            margin-top: 2px;
        }
        .star {
            color: var(--accent);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .star .star-icon {
            color: var(--accent);
            font-size: 14px;
        }
        .review-count {
            color: var(--text-muted);
        }
        .tea-times {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .tea-times span {
            font-size: 12px;
            padding: 3px 12px;
            background: var(--bg-warm);
            border: 1px solid rgba(196, 154, 90, .25);
            border-radius: var(--radius-pill);
            color: var(--text-muted);
            line-height: 1.5;
        }
        .tea-card .btn {
            margin-top: 4px;
        }

        /* ===== Pagination ===== */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 52px;
        }
        .page-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 42px;
            height: 42px;
            padding: 0 10px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--border);
            background: #fff;
            color: var(--text-main);
            font-size: 14px;
            transition: all .2s;
        }
        .page-link:hover {
            border-color: var(--accent);
            color: var(--accent);
            box-shadow: 0 2px 8px rgba(196, 154, 90, .15);
        }
        .page-link:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        .page-link:active {
            transform: scale(.96);
        }
        .page-link.active {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--primary);
            font-weight: 500;
        }
        .page-link.next {
            padding: 0 18px;
        }

        /* ===== Process Section ===== */
        .process-section {
            padding: 96px 0;
            background: #FFF9F0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .process-track {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 0;
            max-width: 1050px;
            margin: 0 auto;
        }
        .process-item {
            flex: 1;
            text-align: center;
            padding: 0 16px;
            position: relative;
        }
        .process-line {
            width: 72px;
            border-top: 2px dashed rgba(196, 154, 90, .5);
            margin-top: 30px;
            flex-shrink: 0;
            align-self: flex-start;
        }
        .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--accent);
            color: var(--primary);
            font-weight: 700;
            font-family: 'Noto Serif SC', serif;
            font-size: 16px;
            margin-bottom: 18px;
            box-shadow: 0 4px 12px rgba(196, 154, 90, .25);
        }
        .process-item h3 {
            font-size: 20px;
            margin-bottom: 8px;
            color: var(--text-main);
            font-weight: 600;
        }
        .process-item p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 220px;
            margin: 0 auto;
        }

        /* ===== FAQ ===== */
        .faq-section {
            padding: 96px 0;
            background: var(--bg-warm);
        }
        .faq-list {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            margin-bottom: 16px;
            background: #fff;
            transition: background .3s, border-color .3s;
            overflow: hidden;
        }
        .faq-item.open {
            background: var(--accent-soft);
            border-color: rgba(196, 154, 90, .45);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            width: 100%;
            padding: 20px 26px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-main);
            text-align: left;
            transition: color .2s;
        }
        .faq-question:hover {
            color: var(--accent-hover);
        }
        .faq-question:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: -2px;
        }
        .faq-icon {
            position: relative;
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }
        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background: var(--accent);
            border-radius: 2px;
            transition: transform .3s;
        }
        .faq-icon::before {
            width: 16px;
            height: 2px;
            top: 7px;
            left: 0;
        }
        .faq-icon::after {
            width: 2px;
            height: 16px;
            top: 0;
            left: 7px;
        }
        .faq-item.open .faq-icon::after {
            transform: scaleY(0);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease, padding .35s ease;
            padding: 0 26px;
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 0 26px 24px;
        }
        .faq-answer p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.8;
            border-top: 1px dashed rgba(196, 154, 90, .2);
            padding-top: 16px;
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 80px 0;
            background: var(--bg-dark);
        }
        .cta-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 48px;
            background: linear-gradient(135deg, var(--primary) 0%, #3A2418 100%);
            border: 2px solid var(--accent);
            border-radius: var(--radius-card);
            padding: 56px 56px;
            position: relative;
            overflow: hidden;
        }
        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 260px;
            height: 260px;
            background: radial-gradient(circle, rgba(196, 154, 90, .12), transparent 70%);
            pointer-events: none;
        }
        .cta-left {
            position: relative;
            z-index: 1;
        }
        .cta-tag {
            display: inline-block;
            background: var(--accent);
            color: var(--primary);
            font-size: 12px;
            padding: 4px 16px;
            border-radius: var(--radius-pill);
            margin-bottom: 16px;
            font-weight: 500;
            letter-spacing: 1px;
        }
        .cta-left h2 {
            font-size: 28px;
            color: var(--text-light);
            margin-bottom: 12px;
            font-weight: 700;
            line-height: 1.4;
        }
        .cta-left p {
            color: rgba(241, 232, 218, .7);
            font-size: 15px;
            max-width: 420px;
        }
        .cta-right {
            display: flex;
            flex-direction: column;
            gap: 14px;
            min-width: 300px;
            position: relative;
            z-index: 1;
            background: rgba(43, 26, 18, .5);
            border: 1px solid rgba(196, 154, 90, .2);
            border-radius: var(--radius-card);
            padding: 28px 32px;
        }
        .cta-contact-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px dashed rgba(241, 232, 218, .12);
            padding-bottom: 10px;
            color: rgba(241, 232, 218, .6);
            font-size: 14px;
        }
        .cta-contact-row strong {
            color: var(--text-light);
            font-weight: 500;
            font-size: 15px;
        }
        .cta-contact-row:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 4px;
        }
        .cta-right .btn {
            margin-top: 8px;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--primary);
            color: rgba(241, 232, 218, .7);
            padding: 64px 0 24px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }
        .footer-brand .logo {
            margin-bottom: 18px;
        }
        .footer-brand p {
            font-size: 14px;
            line-height: 1.8;
            max-width: 360px;
        }
        .footer-col h4 {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 16px;
            font-weight: 600;
        }
        .footer-links li,
        .footer-contact li {
            margin-bottom: 10px;
            font-size: 14px;
            line-height: 1.6;
        }
        .footer-links a {
            color: rgba(241, 232, 218, .65);
            transition: color .2s;
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .footer-links a:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(241, 232, 218, .1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
            color: rgba(241, 232, 218, .5);
        }
        .icp {
            font-size: 13px;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1199px) {
            .tea-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .filter-bar {
                max-width: 100%;
            }
        }
        @media (max-width: 991px) {
            .tea-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .process-track {
                flex-wrap: wrap;
                max-width: 680px;
            }
            .process-item {
                flex: 0 0 48%;
                margin-bottom: 36px;
            }
            .process-line {
                display: none;
            }
            .cta-box {
                flex-direction: column;
                padding: 40px 32px;
                gap: 32px;
            }
            .cta-right {
                min-width: 0;
                width: 100%;
            }
            .page-hero h1 {
                font-size: 34px;
            }
        }
        @media (max-width: 767px) {
            :root {
                --header-h: 60px;
            }
            .hotline-btn {
                display: none;
            }
            .header-toggle {
                display: flex;
            }
            .header-nav {
                display: none;
                position: absolute;
                top: var(--header-h);
                left: 0;
                right: 0;
                background: var(--primary);
                box-shadow: 0 16px 32px rgba(0, 0, 0, .3);
                max-height: calc(100vh - var(--header-h));
                overflow-y: auto;
            }
            .header-nav.open {
                display: block;
            }
            .header-nav .container {
                flex-direction: column;
                align-items: stretch;
                min-height: 0;
                padding: 8px 0 20px;
            }
            .channel-nav {
                flex-direction: column;
                width: 100%;
                height: auto;
                align-items: stretch;
                gap: 0;
            }
            .nav-link {
                height: 48px;
                padding: 0 24px;
                width: 100%;
                border-bottom: 1px solid rgba(196, 154, 90, .1);
            }
            .nav-link.active::after {
                display: none;
            }
            .nav-link.active {
                background: rgba(196, 154, 90, .1);
                border-radius: 0;
            }
            .nav-aside {
                padding: 14px 24px 0;
                font-size: 13px;
            }
            .page-hero {
                padding: 48px 0 32px;
            }
            .page-hero h1 {
                font-size: 28px;
            }
            .page-hero .hero-desc {
                font-size: 15px;
            }
            .filter-bar {
                padding: 14px;
                gap: 8px;
            }
            .filter-pill {
                padding: 5px 14px;
                font-size: 13px;
            }
            .tea-list-section {
                padding: 56px 0 72px;
            }
            .section-head h2 {
                font-size: 26px;
            }
            .section-head p {
                font-size: 15px;
            }
            .tea-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .process-section {
                padding: 64px 0;
            }
            .process-track {
                flex-direction: column;
                align-items: center;
                gap: 0;
            }
            .process-item {
                flex: 0 0 auto;
                max-width: 360px;
                width: 100%;
                margin-bottom: 32px;
                padding: 0;
            }
            .process-item:last-child {
                margin-bottom: 0;
            }
            .faq-section {
                padding: 64px 0;
            }
            .faq-question {
                padding: 16px 18px;
                font-size: 15px;
            }
            .faq-answer {
                padding: 0 18px;
            }
            .faq-item.open .faq-answer {
                padding: 0 18px 18px;
            }
            .cta-section {
                padding: 48px 0;
            }
            .cta-box {
                padding: 28px 20px;
                border-width: 1px;
            }
            .cta-left h2 {
                font-size: 22px;
            }
            .cta-left p {
                font-size: 14px;
            }
            .cta-right {
                padding: 20px 18px;
            }
            .cta-contact-row {
                font-size: 13px;
            }
            .cta-contact-row strong {
                font-size: 14px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .pagination {
                margin-top: 36px;
            }
            .page-link {
                min-width: 38px;
                height: 38px;
            }
        }
        @media (max-width: 520px) {
            .logo-name {
                font-size: 22px;
            }
            .logo-sub {
                font-size: 12px;
            }
            .page-hero h1 {
                font-size: 24px;
            }
            .hero-eyebrow {
                font-size: 13px;
            }
            .filter-bar {
                flex-wrap: nowrap;
                overflow-x: auto;
                scrollbar-width: none;
            }
            .filter-bar::-webkit-scrollbar {
                display: none;
            }
            .filter-pill {
                white-space: nowrap;
            }
            .tea-card-body h3 {
                font-size: 18px;
            }
            .btn-large {
                padding: 12px 24px;
                font-size: 15px;
            }
        }
