
  :root{
    --parallax-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?q=80&w=1600&auto=format&fit=crop");
    --overlay: rgba(0,0,0,.55);
    --text: #ffffff;
    --accent: #ffd770;
    --content-max: 1100px;
  }

  * { box-sizing: border-box; }
  body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif; line-height: 1.5; color: #222; }

  .parallax {
    position: relative;
    min-height: 80vh;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--text);

    background-image: var(--parallax-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  .parallax::before {
    content: "";
    position: absolute; inset: 0;
    background: var(--overlay);
    pointer-events: none;
  }

  .parallax__content {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 850px;
  }

  .parallax__title {
    margin: 0 0 1rem;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color:white;
  }

  .parallax__desc {
    margin: 0 auto 2rem;
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    opacity: .95;
  }

  .pillars {
    display: grid;
    gap: 1.5rem;
    text-align: left;
  }

  .pillar {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .pillar h3 {
    margin: 0 0 .5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
  }

  .pillar p {
    margin: 0;
    font-size: 1rem;
    color: #f1f1f1;
  }

  /* Mobile/iOS fallback */
  @media (max-width: 1024px) {
    .parallax { background-attachment: scroll; }
  }
  @supports (-webkit-touch-callout: none) {
    .parallax { background-attachment: scroll; }
  }
