    :root {
      --apple-accent-1: #ff6f61;
      --yellow-accent #f7c548;
      --apple-accent-2: #6495ed;
      --apple-accent-3: #6bc1ff;
      --apple-accent-4: #9b59b6;
      --apple-bg-dark: #121212;
      --apple-text-light: #e0e0e0;
      --apple-text-muted: #a0a0a0;
    }

    @import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

    body {
      margin: 0;
      font-family: "Inter", sans-serif;
      background: linear-gradient(135deg, #0f172a, #1e293b);
      overflow-x: hidden;
      color: white;
    }

    /* Container for scroll sections */
    .scroll-container {
      position: relative;
      width: 100%;
      min-height: 100vh;
      scroll-snap-type: y mandatory;
      overflow-y: scroll;
      scroll-behavior: smooth;
      height: 100vh;
    }

    /* Each full screen panel */
    .panel {
      scroll-snap-align: start;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* Panel backgrounds with subtle parallax */
    .panel-bg {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-size: cover;
      background-position: center;
      filter: brightness(0.3);
      z-index: 0;
      transform: translateZ(0);
      will-change: transform;
    }

    .panel-1 .panel-bg {
      background-image: url('https://dynapound.com/img/river.webp');
    }

    .panel-2 .panel-bg {
      background-image: url('https://dynapound.com/img/waterfall.webp');
    }

    .panel-3 .panel-bg {
      background-image: url('https://dynapound.com/img/forest.webp');
    }

    .panel-4 .panel-bg {
      background-image: url('https://dynapound.com/img/forest2.webp');
    }

    /* Content styling */
    .panel-content {
      position: relative;
      z-index: 10;
      max-width: 700px;
      color: white;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .panel-content.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .panel h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      line-height: 1.1;
    }

    .panel p {
      font-size: 1.25rem;
      font-weight: 500;
      margin-bottom: 2rem;
      line-height: 1.4;
    }

    .btn-primary {
      background: #2563eb;
      padding: 0.75rem 2.5rem;
      border-radius: 9999px;
      font-weight: 600;
      font-size: 1.125rem;
      color: white;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 15px rgba(37, 99, 235, 0.4);
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .btn-primary:hover,
    .btn-primary:focus {
      background: #1e40af;
      box-shadow: 0 12px 20px rgba(30, 64, 175, 0.6);
      outline: none;
    }

    /* Scrollbar styling */
    .scroll-container::-webkit-scrollbar {
      width: 8px;
    }

    .scroll-container::-webkit-scrollbar-track {
      background: #1e293b;
    }

    .scroll-container::-webkit-scrollbar-thumb {
      background-color: #2563eb;
      border-radius: 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .panel h1 {
        font-size: 2.25rem;
      }

      .panel p {
        font-size: 1rem;
      }
    }

    .jarallax-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .text-shadow {
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hover-scale {
      transition: transform 0.3s ease;
    }

    .hover-scale:hover {
      transform: scale(1.05);
    }

    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

    body {
      font-family: 'Poppins', sans-serif;
      background: #f0f4ff;
    }

    a {
      outline-offset: 2px;
      outline-color: transparent;
      outline-style: solid;
      outline-width: 2px;
      transition: outline-color 0.2s;
    }

    a:focus-visible {
      outline-color: #6495ED;
      /* cornflowerblue */
      outline-style: solid;
    }
    
    
    .section-header {
      text-align: center;
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: 2px;
      color: cornflowerblue;
      font-size: 1.2rem;
      margin-bottom: 16px;
      border-bottom: 2px solid cornflowerblue;
      display: inline-block;
      padding-bottom: 6px;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      max-width: 960px;
      margin: 0 auto 40px;
    }
    .team-member {
      position: relative;
      cursor: default;
    }
    .team-member img {
      width: 100%;
      display: block;
      border-radius: 4px;
      aspect-ratio: 3/4;
      object-fit: cover;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0,0,0,0.6);
      color: #fff;
      padding: 10px 8px;
      font-size: 0.9rem;
      opacity: 0;
      border-radius: 0 0 4px 4px;
      transition: opacity 0.3s ease;
    }
    .team-member:hover .overlay {
      opacity: 1;
    }
    .team-member .name {
      font-weight: 700;
    }