     html {
     scroll-behavior: smooth;}

    /* Hero Banner */
    .vol-hero {
      position: relative;
      height: 40vh;
      background: url("images/volunteer-banner.jpg") center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }
    .vol-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.5);
    }
    .vol-hero h1 {
      position: relative;
      z-index: 1;
      font-size: 2.4rem;
    }

    /* Why Volunteer */
    .why-volunteer {
      max-width: 1000px;
      margin: 40px auto;
      padding: 20px;
      text-align: center;
    }
    .why-volunteer h2 { color: #a80000; }
    .why-volunteer p { font-size: 1.1rem; line-height: 1.6; }

    /* Opportunities */
    .opportunities {
      background: #f9f9f9;
      padding: 40px 20px;
      text-align: center;
    }
    .opp-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }
    .opp-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      width: 280px;
      padding: 20px;
      text-align: left;
      transition: transform 0.3s;
    }
    .opp-card:hover { transform: translateY(-6px); }
    .opp-card h3 { color: #a80000; }

    /* Form */
    .vol-form {
      max-width: 600px;
      margin: 40px auto;
      padding: 30px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .vol-form h2 { text-align: center; color: #a80000; }
    .vol-form form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .vol-form input, 
    .vol-form select, 
    .vol-form textarea {
      padding: 12px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 1rem;
    }
    .vol-form button {
      background: #a80000;
      color: #fff;
      padding: 14px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
    }
    .vol-form button:hover {
      background: #ff7a00;
    }

    /* CTA */
    .cta-vol {
      text-align: center;
      padding: 50px 20px;
      background: #f9f9f9;
    }
    .cta-vol h2 {
      color: #a80000;
      margin-bottom: 20px;
    }
    .cta-vol a {
      background: #a80000;
      color: #fff;
      padding: 14px 24px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
    }
    .cta-vol a:hover { background: #ff7a00; }