
:root{
  /* Paleta (10-bit -> 8-bit conversion already applied) */
  --primary: rgb(0, 64, 159);     /* #00409F */
  --secondary: rgb(98, 156, 242); /* #629CF2 */

  --glass: rgba(255,255,255,0.10);
  --glass-border: rgba(255,255,255,0.18);

  --overlayA: rgba(0, 64, 159, 0.48);
  --overlayB: rgba(0, 0, 0, 0.42);

  --footer-h: 106px;
  --footer-h-mobile: 52px;
  --header-h: 78px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html, body{height:100%;}
body{
  font-family: 'Inter', sans-serif;
  color:#fff;
  overflow:hidden; /* footer visible without scroll */
}

/* Subpáginas: permitir scroll (footer sigue fijo) */
body.subpage{
  overflow:auto;
}
a{color:inherit}

/* HEADER */
header{
  position:fixed; inset:0 0 auto 0;
  height: var(--header-h);
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 8%;
  background:var(--glass);
  border-bottom:1px solid rgba(98,156,242,0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index:1200;
}

.brand{
  text-decoration:none;
  display:flex; align-items:flex-start;
  gap:0;
  min-width: 220px;
}

/* Logo grande y sobresaliendo por debajo del menú */
.brand__logo{
  display:block;
  height:86px;
  width:auto;
  transform: translateY(18px);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.28));

  /* Marco + fondo para el logo (todas las cabeceras) */
  border:2px solid rgba(255,255,255,0.35);
  border-radius:14px;
  padding:6px;
  background: rgba(255,255,255,0.10);
}

nav.desktop{
  display:flex; gap:26px; align-items:center;
}
nav.desktop a, .dropdown > button{
  text-decoration:none;
  font-weight:300;
  opacity:0.95;
  transition:opacity .25s ease, transform .25s ease, background .25s ease;
}

/* Dropdowns (Escuela / Asociación) desktop */
.dropdown{
  position:relative;
  display:flex;
  align-items:center;
}
.dropdown > button{
  background:transparent;
  border:0;
  color:#fff;
  cursor:pointer;
  font-size:1rem;
  padding:8px 10px;
  border-radius:10px;
  display:flex;
  align-items:center;
  gap:8px;
}
.dropdown > button:hover{
  opacity:0.78;
  transform:translateY(-1px);
  background:rgba(255,255,255,0.06);
}
.caret{
  width:8px;height:8px;
  border-right:2px solid rgba(255,255,255,0.9);
  border-bottom:2px solid rgba(255,255,255,0.9);
  transform:rotate(45deg);
  margin-top:-2px;
}

