    /* Hero Banner */
    .test-hero {
      position: relative;
      height: 40vh;
      background: url("images/testimonies-banner.jpg") center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }
    .test-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.5);
    }
    .test-hero h1 {
      position: relative;
      z-index: 1;
      font-size: 2.2rem;
    }

    /* Story Cards */
    .stories-section {
      max-width: 1100px;
      margin: 40px auto;
      padding: 20px;
    }
    .story-card {
      display: flex;
      flex-wrap: wrap;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-bottom: 30px;
      overflow: hidden;
    }
    .story-card img {
      width: 100%;
      max-width: 300px;
      object-fit: cover;
    }
    .story-content {
      flex: 1;
      padding: 20px;
    }
    .story-content h3 { color: #a80000; margin-top: 0; }
    .story-content p { margin: 10px 0; line-height: 1.6; }

    /* Video Gallery */
    .video-gallery {
      max-width: 1100px;
      margin: 40px auto;
      padding: 20px;
    }
    .video-gallery h2 {
      text-align: center;
      color: #a80000;
    }
    .video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }
    .video-grid video {
      width: 100%;
      border-radius: 8px;
    }

    /* Image Gallery */
    .image-gallery {
      max-width: 1100px;
      margin: 40px auto;
      padding: 20px;
      text-align: center;
    }
    .image-gallery h2 { color: #a80000; }
    .image-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
      margin-top: 20px;
    }
    .image-grid img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
    }

    @media (max-width: 768px) {
      .story-card { flex-direction: column; }
      .story-card img { max-width: 100%; }
    }