:root{
  --green:#0B3B34;
  --green-dark:#062621;
  --orange:#D56A2A;
  --gray:#6B7280;
  --offwhite:#F7F7F5;
  --card:#ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.18);
  --radius: 18px;
  --content-top-space: 14px;
  --content-bottom-space: 70px;

  /* App chrome sizes */
  --app-topbar-h: 58px;
  --app-bottombar-h: 70px;
}

/* ===============================
   MENU TEXT FIX (color + font)
   =============================== */

/* Desktop menu */
.nav-desktop a{
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: 0.3px;
}

/* Desktop hover */
.nav-desktop a:hover{
  opacity: 1;
  text-decoration: underline;
}

/* Mobile menu items */
.mobile-item{
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff !important;
}

/* Accordion buttons (Government / Visitors) */
.accordion button{
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff !important;
}

/* Accordion links */
.accordion .panel a{
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff !important;
}

/* Header buttons text */
.header .btn,
.header .icon-btn{
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#0b1b18;

  /* Real brick wall (user provided) + readability overlay */
  background-image:
    linear-gradient(to bottom, rgba(255,255,255,0.10), rgba(0,0,0,0.26)),
    url("/assets/img/brick.jpg");
  background-repeat: no-repeat, repeat;
  background-size: cover, 320px auto;
  background-position: center, top left;
  background-attachment: fixed, fixed;

  overscroll-behavior: none;
}

@media (max-width: 768px){
  body{
    background-attachment: scroll, scroll;
    background-size: cover, 300px auto;
  }
}

a{ color:inherit; text-decoration:none; }
.container{ max-width:1300px; margin:0 auto; padding:16px 16px var(--content-bottom-space); }

.app-shell{
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.08);
}