.dropdown-menu{
  position:absolute;
  top:44px;
  left:0;
  min-width: 390px;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(8,32,40,0.86);
  border:1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
  opacity:0;
  transform: translateY(-8px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  z-index:1300;
}
.dropdown.open .dropdown-menu{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
.dropdown-menu a{
  display:block;
  text-decoration:none;
  padding:10px 10px;
  border-radius:10px;
  font-weight:300;
  border:1px solid transparent;
}
.dropdown-menu a:hover{
  background:rgba(98,156,242,0.12);
  border-color:rgba(98,156,242,0.22);
}
nav.desktop > a:hover{opacity:0.78; transform:translateY(-1px);}

/* Hamburger (mobile) */
.hamburger{
  display:none;
  background:transparent;
  border:1px solid var(--glass-border);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
  transition:transform .25s ease, background .25s ease;
}
.hamburger:hover{
  background:rgba(98,156,242,0.10);
  transform:translateY(-1px);
}
.hamburger .lines{width:22px;height:16px;position:relative;display:block;}
.hamburger .lines span{
  position:absolute;left:0;right:0;height:2px;background:#fff;border-radius:2px;
  transition: transform .25s ease, top .25s ease, opacity .2s ease;
}
.hamburger .lines span:nth-child(1){top:1px;}
.hamburger .lines span:nth-child(2){top:7px;}
.hamburger .lines span:nth-child(3){top:13px;}
header.menu-open .hamburger .lines span:nth-child(1){top:7px;transform:rotate(45deg);}
header.menu-open .hamburger .lines span:nth-child(2){opacity:0;}
header.menu-open .hamburger .lines span:nth-child(3){top:7px;transform:rotate(-45deg);}

/* Mobile drawer with accordions */
.mobile-drawer{
  position:fixed;
  top: var(--header-h);
  left:0; right:0;
  padding:14px 8% 18px;
  background:rgba(8,32,40,0.86);
  border-bottom:1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(-12px);
  opacity:0;
  pointer-events:none;
  transition: opacity .25s ease, transform .25s ease;
  z-index:1190;
}
.mobile-drawer.open{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
.mobile-drawer a.link{
  display:block;
  text-decoration:none;
  padding:12px 0;
  font-weight:300;
  border-bottom:1px solid rgba(255,255,255,0.10);
}
.mobile-drawer .item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,0.10);
}
.mobile-drawer .item button{
  background:transparent;
  border:0;
  color:#fff;
  cursor:pointer;
  font:inherit;
  padding:0;
  display:flex;
  align-items:center;
  gap:8px;
}
.mobile-drawer .sub{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
  border-bottom:1px solid rgba(255,255,255,0.10);
}
.mobile-drawer .sub.open{max-height:520px;}
.mobile-drawer .sub a{
  display:block;
  text-decoration:none;
  padding:10px 0 10px 14px;
  font-weight:300;
  opacity:0.95;
}
.mobile-drawer .sub a:hover{opacity:0.78; color: var(--secondary);}
.mobile-drawer .last{border-bottom:none !important;}

/* HERO */
.hero{
  position:relative;
  height: calc(100vh - var(--footer-h));
  min-height: 520px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.background{position:absolute;inset:0;z-index:-2;}
.background img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  opacity:0;
  will-change:transform,opacity;
  filter: brightness(1.16) contrast(1.04) saturate(1.02);
  animation: fadeMove 28s infinite;
}
.background img:nth-child(1){animation-delay:0s;}
.background img:nth-child(2){animation-delay:9.333s;}
.background img:nth-child(3){animation-delay:18.666s;}
@keyframes fadeMove{
  0%{opacity:0;transform:scale(1.24) translate3d(-3.2%, -2.0%, 0);}
  7%{opacity:1;}
  32%{opacity:1;transform:scale(1.14) translate3d(3.2%, 2.4%, 0);}
  40%{opacity:0;}
  100%{opacity:0;transform:scale(1.10) translate3d(0%, 0%, 0);}
}
.overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(135deg,var(--overlayA),var(--overlayB)),
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
  z-index:-1;
}

/* CONTENT */
.container{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:48px;
  padding:0 8%;
  padding-top:104px;
}
.left{max-width:640px;animation:fadeUp 1.2s ease both;}
.left h1{font-family:'Playfair Display',serif;font-size:2.55rem;line-height:1.1;margin-bottom:14px;}
.left p{font-size:1.05rem;line-height:1.85;font-weight:300;opacity:0.95;}
@keyframes fadeUp{from{opacity:0;transform:translateY(26px);}to{opacity:1;transform:translateY(0);}}

/* BUTTONS */
.right{
  display:flex;
  flex-direction:column;
  gap:16px;
  justify-content:center;
  align-items:flex-start;
}
.right button{
  background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding:18px 24px;
  color:#fff;
  cursor:pointer;
  font-weight:300;
  letter-spacing:0.2px;
  font-size:1.05rem;
  border-radius:16px;
  max-width:480px;
  text-align:left;
  box-shadow:0 10px 30px rgba(0,0,0,0.22);
  transition:transform .35s ease, background .35s ease, color .35s ease, border-color .35s ease;
}
.right button:hover{
  background:rgba(255,255,255,0.22);
  color:#fff;
  border-color:rgba(255,255,255,0.28);
  transform:translateY(-4px);
}

/* MODAL */
.modal{
  position:fixed;inset:0;
  background:rgba(0,0,0,0.72);
  display:flex;justify-content:center;align-items:center;
  opacity:0;pointer-events:none;
  transition:opacity .25s ease;
  padding:28px 16px;
  z-index:1400;
}
.modal.active{opacity:1;pointer-events:auto;}
.card{
  background:#fff;
  color:#1b1b1b;
  width:100%;
  max-width:860px;
  border-radius:18px;
  padding:42px;
  position:relative;
  box-shadow:0 24px 70px rgba(0,0,0,0.35);
  transform:translateY(10px) scale(0.98);
  opacity:0;
  animation:cardIn .28s ease forwards;
  max-height: calc(100vh - 90px);
  overflow:auto;
}
@keyframes cardIn{to{transform:translateY(0) scale(1);opacity:1;}}
.card img{
  width:100%;
  max-height:320px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:22px;
}
.card h2{
  font-family:'Playfair Display',serif;
  color:var(--primary);
  font-size:1.85rem;
  margin-bottom:14px;
}
.card p{
  line-height:1.9;
  font-weight:300;
  font-size:1.03rem;
  margin-bottom:18px;
}

