
    :root {
      --primary: #114b2d;
      --secondary: #caa64b;
      --accent: #e8d39a;
      --light: #f7f4ec;
      --dark: #1f2937;
      --muted: #6b7280;
      --white: #ffffff;
      --card: rgba(255,255,255,0.94);
      --shadow: 0 12px 30px rgba(0,0,0,0.08);
      --shadow-strong: 0 20px 60px rgba(0,0,0,0.2);
      --radius: 18px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Georgia, 'Times New Roman', serif;
      background: linear-gradient(180deg, #f9f6ef 0%, #f2eee4 100%);
      color: var(--dark);
      line-height: 1.65;
      php_logo_guid(void{
        clintech_defined_variable(
          
        )
      })
    }

    body.modal-open {
      overflow: hidden;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(17, 75, 45, 0.96);
      backdrop-filter: blur(8px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    }

    .nav {
      max-width: 1180px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 20px;
      gap: 18px;
    }

    .brand {
      color: var(--white);
      font-size: 1.1rem;
      font-weight: bold;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .brand span {
      color: #f5d77b;
      display: block;
      font-size: 0.8rem;
      font-weight: normal;
      letter-spacing: 1px;
    }

    .menu {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .menu a, .menu button {
      color: var(--white);
      text-decoration: none;
      padding: 10px 14px;
      border-radius: 999px;
      transition: 0.25s ease;
      font-size: 0.95rem;
      background: transparent;
      border: none;
      cursor: pointer;
      font-family: inherit;
    }

    .menu a:hover, .menu button:hover {
      background: rgba(255,255,255,0.12);
    }

    .donate-nav {
      background: var(--secondary) !important;
      color: #1f1f1f !important;
      font-weight: bold;
    }

    .hero {
      min-height: 90vh;
      display: grid;
      place-items: center;
      padding: 60px 20px;
      background:
        linear-gradient(rgba(17, 75, 45, 0.72), rgba(17, 75, 45, 0.65)),
        url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1600&q=80') center/cover;
      color: var(--white);
      text-align: center;
    }

    .hero-content {
      max-width: 860px;
      background: rgba(0,0,0,0.18);
      padding: 42px 28px;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.14);
    }

    .hero h1 {
      font-size: clamp(2.1rem, 5vw, 4.4rem);
      margin: 0 0 14px;
      line-height: 1.1;
    }

    .hero p {
      font-size: 1.08rem;
      max-width: 720px;
      margin: 0 auto 22px;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 22px;
    }

    .btn {
      display: inline-block;
      padding: 13px 22px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: bold;
      transition: transform 0.2s ease, background 0.2s ease;
      border: none;
      cursor: pointer;
      font-family: inherit;
    }

    .btn-primary {
      background: var(--secondary);
      color: #1f1f1f;
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.5);
    }

    .btn:hover { transform: translateY(-2px); }

    section {
      max-width: 1180px;
      margin: auto;
      padding: 78px 20px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 44px;
    }

    .section-title h2 {
      font-size: 2.2rem;
      margin-bottom: 10px;
      color: var(--primary);
    }

    .section-title p {
      max-width: 700px;
      margin: auto;
      color: var(--muted);
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .card {
      background: var(--card);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(17, 75, 45, 0.08);
    }

    .card h3 {
      margin-top: 0;
      color: var(--primary);
      font-size: 1.35rem;
    }

    .highlight {
      border-left: 5px solid var(--secondary);
    }

    .objectives-list {
      display: grid;
      gap: 18px;
    }

    .objective-item {
      background: #fff;
      border-radius: 16px;
      padding: 18px 18px 18px 20px;
      box-shadow: var(--shadow);
      border-left: 4px solid var(--primary);
    }

    .objective-item strong {
      color: var(--primary);
    }

    .project-card {
      padding-top: 20px;
      position: relative;
      overflow: hidden;
    }

    .project-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 6px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
    }

    .team-panel {
      text-align: center;
      background: linear-gradient(135deg, rgba(17,75,45,0.98), rgba(35,96,63,0.95));
      color: var(--white);
      box-shadow: var(--shadow-strong);
    }

    .team-panel h3, .team-panel p {
      color: var(--white);
    }

    .team-showcase {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
      margin: 22px 0 12px;
    }

    .mini-avatar {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--secondary), #f5e6ba);
      color: var(--primary);
      font-weight: bold;
      display: grid;
      place-items: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      border: 3px solid rgba(255,255,255,0.55);
    }

    .team-preview-btn {
      margin-top: 10px;
      background: var(--secondary);
      color: #1f1f1f;
    }

    .contact-box {
      background: linear-gradient(135deg, rgba(17,75,45,0.98), rgba(35,96,63,0.95));
      color: var(--white);
    }

    .contact-box h3, .contact-box p, .contact-box a {
      color: var(--white);
    }

    .contact-list {
      display: grid;
      gap: 10px;
      margin-top: 16px;
    }

    .contact-list a {
      text-decoration: none;
    }

    .footer {
      background: #10261a;
      color: #dce7df;
      text-align: center;
      padding: 30px 20px;
      font-size: 0.95rem;
    }

    .quote {
      font-style: italic;
      color: var(--secondary);
      margin-top: 12px;
      font-size: 1.02rem;
    }

    .modal {
      position: fixed;
      inset: 0;
      background: rgba(5, 16, 11, 0.7);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      z-index: 5000;
      backdrop-filter: blur(5px);
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      width: min(1100px, 100%);
      max-height: 90vh;
      overflow-y: auto;
      background: linear-gradient(180deg, #fffefb 0%, #f5efe2 100%);
      border-radius: 26px;
      box-shadow: var(--shadow-strong);
      padding: 28px;
      position: relative;
      border: 1px solid rgba(17,75,45,0.1);
    }

    .close-btn {
      position: absolute;
      right: 16px;
      top: 14px;
      background: var(--primary);
      color: #fff;
      border: none;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
    }

    .modal-title {
      margin: 0 0 8px;
      color: var(--primary);
      font-size: 2rem;
    }

    .modal-subtitle {
      color: var(--muted);
      margin-bottom: 26px;
    }

    .donation-options, .team-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }

    .option-card, .member-card {
      background: #fff;
      border-radius: 20px;
      padding: 22px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(17,75,45,0.08);
    }

    .option-card h3, .member-card h3 {
      margin: 0 0 8px;
    }

    .payment-badge {
      display: inline-block;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(202,166,75,0.18);
      color: var(--primary);
      font-weight: bold;
      margin-bottom: 10px;
      font-size: 0.9rem;
    }

    .member-card {
      text-align: center;
    }

    .profile-pic {
      width: 96px;
      height: 96px;
      margin: 0 auto 14px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      display: grid;
      place-items: center;
      font-size: 1.6rem;
      font-weight: bold;
      box-shadow: var(--shadow);
      border: 4px solid #f7f1df;
    }

    .member-role {
      color: var(--secondary);
      font-weight: bold;
      margin-bottom: 6px;
    }

    .member-card p {
      color: var(--muted);
      margin: 0;
      font-size: 0.95rem;
    }

    @media (max-width: 900px) {
      .grid-2, .grid-3, .donation-options, .team-grid {
        grid-template-columns: 1fr;
      }

      .nav {
        flex-direction: column;
        align-items: flex-start;
      }

      .menu {
        width: 100%;
      }

      .modal-content {
        padding: 22px 18px;
      }
    }