body {
    background-color: royalblue;
    color: white;
    font-family: 'Unbounded', Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

        .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
	   
        }
        .menu {
            border: 1px solid #ccc;
            border-radius: 10px;
            padding: 20px;
            margin: 10px;
            width: 30%;
            min-width: 200px;
            box-sizing: border-box;
        }
        .menu label {
            display: block;
            margin-bottom: 5px;
        }
        .menu input[type="radio"] {
            margin-right: 10px;
        }
        #result {
            margin-top: 20px;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }
        #result img {
            display: none;
            width: 25%;
            min-width: 250px;
            height: auto;
            margin: 10px;
        }
        #result p {
            text-align: center;
        }
        @media (max-width: 600px) {
            .menu {
                width: 90%;
            }
            #result {
                flex-direction: column;
                align-items: center;
            }
            #result img {
                max-width: 90%;
                margin: 10px auto;
            }
        }

.navbar {
    position: sticky;
    top: 0;
    width: 95%;
    background-color: royalblue;
    padding: 10px 20px;
    z-index: 1000;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0 10px;
}

.get-involved-btn {
    border: 2px solid white;
    padding: 5px 10px;
    border-radius: 5px;
}

.section {
    padding: 100px 20px;
    text-align: center;
}

.home .main-title {
    font-size: 2.5em;
}