.links-title{font-weight:600;color:var(--primary);margin-top:18px;margin-bottom:10px;}
.links-list{list-style:none;padding-left:0;display:grid;gap:8px;}
.links-list a{
  display:inline-block;
  color:var(--primary);
  text-decoration:none;
  font-weight:500;
  border-bottom:1px solid rgba(0,64,159,0.22);
  padding-bottom:2px;
  transition:opacity .2s ease, transform .2s ease, border-color .2s ease;
}
.links-list a:hover{
  opacity:0.8;
  transform:translateY(-1px);
  border-color:rgba(98,156,242,0.75);
}

.close{
  position:absolute;
  top:18px;right:20px;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.10);
  display:grid;place-items:center;
  cursor:pointer;
  font-size:1.6rem;
  color:#1b1b1b;
  background:rgba(255,255,255,0.8);
  transition:transform .2s ease, background .2s ease;
}
.close:hover{transform:translateY(-2px);background:#fff;}

@media (prefers-reduced-motion: reduce){
  .background img, .left, .card{animation:none !important; transition:none !important;}
}

/* FOOTER fixed */
footer{
  position:fixed;
  left:0; right:0; bottom:0;
  height: var(--footer-h);
  background:rgba(8,32,40,0.92);
  border-top:1px solid rgba(98,156,242,0.22);
  padding:4px 8% 8px;
  color:rgba(255,255,255,0.92);
  z-index:1150;
}

.footer-desktop{display:block;}
.footer-mobile{display:none;}

.footer-mobile summary{list-style:none; cursor:pointer;}
.footer-mobile summary::-webkit-details-marker{display:none;}
.footer-grid{
  min-height:100%;
  display:grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap:16px;
  align-items:center;
}
.footer-title{
  font-family:'Playfair Display',serif;
  font-size:0.9rem;
  margin-bottom:4px;
}
.footer-contact{
  line-height:1.4;
  font-weight:300;
  font-size:0.82rem;
  padding-bottom:4px;
}
.footer-contact a{
  color: var(--secondary);
  text-decoration:none;
  border-bottom:1px solid rgba(98,156,242,0.35);
}
.footer-contact a:hover{opacity:0.85;}
.social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
  align-items:center;
}
.footer-side{display:flex;flex-direction:column;align-items:flex-end;justify-content:center;gap:8px;}
 .social a{
  display:inline-flex;align-items:center;justify-content:center;
  width:32px;height:32px;border-radius:12px;
  border:1px solid rgba(98,156,242,0.28);
  background:rgba(98,156,242,0.10);
  text-decoration:none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, opacity .25s ease;
}
.social a:hover{
  transform: translateY(-2px);
  background:rgba(98,156,242,0.22);
  border-color:rgba(98,156,242,0.50);
  opacity:0.98;
}
.social svg{width:16px;height:16px;fill:#fff;opacity:0.95;}

/* Responsive */
@media(max-width:980px){
  :root{--footer-h: var(--footer-h-mobile); --header-h: 74px;}
  nav.desktop{display:none;}
  .hamburger{display:inline-flex;}
  .brand__logo{height:72px; transform: translateY(14px);}
  .container{
    flex-direction:column;
    text-align:center;
    gap:26px;
    padding-top:92px;
  }
  .right{align-items:center;}
  .right button{text-align:center;}
  .left h1{font-size:2.12rem;}

  footer{
    height:auto;
    padding:0;
    overflow:visible;
    background:rgba(8,32,40,0.96);
  }
  .footer-desktop{display:none;}
  .footer-mobile{display:block;}
  .footer-mobile summary{
    min-height:46px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 8%;
    font-weight:600;
    letter-spacing:0.1px;
    color:rgba(255,255,255,0.96);
  }
  .footer-mobile summary::after{
    content:'▾';
    font-size:1rem;
    transition:transform .2s ease;
  }
  .footer-mobile[open] summary::after{transform:rotate(180deg);}
  .footer-mobile-content{
    padding:0 8% 12px;
    border-top:1px solid rgba(98,156,242,0.18);
  }
  .footer-mobile .footer-title{margin-bottom:8px; padding-top:10px;}
  .footer-mobile .footer-contact{font-size:0.9rem; line-height:1.5;}
  .footer-mobile .social{justify-content:flex-start; margin-top:8px;}
}

@media(max-width:420px){
  .brand__logo{height:64px; transform: translateY(12px);}
  .footer-mobile summary{font-size:0.95rem;}
}


.modal-link-btn{display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0.8rem 1.1rem;border-radius:999px;background:rgba(255,255,255,0.92);color:var(--primary);font-weight:600;text-decoration:none;border:1px solid rgba(0,0,0,0.08);box-shadow:0 8px 24px rgba(0,0,0,0.08);transition:transform .18s ease, box-shadow .18s ease, background .18s ease;}
.modal-link-btn:hover{transform:translateY(-2px);background:#fff;box-shadow:0 12px 28px rgba(0,0,0,0.12);}

.footer-inline{display:inline-block; white-space:nowrap;}


/* Créditos fotográficos */
.background::after{
  content:"Foto: Macarena Valero Amaro · @macavalama";
  position:absolute; right:14px; bottom:16px; z-index:1;
  padding:4px 8px; border-radius:999px;
  background:rgba(8,32,40,0.42); color:rgba(255,255,255,0.88);
  font-size:0.72rem; line-height:1; letter-spacing:0.01em;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  text-shadow:0 1px 2px rgba(0,0,0,0.35);
}
.photo-watermark{position:relative;}
.photo-watermark::after{
  content:"Foto: Macarena Valero Amaro · @macavalama";
  position:absolute; right:12px; bottom:12px; z-index:2;
  padding:4px 8px; border-radius:999px;
  background:rgba(8,32,40,0.38); color:rgba(255,255,255,0.9);
  font-size:0.72rem; line-height:1; letter-spacing:0.01em;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  text-shadow:0 1px 2px rgba(0,0,0,0.35); pointer-events:none;
}
@media(max-width:720px){
  .background::after, .photo-watermark::after{font-size:0.64rem; right:10px; bottom:10px; padding:3px 7px;}
}

/* ===== v23 hotfixes ===== */
:root{
  --footer-h: 82px;
  --footer-h-mobile: 46px;
}

/* Slider home con 5 imágenes */
.background img:nth-child(1){animation-delay:0s;}
.background img:nth-child(2){animation-delay:5.6s;}
.background img:nth-child(3){animation-delay:11.2s;}
.background img:nth-child(4){animation-delay:16.8s;}
.background img:nth-child(5){animation-delay:22.4s;}
.background img{animation-duration:28s;}

/* Marca de agua visible sobre la home */
.hero::after{
  content:"Foto: Macarena Valero Amaro · @macavalama";
  position:absolute;
  right:14px;
  bottom: calc(var(--footer-h) + 12px);
  z-index:4;
  padding:5px 9px;
  border-radius:999px;
  background:rgba(8,32,40,0.52);
  color:rgba(255,255,255,0.96);
  font-size:0.72rem;
  line-height:1;
  letter-spacing:0.01em;
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-shadow:0 1px 2px rgba(0,0,0,0.45);
  pointer-events:none;
}
.background::after{content:none;}
.photo-watermark::after{
  background:rgba(8,32,40,0.56);
  color:#fff;
  font-size:0.74rem;
  line-height:1;
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:0 3px 10px rgba(0,0,0,0.16);
}

/* Footer mucho más compacto */
footer{
  height:var(--footer-h);
  padding:3px 8% 5px;
}
.footer-grid{
  gap:12px;
}
.footer-title{
  font-size:0.82rem;
  margin-bottom:3px;
}
.footer-contact{
  font-size:0.8rem;
  line-height:1.46;
  padding-bottom:5px;
}
.social{
  gap:8px;
}
.social a{
  width:28px;
  height:28px;
  border-radius:10px;
}
.social svg{
  width:14px;
  height:14px;
}
.footer-inline{
  margin-bottom:1px;
}
.footer-contact br{display:block; margin-top:1px;}
@media(max-width:980px){
  footer{padding:0;}
  .footer-mobile summary{min-height:40px;}
  .footer-mobile-content{padding:0 8% 9px;}
  .footer-mobile .footer-title{padding-top:7px; margin-bottom:4px;}
  .footer-mobile .footer-contact{font-size:0.84rem; line-height:1.5; padding-bottom:5px;}
  .hero::after{right:10px; bottom: calc(var(--footer-h) + 8px); font-size:0.64rem; padding:4px 7px;}
}


/* ==== mobile fixes vNext ==== */
/* Compatibilidad con los dos tipos de menú móvil usados en el sitio */
.mobile-nav a{
  display:block;
  text-decoration:none;
  padding:12px 0;
  font-weight:300;
  border-bottom:1px solid rgba(255,255,255,0.10);
}
.mobile-acc{
  width:100%;
  background:transparent;
  border:0;
  color:#fff;
  cursor:pointer;
  font:inherit;
  text-align:left;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,0.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.mobile-acc::after{
  content:'▾';
  font-size:0.95rem;
  transition:transform .2s ease;
}
.mobile-acc[aria-expanded="true"]::after{transform:rotate(180deg);}
.mobile-sub{
  display:none;
  border-bottom:1px solid rgba(255,255,255,0.10);
}
.mobile-sub.open{display:block;}
.mobile-sub a{
  display:block;
  text-decoration:none;
  padding:10px 0 10px 14px;
  font-weight:300;
  opacity:0.95;
  border-bottom:0;
}
.mobile-sub a:hover{opacity:0.78; color: var(--secondary);}

.home-mobile-credit{display:none;}

@media(max-width:980px){
  body{overflow:auto;}
  .hero{
    height:auto;
    min-height:calc(100svh - 0px);
    padding-bottom:calc(var(--footer-h) + 72px);
  }
  .container{
    justify-content:flex-start;
    padding-bottom:20px;
  }
  .right{
    width:100%;
    margin-bottom:8px;
  }
  .right button{
    width:100%;
    max-width:520px;
  }
  .hero::after{display:none;}
  .home-mobile-credit{
    display:block;
    width:100%;
    text-align:center;
    margin-top:12px;
    font-size:0.68rem;
    line-height:1.2;
    color:rgba(255,255,255,0.92);
    text-shadow:0 1px 2px rgba(0,0,0,0.45);
    opacity:0.95;
  }
  .mobile-drawer,
  .mobile-drawer.open{
    max-height:calc(100svh - var(--header-h) - var(--footer-h));
    overflow:auto;
  }
}


/* ==== mobile footer final fix ==== */
@media (max-width:980px){
  body{padding-bottom:48px;}
  footer{
    position:fixed !important;
    left:0;
    right:0;
    bottom:0;
    height:auto !important;
    min-height:44px;
    padding:0 !important;
    overflow:visible !important;
    background:transparent !important;
    border-top:none !important;
    z-index:2000 !important;
  }
  .footer-mobile{
    display:block;
    position:relative;
    margin:0;
    background:rgba(8,32,40,0.96);
    border-top:1px solid rgba(98,156,242,0.22);
    box-shadow:0 -8px 22px rgba(0,0,0,0.18);
    overflow:visible !important;
  }
  .footer-mobile summary{
    min-height:44px !important;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 8%;
    background:rgba(8,32,40,0.96);
    color:rgba(255,255,255,0.96);
    border:none;
    outline:none;
  }
  .footer-mobile-content{
    display:none;
    position:absolute;
    left:0;
    right:0;
    bottom:100%;
    padding:10px 8% 12px !important;
    background:rgba(8,32,40,0.97);
    border-top:1px solid rgba(98,156,242,0.22);
    border-left:1px solid rgba(98,156,242,0.16);
    border-right:1px solid rgba(98,156,242,0.16);
    border-top-left-radius:14px;
    border-top-right-radius:14px;
    box-shadow:0 -10px 28px rgba(0,0,0,0.22);
    max-height:min(58svh, 420px);
    overflow:auto;
    -webkit-overflow-scrolling:touch;
  }
  .footer-mobile[open] .footer-mobile-content{display:block;}
  .footer-mobile .footer-title{padding-top:0 !important; margin-bottom:6px;}
  .footer-mobile .footer-contact{font-size:0.84rem; line-height:1.6; padding-bottom:6px;}
  .footer-mobile .social{justify-content:flex-start; margin-top:8px; padding-bottom:2px;}
}


.footer-legal-link{display:block; width:auto; text-align:right; height:auto !important; min-height:0 !important; border:none !important; background:none !important; padding:0 !important; margin-top:0; color:rgba(255,255,255,0.88) !important; font-size:0.74rem; line-height:1.1; border-radius:0 !important; box-shadow:none !important; text-decoration:none;}
.footer-legal-link:hover{transform:none !important; background:none !important; opacity:1; color:#fff !important; text-decoration:underline;}
@media(max-width:980px){.footer-side{align-items:flex-start;gap:10px;} .footer-legal-link{margin-top:0; text-align:left; font-size:0.82rem;} .footer-legal-link--mobile{padding-bottom:2px !important;}}
.legal-page .content-wrap{width:min(1100px, calc(100% - 2rem)); margin:0 auto; padding-bottom:calc(var(--footer-h) + 54px);}
.legal-sections{display:grid; gap:18px; padding-top:18px;}
.legal-sections .card{background:rgba(255,255,255,0.78); border:1px solid rgba(0,0,0,0.08); border-radius:18px; box-shadow:0 12px 32px rgba(0,0,0,0.08);}
.legal-sections h2{margin-top:0; margin-bottom:10px;}
.legal-sections p, .legal-sections li{line-height:1.75;}
.legal-sections ul{margin:0.5rem 0 0 1.2rem; padding:0 0 0 0.8rem;}