/* Header */
.header{
  position: sticky; top: 0; z-index: 50;
  background: var(--green);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 16px;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{ height:44px; width:auto; }

.nav-desktop{ display:none; gap:18px; align-items:center; }
.nav-desktop a{ font-size:14px; opacity:.92; }
.nav-desktop a:hover{ opacity:1; }

.header-actions{ display:flex; gap:10px; align-items:center; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight:700;
  font-size:14px;
  border:1px solid rgba(0,0,0,.08);
}

.btn-orange{ background: var(--orange); color: #fff; border-color: rgba(0,0,0,.08); }
.btn-orange:hover{ filter: brightness(.96); }
.btn-ghost{ background: rgba(255,255,255,.10); color:#fff; border-color: rgba(255,255,255,.18); }

.icon-btn{
  width:42px; height:42px; border-radius: 12px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;
  font-size:18px;
}

/* Mobile menu */
.mobile-panel{
  overflow:hidden;
  border-top: 1px solid rgba(255,255,255,.10);
}
.mobile-panel-inner{ padding: 12px 16px 16px; }
.mobile-item{
  display:block;
  padding: 12px 12px;
  border-radius: 12px;
  color:#fff;
  font-size:14px;
}
.mobile-item:hover{ background: rgba(255,255,255,.10); }

.accordion{
  border:1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  overflow:hidden;
}
.accordion button{
  width:100%;
  display:flex; justify-content:space-between; align-items:center;
  padding: 12px 12px;
  background: transparent;
  border:0;
  color:#fff;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
}
.accordion .panel{
  max-height:0;
  transition: max-height 280ms ease, opacity 200ms ease;
  opacity: 0;
}
.accordion.open .panel{
  max-height: 320px;
  opacity: 1;
}
.accordion .panel a{
  display:block;
  padding: 10px 16px;
  font-size:14px;
  color:#fff;
  opacity:.92;
}
.accordion .panel a:hover{ background: rgba(255,255,255,.10); opacity:1; }

/* Layout blocks */
.hero{
  position:relative;
  min-height: 440px;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  background: var(--green-dark);
}

/* HERO */
.hero-content{
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  z-index: 1;

  padding: 26px;
  flex-direction: column;
  color: #fff;
  overflow: hidden;

  /* iOS/Safari: reduce repaints/flicker */
  will-change: transform;
  transform: translateZ(0);
}

/* imagen REAL de fondo */
.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;

  /* iOS/Safari: reduce flicker */
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* overlay oscuro sobre la imagen */
.hero-content::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* SOLO el contenido del hero arriba del overlay */
.hero-inner{
  position: relative;
  z-index: 2;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.hero h1{ margin:0; font-size: 38px; line-height:1.05; letter-spacing:.4px; }
.hero h1 span{ color: var(--orange); }
.hero p{ margin: 12px 0 0; max-width: 560px; opacity:.92; }
.hero-actions{ margin-top:16px; display:flex; gap:10px; flex-wrap:wrap; }

.quick-links{
  margin-top: 12px;
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  background: rgba(255,255,255,.92);
  padding: 10px;
}
.card{
  background: var(--offwhite);
  border:1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  padding: 14px;
}
.card:hover{ background:#fff; }

.section-strip{
  margin-top: 16px;
  border-radius: var(--radius);
  background: var(--green);
  color:#fff;
  box-shadow: var(--shadow);
  padding: 18px 18px;
}
.section-strip h2{ margin:0; font-size: 24px; }
.section-strip p{ margin: 8px 0 0; opacity:.92; }
.section-strip .btn{ margin-top: 12px; }

.grid-2{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
.panel{
  background: rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.panel h3{ margin:0; color: var(--green); font-size: 18px; }
.panel-head{ display:flex; justify-content:space-between; align-items:end; gap:8px; }
.panel-head a{ color: var(--orange); font-weight:800; font-size: 13px; }

.news-item{ display:flex; gap:12px; margin-top: 14px; }
.thumb{ width:146px; height:84px; border-radius: 12px; background: rgba(0,0,0,.10); flex: 0 0 auto; overflow:hidden; }
.thumb img{ width:100%; height:100%; object-fit:cover; }
.meta{ font-size:12px; color: var(--gray); margin-top: 2px; }
.desc{ margin-top: 6px; font-size: 13px; color: rgba(0,0,0,.72); }

.events{
  margin-top: 14px;
  border:1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  overflow:hidden;
}
.event-row{
  display:flex; justify-content:space-between; align-items:center;
  padding: 12px 12px;
  background: rgba(255,255,255,.80);
  border-top: 1px solid rgba(0,0,0,.08);
}
.event-row:first-child{ border-top:0; }
.event-date{ font-weight:900; color: var(--orange); font-size: 13px; }
.event-title{ color: var(--green); font-size: 14px; font-weight:700; }

.tiles{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
.tile{
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border:1px solid rgba(0,0,0,.08);
}
.tile.orange{ background: var(--orange); color:#fff; }
.tile.green{ background: var(--green); color:#fff; }
.tile.white{ background: rgba(255,255,255,.92); color: var(--green); }

.footer{
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(10, 30, 26, .88);
  color: rgba(255,255,255,.92);
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer small{ opacity:.9; }

/* Install prompt */
.install-prompt{
  position: fixed;
  left: 0;
  right: 0;
  bottom: max(4px, env(safe-area-inset-bottom));
  z-index: 2000 !important;
  display:none;
  padding: 0 14px;
}
.install-card{
  max-width: 520px;
  margin: 0 auto;
  border-radius: 18px;
  background: rgba(15, 15, 15, .88);
  color:#fff;
  padding: 14px;
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.12);
}
.install-row{ display:flex; justify-content:space-between; gap:10px; align-items:flex-start; }
.install-title{ font-weight:900; font-size: 14px; }
.install-text{ opacity:.92; margin-top: 6px; font-size: 13px; }
.install-actions{ margin-top: 12px; display:flex; gap:10px; }
.install-actions .btn{ flex:1; border:0; }
.btn-light{ background: rgba(255,255,255,.92); color:#0b1b18; }
.btn-dark{ background: rgba(255,255,255,.10); color:#fff; border: 1px solid rgba(255,255,255,.14); }
.close-x{ cursor:pointer; opacity:.9; font-size:16px; padding: 4px 8px; }

/* Chat widget */
.chat-fab{
  position: fixed;
  right: 16px;
  bottom: 140px;
  width: 56px; height: 56px;
  border-radius: 18px;
  background: rgba(11,59,52,.92);
  color:#fff;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  z-index: 90;
}


@media (display-mode: standalone){
  .chat-fab{
    bottom: calc(var(--app-bottombar-h) + 44px + env(safe-area-inset-bottom));
  }

  .chat-window{
    bottom: calc(var(--app-bottombar-h) + 114px + env(safe-area-inset-bottom));
  }
}


.chat-window{
  position: fixed;
  right: 16px;
  bottom: 210px;
  width: min(340px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  height: 420px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow);
  overflow: hidden;
  overflow-x: hidden;
  display:none;
  z-index: 90;
}
.chat-head{
  background: var(--green);
  color:#fff;
  padding: 10px 12px;
  display:flex; justify-content:space-between; align-items:center;
  gap:10px;
}
.chat-head .title{ font-weight:900; font-size: 14px; }
.chat-body{
  padding: 10px;
  height: 320px;
  overflow:auto;
  background: linear-gradient(to bottom, rgba(255,255,255,.90), rgba(255,255,255,.98));
}
.msg{ margin: 10px 0; display:flex; }
.msg.user{ justify-content:flex-end; }
.bubble{
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.4;
  border: 1px solid rgba(0,0,0,.08);
}
.msg.user .bubble{ background: rgba(213,106,42,.16); }
.msg.bot .bubble{ background: rgba(11,59,52,.08); }
.msg.bot .bubble a{
  color: var(--green);
  text-decoration: underline;
  font-weight: 800;
  word-break: break-all;
}

.chat-input{
  display:flex; gap:8px;
  padding: 10px;
  border-top: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.98);
  min-width: 0;
  overflow: hidden;
}
.chat-input input{
  flex:1;
  min-width: 0;
  width: 0;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  padding: 10px 12px;
  font-size: 16px; /* prevents iOS focus-zoom that can trigger horizontal scroll */
}
.chat-input button{
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--orange);
  color:#fff;
  border:0;
  padding: 10px 12px;
  font-weight:900;
  cursor:pointer;
}

@media (min-width: 900px){
  .nav-desktop{ display:flex; }
  .icon-btn{ display:none; }
  .quick-links{ grid-template-columns: repeat(3, 1fr); }
  .grid-2{ grid-template-columns: 1fr 1fr; }
  .tiles{ grid-template-columns: repeat(3, 1fr); }
}

/* Safe-area padding */
@supports (padding: max(0px)) {
  .app-shell { padding-bottom: env(safe-area-inset-bottom); }
}

/* =======================
   APP MODE CHROME (iOS/Android installed)
   ======================= */

.app-topbar{
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  background: rgba(11,59,52,.98);
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-top: env(safe-area-inset-top);
}

.app-topbar-inner{
  height: var(--app-topbar-h);
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 0 12px;
}

.app-topbar-left{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 44px;
}

.app-topbar-logo{
  height: 34px;
  width: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  border: 2px solid rgba(255,255,255,.30);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  object-fit: cover;
}

.app-topbar-title{
  flex: 1;
  text-align:center;
  color:#fff;
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-topbar-right{
  display:flex;
  justify-content:flex-end;
  min-width: 96px;
}

.app-topbar-pay{
  background: var(--orange);
  color:#fff;
  border: none;
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
}

@media (max-width: 640px){
  .container{
    padding-left: 12px;
    padding-right: 12px;
  }

  .app-topbar-inner{
    padding: 0 10px;
    gap: 8px;
  }

  .app-topbar-left{
    min-width: 36px;
  }

  .app-topbar-logo{
    width: 30px;
    height: 30px;
  }

  .app-topbar-title{
    font-size: 14px;
    letter-spacing: 0;
  }

  .app-topbar-right{
    min-width: 0;
  }

  .app-topbar-pay{
    padding: 8px 10px;
    font-size: 11px;
    border-radius: 12px;
    white-space: nowrap;
  }
}

.app-bottombar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(11,59,52,.98);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-bottom: env(safe-area-inset-bottom);
}

.app-bottombar-inner{
  height: var(--app-bottombar-h);
  display:flex;
  align-items:center;
  justify-content:space-around;
  padding: 8px 10px 10px;
  gap: 6px;
}

.app-tab{
  flex:1;
  min-width: 0;
  text-align:center;
  color: rgba(255,255,255,.92);
  font-size: 11px;
  font-weight: 800;
  padding: 8px 6px;
  border-radius: 14px;
  border: 1px solid transparent;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 6px;
}
.app-tab svg{ width: 22px; height: 22px; opacity: .95; }
.app-tab.active{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.14);
}

@media (max-width: 640px){
  .app-bottombar-inner{
    padding-left: 6px;
    padding-right: 6px;
    gap: 4px;
  }

  .app-tab{
    padding: 7px 4px;
    font-size: 10px;
    gap: 4px;
  }

  .app-tab svg{
    width: 20px;
    height: 20px;
  }
}

/* Content spacing so it doesn't hide behind bars */
.app-content{
  padding-top: calc(var(--app-topbar-h) + var(--content-top-space) + env(safe-area-inset-top));
  padding-bottom: var(--content-bottom-space);
}

/* Default: hide app chrome on desktop browser */
@media (min-width: 900px){
  .app-topbar, .app-bottombar{ display:none; }
  .app-content{
    padding-top: var(--content-top-space);
    padding-bottom: var(--content-bottom-space);
  }
}

/* Mobile browser: show app chrome, hide desktop header row */
@media (max-width: 899px){
  .header-inner{ display:none !important; }
  .nav-desktop{ display:none !important; }
  .app-topbar, .app-bottombar{ display:block; }
}

/* Installed app (standalone): always show chrome */
@media (display-mode: standalone){
  .app-topbar, .app-bottombar{ display:block; }
  .header-inner{ display:none !important; }
}

@media (display-mode: standalone){
  .app-content{
    padding-bottom: calc(var(--app-bottombar-h) + var(--content-bottom-space) + env(safe-area-inset-bottom));
  }
}

/* Mobile hero tuning */
@media (max-width: 768px){
  .hero-content{
    min-height: 600px;
    padding-top: 100px;
  }
  .hero-bg{
    object-position: center bottom;
  }
}

/* Mobile web: prompt pegado abajo */
@media (max-width: 899px){
  .install-prompt{
    bottom: max(4px, env(safe-area-inset-bottom)) !important;
    z-index: 2000 !important;
  }
}

/* App instalada: prompt arriba del bottom bar */
@media (display-mode: standalone){
  .install-prompt{
    bottom: calc(var(--app-bottombar-h) + 8px + env(safe-area-inset-bottom)) !important;
  }
}

/* =========================================================
   FORCE:
   - Mobile browser (responsive web) => NO bottom bar
   - Installed PWA (standalone)      => YES bottom bar
   ========================================================= */

/* 1) Default: hide it everywhere */
.app-bottombar { display: none !important; }

/* Quick links cards with icons */
.card-notices,
.card-minutes{
  display:flex;
  align-items:center;
  gap:14px;
}

.card-icon{
  width:48px;
  height:48px;
  object-fit:contain;
  flex-shrink:0;
}

.card-title{
  font-weight:900;
  color: var(--green);
  font-size:15px;
}

.card-sub{
  margin-top:4px;
  font-size:13px;
  color: var(--gray);
}

@media (max-width: 768px){
  .card-icon{ width:42px; height:42px; }
}

/* 2) Only show it in installed app mode */
@media (display-mode: standalone) {
  .app-bottombar { display: block !important; }
}

/* 3) If you use the is-app / is-web classes, enforce them too */
.is-web .app-bottombar { display: none !important; }
.is-app .app-bottombar { display: block !important; }

/* Quick links cards with icons */
.card-notices,
.card-minutes,
.card-payments{
  display:flex;
  align-items:center;
  gap:14px;
}

.card-icon{
  width:48px;
  height:48px;
  object-fit:contain;
  flex-shrink:0;
}

.card-title{
  font-weight:900;
  color: var(--green);
  font-size:15px;
}

.card-sub{
  margin-top:4px;
  font-size:13px;
  color: var(--gray);
}

@media (max-width: 768px){
  .card-icon{
    width:42px;
    height:42px;
  }
}

/* ===============================
   ABOUT STRIP (diagonal image)
   =============================== */

.about-strip{
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.10);

  /* brick + dark overlay like screenshot */
  background:
    linear-gradient(90deg, rgba(0,0,0,.30), rgba(0,0,0,.20)),
    url("/assets/img/brick.jpg");
  background-size: cover, 297px auto;
  background-position: center, top left;
}

.about-inner{
  display:grid;
  grid-template-columns: 1.45fr 1fr;
  min-height: 130px;
}

/* Left text area */
.about-left{
  padding: 27px 14px 33px 31px;
  color: #fff;
}

.about-left h2{
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.about-rule{
  margin-top: 10px;
  height: 1px;
  width: 88%;
  background: rgba(255,255,255,.40);
}

.about-left p{
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .25px;
  opacity: .95;
}

/* Green button like screenshot */
.about-btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2E5B35, #22482A);
  color: #fff;
  font-weight: 900;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .25px;
  border: 1px solid rgba(0,0,0,.22);
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}
.about-btn span{
  font-size: 18px;
  line-height: 1;
  opacity: .95;
}
.about-btn:hover{
  filter: brightness(1.03);
}

/* Right image area with diagonal cut */
.about-right{
  position: relative;
  background: url("/assets/img/about.jpg") center/cover no-repeat;
  min-height: 130px;

  /* diagonal cut */
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

/* soft fade where image meets brick (like screenshot) */
.about-right::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width: 120px;
  background: linear-gradient(90deg, rgba(0,0,0,.28), rgba(0,0,0,0));
  pointer-events:none;
}

/* Fallback if clip-path not supported */
@supports not (clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%)){
  .about-right{ clip-path: none; }
}

/* Responsive: stack like a nice banner */
@media (max-width: 900px){
  .about-inner{ grid-template-columns: 1fr; }
  .about-rule{ width: 100%; }
  .about-right{
    clip-path: none;
    min-height: 190px;
    background-position: right center;
  }
  .about-right::before{
    width: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,0));
  }
}
.panel,
.wb-water .wb-water-panel{
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.wb-water .wb-card{
  min-width: 0;
}

.wb-water .wb-card > div:last-child{
  flex: 1 1 auto;
  min-width: 0;
}

.wb-water .wb-card h4{
  overflow-wrap: anywhere;
}

@media (max-width: 640px){
  .about-strip{
    margin-top: 12px;
  }

  .about-left{
    padding: 20px 14px 22px;
  }

  .about-left h2{
    font-size: clamp(20px, 7vw, 26px);
    line-height: 1.08;
  }

  .about-left p{
    font-size: 12.5px;
    line-height: 1.45;
  }

  .about-right{
    min-height: 150px;
    background-position: center;
  }

  .wb-water{
    margin-top: 12px;
  }

  .wb-water .wb-water-panel{
    padding: 12px;
    border-radius: 16px;
  }

  .wb-water .wb-grid{
    gap: 12px;
  }

  .wb-water .wb-card{
    padding: 12px;
    gap: 10px;
    flex-direction: column;
  }

  .wb-water .wb-icon{
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .wb-water .wb-resources{
    gap: 8px;
  }

  .wb-water .wb-resource-btn{
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .wb-water .wb-resource-btn span{
    max-width: none;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .footer{
    flex-direction: column;
    align-items: flex-start !important;
  }
}