.home .tagline {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.logo {
    max-width: 150px;
}

.about-us .about-block, .demo-options, .text-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.about-us .about-text, .demo-menu {
    max-width: 300px;
    padding: 10px;
}

.about-us .rounded-img {
    max-width: 300px;
    max-height: 300px;
    border-radius: 15px;
}

.demo-menu {
    border: 2px solid white;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
}

.submit-btn {
    background-color: hotpink;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    margin: 20px;
}

.submit-btn:hover {
    background-color: white;
    color: hotpink;
}

.demo-result {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.result-image {
    width: 30%;
    min-width: 300px;
    min-height: 300px;
    margin: 10px;
    position: relative;
    display: none;
}

.text-box {
    background-color: white;
    color: black;
    border: 2px solid black;
    padding: 10px;
    position: absolute;
    top: -40px;
    width: calc(30% - 20px);
    min-width: 300px;
    display: none;
}

.partnerships {
    background-color: black;
    color: white;
    padding: 60px 20px;
}

.center-line {
    width: 50%;
    margin: 20px auto;
    border: 1px solid grey;
}

.partner-logo {
    max-width: 200px;
}

.partner-btn {
    background-color: blue;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.partner-btn:hover {
    background-color: lightblue;
}

.get-involved .involvement-box {
    background-color: black;
    color: white;
    border: 2px solid white;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
}

.get-involved .involvement-box button, .contact-btn {
    background-color: blue;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.get-involved .involvement-box button:hover, .contact-btn:hover {
    background-color: lightblue;
}

.blue-section {
    background-color: royalblue;
}

.text-boxes2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.text-box2 {
    border: 2px solid white;
    border-radius: 10px;
    margin: 10px;
    padding: 20px;
    flex: 1 1 30%;
    max-width: 300px;
}

.highlight-box2 {
    background-color: hotpink;
    color: white;
    border: 2px solid white;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
}

.faq {
    background-color: royalblue;
}

.faq-item {
    background-color: white;
    color: black;
    border: 2px solid white;
    border-radius: 10px;
    padding: 20px;
    margin: 10px auto;
    max-width: 85%;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    transform: scale(1.01);
}

.faq-answer {
    display: none;
    margin-top: 10px;
}

.arrow {
    float: right;
    transition: all 0.3s;
}


.nav-menu{
  display:flex;
  flex-direction:column;   /* <-- stacks row + tagline */
  gap:6px;
}

.nav-row{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;          /* wraps links on mobile */
}

/* Brand link (logo + title) */
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.brand-title{
  font-weight:800;
  letter-spacing:0.02em;
}

/* Your logo class can stay; just ensure it behaves nicely */
.logo{
  height:100px;
  width:auto;
  display:block;
}

.nav-tagline{
  font-size:14px;
  opacity:0.9;
  line-height:1.3;
  margin-left:44px;        /* aligns under title (tweak if needed) */
}

/* On very small screens, remove the indent */
@media (max-width:520px){
  .nav-tagline{ margin-left:0; }
}

/* --- Hero wall outer section (page stays blue) --- */
.hero-wall-section{
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 16px 44px;
}

/* White rounded rectangle container */
.hero-wall-card{
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
}

/* Header text on white */
.hero-wall__header h2{
  margin: 0 0 6px;
  color: #0b0b0b;
}
.hero-wall__header p{
  margin: 0 0 14px;
  color: #444;
}

/* Wall grid: white background for tiles to sit on */
.hero-wall__grid{
  display: grid;
  gap: 8px;

  --cell: 120px;
  grid-template-columns: repeat(auto-fill, minmax(var(--cell), 1fr));
  grid-auto-rows: var(--cell);
  grid-auto-flow: dense;
  align-content: start;

  background: #ffffff;   /* IMPORTANT */
  border-radius: 16px;
  padding: 8px;
}

/* Tile shell */
.tile{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f2f2f2;

  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

/* Make faces less likely to be chopped */
.tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;

  box-sizing: border-box;
  border: 2px solid rgba(255,255,255,0.95);
  border-radius: 12px;
  background: #fff;

  transform: scale(1.02);
  -webkit-transform: scale(1.02);
}

/* Big tile spans 2x2 cells */
.tile--big{
  grid-column: span 2;
  grid-row: span 2;
}

/* 3D flip plumbing (kept same as your working build) */
.flip-stage, .big-stage{ position:absolute; inset:0; perspective:700px; -webkit-perspective:700px; }
.flip-card, .big-card{ position:absolute; inset:0; transform-style:preserve-3d; -webkit-transform-style:preserve-3d; }
.flip-face, .big-face{ position:absolute; inset:0; backface-visibility:hidden; -webkit-backface-visibility:hidden; }
.flip-face--back{ transform:rotateY(180deg); -webkit-transform:rotateY(180deg); }

.big-face--front{
  display:grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  padding: 6px;
  background: #fff;
}
.big-face--back{
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  padding: 6px;
  background: #fff;
}

.tile.is-flipping .flip-card,
.tile.is-big-flipping .big-card{
  transition: transform 520ms cubic-bezier(.2,.8,.2,1);
  -webkit-transition: -webkit-transform 520ms cubic-bezier(.2,.8,.2,1);
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

/* iOS fallback */
.no-3d .flip-stage, .no-3d .big-stage{ perspective:none !important; -webkit-perspective:none !important; }
.no-3d .flip-card, .no-3d .big-card{ transform:none !important; -webkit-transform:none !important; }
.no-3d .flip-face, .no-3d .big-face{ backface-visibility:visible !important; -webkit-backface-visibility:visible !important; }
.no-3d .flip-face--front, .no-3d .big-face--front{
  opacity:1; transform:translateY(0); -webkit-transform:translateY(0);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(.2,.8,.2,1);
}
.no-3d .flip-face--back, .no-3d .big-face--back{
  opacity:0; transform:translateY(6%); -webkit-transform:translateY(6%);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(.2,.8,.2,1);
}
.no-3d .tile.is-flipping .flip-face--front,
.no-3d .tile.is-big-flipping .big-face--front{ opacity:0; transform:translateY(-6%); -webkit-transform:translateY(-6%); }
.no-3d .tile.is-flipping .flip-face--back,
.no-3d .tile.is-big-flipping .big-face--back{ opacity:1; transform:translateY(0); -webkit-transform:translateY(0); }


/* --- Hero wall action buttons --- */
.hero-wall-actions{
  display:flex;
  gap:16px;
  justify-content:center;
  align-items:center;
  margin:26px auto 10px;
  flex-wrap:wrap;
}

/* Base button */
.hero-action-btn{
  position:relative;
  padding:14px 28px;
  font-size:16px;
  font-weight:700;
  border-radius:999px;
  text-decoration:none;
  cursor:pointer;
  overflow:hidden;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background-color .25s ease;
}

/* Primary: Read their stories */
.hero-action-btn.primary{
  background:#0e2a47;              /* site blue */
  color:#fff;
  box-shadow: 0 10px 24px rgba(14,42,71,.35);
}

/* Secondary: Create your own hero */
.hero-action-btn.secondary{
  background:#ffffff;
  color:#0e2a47;
  border:2px solid #0e2a47;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

/* Hover / focus (desktop) */
.hero-action-btn:hover,
.hero-action-btn:focus-visible{
  transform: translateY(-3px);
}

.hero-action-btn.primary:hover{
  box-shadow: 0 16px 34px rgba(14,42,71,.45);
}

.hero-action-btn.secondary:hover{
  background:#f4f7fb;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

/* Subtle animated sheen (engagement, not flashy) */
.hero-action-btn::after{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:120%;
  height:100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );
  transition:left .7s ease;
}

.hero-action-btn:hover::after{
  left:120%;
}

/* Tap feedback (mobile) */
.hero-action-btn:active{
  transform: translateY(0);
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero-action-btn,
  .hero-action-btn::after{
    transition:none !important;
  }
}
/* --- Book viewer layout fix --- */

/* Let this page breathe */
.wrap{
  max-width: 100%;
  padding: 12px;
}

/* Remove artificial boxing */
.panel{
  background: transparent;
  border: none;
  padding: 0;
}

/* The iframe itself */
.panel iframe{
  display: block;
  width: 95vw;              /* 95% of viewport width */
  height: 95vh;             /* 95% of viewport height */
  max-width: 1400px;        /* prevents absurd stretch on ultrawide monitors */
  max-height: 95vh;
  margin: 0 auto;

  border: none;
  border-radius: 12px;
  background: #fff;         /* book pages are white */
}

/* On small screens, prioritise height */
@media (max-width: 900px){
  .panel iframe{
    width: 100vw;
    height: 90vh;
    border-radius: 0;
  }
}
.wrap h1,
.wrap p{
  opacity: 0.7;
}


/* Make the book area blend with your blue page */
.panel{
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

/* A clean “viewer shell” that sits nicely on blue */
.viewer-shell{
  position: relative;
  width: min(95vw, 1400px);
  height: 95vh;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;

  /* subtle depth without a white box */
  box-shadow: 0 18px 46px rgba(0,0,0,.35);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}

/* Iframe fills the shell */
.viewer-shell iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: transparent; /* removes iframe’s own white paint if any */
}

/* Friendly loader overlay */
.viewer-loading{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  letter-spacing: .02em;
  background: rgba(14,42,71,.65); /* your blue */
  backdrop-filter: blur(6px);
  transition: opacity .25s ease;
  z-index: 2;
}

@media (max-width: 900px){
  .viewer-shell{
    width: 100vw;
    height: 90vh;
    border-radius: 0;
  }
}


/* =========================
   BOOK PAGE: VIEWER MODE
   ========================= */

/* Make body a column layout: navbar / content / footer */
html, body{
  height: 100%;
}

body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* The main content fills remaining height between nav + footer */
.viewer-page{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
}

/* The iframe wrapper takes nearly all available space */
.viewer-frame{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

/* This is the “shell” that defines size */
.viewer-frame iframe{
  width: 95vw;                         /* near full width */
  height: calc(100vh - 180px);         /* near full height (accounts for nav/footer) */
  max-width: 1600px;
  border: 0;
  border-radius: 16px;
  display: block;

  /* keep it visually integrated with the blue background */
  box-shadow: 0 18px 46px rgba(0,0,0,.35);
  background: transparent;
}

/* CTA below viewer */
.viewer-cta{
  text-align: center;
  padding-bottom: 6px;
}

.viewer-link{
  color: rgba(255,255,255,.92);
  font-weight: 800;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-block;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}

.viewer-link:hover{
  background: rgba(255,255,255,.12);
}

/* Mobile: remove rounded corners + use height better */
@media (max-width: 900px){
  .viewer-page{ padding: 0; }
  .viewer-frame iframe{
    width: 100vw;
    height: calc(100vh - 150px);
    border-radius: 0;
  }
}



img.rounded {
  border-radius: 16px;
  overflow: hidden;
}

.faq-answer { 
  display: none; 
  margin-top: 10px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .arrow {
  transform: rotate(180deg);
}


/* The whole list */
.ripple-grid{
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

/* Each row/card = "table row" that’s responsive */
.ripple-card{
  display: grid;
  grid-template-columns: 110px 1fr;
  grid-template-areas:
    "num title"
    "num body";
  column-gap: 16px;
  row-gap: 6px;

  align-items: start;

  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.10);
}

/* Left image column */
.ripple-num{
  grid-area: num;
  position: relative;
  width: 110px;
}

.ripple-img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px; /* softer rounded rectangle */
}

/* Number badge on the image */
.ripple-badge{
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: #111;
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
}

/* Text */
.ripple-title{
  grid-area: title;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 2px;
  color: #fff;
}

.ripple-body{
  grid-area: body;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
}

/* Mobile: stack image above text */
@media (max-width: 600px){
  .ripple-card{
    grid-template-columns: 1fr;
    grid-template-areas:
      "num"
      "title"
      "body";
  }

  .ripple-num{
    width: min(220px, 100%);
  }
}
.ripple-num img.rounded{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}
.ripple-num {
  width: 110px;          /* controls column width */
}

.ripple-num img {
  width: 110px;
  height: 110px;        /* force same height */
  object-fit: cover;   /* crop to fill nicely */
  border-radius: 14px;
  display: block;
}


.text-boxes,
.text-boxes2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.text-box2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;   /* spreads content nicely */
  min-height: 220px;                /* THIS sets the visual consistency */
  
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 16px;
  padding: 24px;
  color: white;
  background: rgba(255,255,255,0.06);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.text-box2:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.highlight-box2 {
  align-self: center;
  margin-bottom: 14px;

  background: #ff6fb1;
  color: white;
  font-weight: 700;
  letter-spacing: 0.5px;

  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
}
.text-box2 h3 {
  margin: 8px 0 12px;
  font-size: 20px;
  line-height: 1.2;
}

.text-box2 p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .text-boxes,
  .text-boxes2 {
    grid-template-columns: 1fr;
  }

  .text-box2 {
    min-height: auto; /* allow natural height on mobile */
  }
}
.text-box2 {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}


.hero-strip{
  max-width: 1200px;
  margin: 26px auto 18px;
  padding: 0 18px;

  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.hero-card{
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 18px;
  padding: 16px;
  min-height: 170px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card img{
  width: 100%;
  height: 100%;
  max-height: 210px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.hero-card.quote{
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-card.quote h3{
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
}

.hero-card.quote p{
  margin: 0;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}

/* Mobile stacks cleanly */
@media (max-width: 900px){
  .hero-strip{
    grid-template-columns: 1fr;
  }
  .hero-card{
    min-height: auto;
  }
  .hero-card img{
    max-height: 260px;
  }
}
.photo-disclaimer{
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.3;
  opacity: 0.75;
  text-align: center;
}


.photo-disclaimer{
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.3;
  opacity: 0.75;
  text-align: center;
  color: rgba(255,255,255,0.85);
}

.info-tip{
  position: relative;
  display: inline-block;
  margin-left: 6px;
  font-size: 12px;
  cursor: help;
  opacity: 0.9;
}

.info-tip .tooltip{
  position: absolute;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;

  background: rgba(0,0,0,0.9);
  color: white;
  padding: 8px 10px;
  border-radius: 8px;

  font-size: 12px;
  line-height: 1.4;
  text-align: left;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform-origin: bottom center;
}

.info-tip:hover .tooltip,
.info-tip:focus .tooltip{
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-4px);
}

/* small arrow */
.info-tip .tooltip::after{
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(0,0,0,0.9) transparent transparent transparent;
}


.hero-card.user-photo{
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* USER PHOTO CARD (left) */
.hero-card.user-photo{
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-card.user-photo img{
  width: 100%;
  max-height: 210px;
  height: auto;
  object-fit: cover;                 /* crop photos nicely */
  object-position: center 15%;       /* bias towards face */
  border-radius: 14px;
  display: block;
}

/* DISCLAIMER under photo */
.photo-disclaimer{
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.3;
  opacity: 0.75;
  text-align: center;
  color: rgba(255,255,255,0.85);
}

/* HERO CHARACTER CARD (right) */
.hero-card.hero-art{
  align-items: center;
  justify-content: center;
}

.hero-card.hero-art img{
  width: 100%;
  height: 100%;
  max-height: 210px;
  object-fit: contain;               /* show full body (wheelchairs etc.) */
  object-position: center center;
  border-radius: 14px;
  display: block;
  background: rgba(255,255,255,0.06); /* soft neutral behind letterboxing */
}

.char-card.is-selected{
  outline: 3px solid rgba(255,255,255,0.95);
  outline-offset: 2px;
  background: rgba(255,255,255,0.14);
}
.nav-row{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  margin-top:10px;
}

.nav-buttons{
  display:flex;
  gap:8px;
}

.nav-buttons button{
  padding:6px 10px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.55);
  background:rgba(255,255,255,0.15);
  color:#fff;
  cursor:pointer;
}

.nav-buttons button:hover{
  background:rgba(255,255,255,0.22);
}

/* ================================
   Pilot Fundraising Panel
   ================================ */

.funding-panel {
  max-width: 1100px;
  margin: 18px auto 14px;
  padding: 14px 16px;
  border-radius: 16px;

  /* Subtle institutional green */
  background: #E9F3EC;
  border: 1px solid #CFE3D6;
  border-left: 6px solid #6FAF8E;

  color: #123A2A;
}

.funding-title {
  display: flex;
  align-items: center;
  margin: 0 0 6px 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.vbook-icon {
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.45em;
  vertical-align: middle;
  opacity: 0.8;
}

.funding-panel p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

.funding-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.funding-actions a {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #123A2A;
  background: rgba(18, 58, 42, 0.08);
  color: #123A2A;
}

.funding-actions a:hover {
  background: rgba(18, 58, 42, 0.14);
}

/* Home page funding banner (enhanced, consistent with funding panels) */
.pilot-banner{
  background: #E9F3EC !important;
  border: 1px solid #CFE3D6 !important;
  border-left: 6px solid #6FAF8E !important;
  color: #123A2A !important;
}

.pilot-banner h1{
  display:flex;
  align-items:center;
  gap: 10px;
}

.pilot-banner .vbook-icon{
  width: 1.25em;
  height: 1.25em;
  opacity: 0.85;
  flex: 0 0 auto;
}

.pilot-banner__actions .cta-btn{
  border-color: #123A2A !important;
  color: #123A2A !important;
  background: rgba(18,58,42,0.08) !important;
}

.pilot-banner__actions .cta-btn.primary{
  background: rgba(18,58,42,0.14) !important;
}

.pilot-banner__actions .cta-btn:hover{
  background: rgba(18,58,42,0.18) !important;
}

.pilot-banner .pilot-box{
  background: rgba(255,255,255,0.65) !important;
  border: 1px solid rgba(18,58,42,0.16) !important;
}
.vbook-icon{
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.45em;
  vertical-align: -0.15em;
  opacity: 0.85;
  display: inline-block;
}
/* Partners FAQ – institutional left alignment */

.faq-item {
  text-align: left;
}

.faq-item h3 {
  text-align: left;
  margin-right: 2.2em; /* leaves space for arrow */
}

.faq-answer {
  text-align: left;
}

.faq-item .arrow {
  margin-left: auto;
}
.ripple-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ripple-img {
  width: 160px;
  max-width: 40%;
  height: auto;
  flex-shrink: 0;
}

.ripple-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* Ripple page hero layout */
.ripple-hero{
  max-width: 1100px;
  margin: 0 auto 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ripple-hero .lead{
  max-width: 820px;
}

/* Keep the funding panel centred as a block, but readable inside */
.ripple-hero .funding-panel{
  width: min(980px, 92vw);
  margin: 14px auto 0;
  text-align: left;       /* important: keeps it “institutional”, not poster-like */
}

/* Centre the main illustration and size it sensibly */
.ripple-hero-img{
  width: min(820px, 92vw);
  height: auto;
  display: block;
  margin: 18px auto 0;
  border-radius: 18px; /* optional if you like the softened look */
}
.note-centre{
  text-align: center;
  max-width: 820px;
  margin: 28px auto 0;
}

.note-centre.muted{
  opacity: 0.9;
  margin-top: 12px;
}


