      :root {
        --primary: #2a6e3f;
        --primary-dark: #1a3c23;
        --primary-light: #d4e8d9;
        --secondary: #3498db;
        --tertiary: #f9b234;
        --tertiary-light: #fef5e6;
        --tertiary-dark: #e69a20;
        --dark: #1a3c23;
        --darker: #0f2315;
        --light: #f5f9f6;
        --gray: #4a4a4a;
        --gray-light: #6c757d;
        --light-gray: #eaeaea;
        --white: #ffffff;
        --transition: all 0.3s ease;
        --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.12);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Open Sans", sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: var(--white);
        overflow-x: hidden;
      }

      h1,
      h2,
      h3,
      h4,
      h5 {
        font-family: "Montserrat", sans-serif;
        font-weight: 600;
        color: var(--dark);
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      /* Hero Section */
      .diaspora-hero {
        padding: 160px 0 80px;
        text-align: center;
        color: white;
        position: relative;
        min-height: 100vh;
      }

      .diaspora-hero h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        font-weight: 700;
        color: white;
      }

      .diaspora-hero p {
        font-size: 1.3rem;
        max-width: 800px;
        margin: 0 auto;
        font-weight: 300;
        opacity: 0.9;
      }

      .divider {
        width: 80px;
        height: 4px;
        background: var(--tertiary);
        margin: 2rem auto;
        border-radius: 2px;
      }

      /* About Section */
      .about-section {
        padding: 5rem 0;
        background: var(--light);
      }

      .about-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 2rem;
      }

      .about-content {
        flex: 1;
        min-width: 300px;
      }

      .about-image {
        flex: 1;
        min-width: 300px;
        height: 400px;
        background-size: cover;
        background-position: center;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      }

      .section-title {
        text-align: center;
        margin-bottom: 4rem;
      }

      .section-title h2 {
        font-size: 2.4rem;
        color: var(--primary-dark);
        margin-bottom: 1rem;
        font-weight: 600;
        position: relative;
        display: inline-block;
      }

      .section-title h2::after {
        content: "";
        position: absolute;
        width: 80px;
        height: 4px;
        background: var(--tertiary);
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
      }

      .section-title p {
        color: var(--gray);
        max-width: 700px;
        margin: 1.5rem auto 0;
        font-size: 1.1rem;
      }

      .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
      }

      .value-card {
        background: var(--white);
        border-radius: 8px;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s;
        border-top: 4px solid var(--primary);
      }

      .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
      }

      .value-icon {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1.5rem;
      }

      /* Services Section */
      .services-section {
        padding: 5rem 0;
        background: var(--white);
      }

      .service-tabs {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 3rem;
      }

      .service-tab {
        padding: 0.8rem 1.5rem;
        background: var(--light);
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s;
        font-weight: 600;
      }

      .service-tab.active,
      .service-tab:hover {
        background: var(--primary);
        color: white;
      }

      .service-content {
        display: none;
      }

      .service-content.active {
        display: block;
        animation: fadeIn 0.5s ease;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      .service-card {
        background: var(--light);
        border-radius: 8px;
        padding: 2.5rem;
        margin-bottom: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      }

      .service-card h3 {
        color: var(--primary);
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .service-card h3 i {
        color: var(--tertiary);
      }

      .service-features {
        list-style-type: none;
        margin-bottom: 1.5rem;
      }

      .service-features li {
        padding: 0.7rem 0;
        display: flex;
        align-items: flex-start;
        position: relative;
        padding-left: 30px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      }

      .service-features li:last-child {
        border-bottom: none;
      }

      .service-features li::before {
        content: "•";
        position: absolute;
        left: 0;
        top: 0.7rem;
        color: var(--tertiary);
        font-size: 1.5rem;
      }

      /* Process Section */
      .process-section {
        padding: 5rem 0;
        background: var(--light);
      }

      .process-steps {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        margin-top: 3rem;
        position: relative;
      }

      .process-steps::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        height: 80%;
        width: 4px;
        background: var(--tertiary);
        z-index: 0;
      }

      .process-step {
        flex: 1;
        min-width: 300px;
        background: var(--white);
        border-radius: 8px;
        padding: 2rem;
        position: relative;
        z-index: 1;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s;
      }

      .process-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
      }

      .step-number {
        display: inline-block;
        width: 40px;
        height: 40px;
        background: var(--tertiary);
        color: var(--dark);
        border-radius: 50%;
        text-align: center;
        line-height: 40px;
        font-weight: 700;
        margin-bottom: 1rem;
      }

      /* Benefits Section */
      .benefits-section {
        padding: 5rem 0;
        background: var(--white);
      }

      .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
      }

      .benefit-card {
        background: var(--light);
        border-radius: 8px;
        padding: 2.5rem;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s;
        border-top: 4px solid var(--primary);
      }

      .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
      }

      .benefit-icon {
        font-size: 3rem;
        color: var(--tertiary);
        margin-bottom: 1.5rem;
      }

      /* FAQ Section - Updated to match Payment.html styling */
      .faq-section {
        padding: 5rem 0;
        background: var(--light);
      }

      .faq-container {
        max-width: 800px;
        margin: 0 auto;
      }

      .faq-item {
        margin-bottom: 1.5rem;
        border: 1px solid var(--light-gray);
        border-radius: 10px;
        overflow: hidden;
        transition: var(--transition);
        background: var(--white);
        box-shadow: var(--shadow);
      }

      .faq-item:hover {
        border-color: var(--primary-light);
      }

      .faq-question {
        padding: 1.5rem;
        background: var(--light);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: var(--primary-dark);
        transition: var(--transition);
      }

      .faq-question:hover {
        background: var(--primary-light);
      }

      .faq-question i {
        transition: transform 0.3s ease;
      }

      .faq-item.active .faq-question i {
        transform: rotate(180deg);
      }

      .faq-answer {
        padding: 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s;
        color: var(--gray);
        background: var(--white);
      }

      .faq-item.active .faq-answer {
        padding: 1.5rem;
        max-height: 500px;
      }

      /* CTA Section */
      .diaspora-cta {
        padding: 5rem 0;
        background: linear-gradient(
          135deg,
          var(--dark) 0%,
          var(--primary) 100%
        );
        text-align: center;
        color: white;
      }

      .diaspora-cta h2 {
        color: white;
        margin-bottom: 1.5rem;
      }

      .diaspora-cta p {
        max-width: 700px;
        margin: 0 auto 2rem;
        font-size: 1.2rem;
        opacity: 0.9;
      }

      .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
        margin-top: 2rem;
      }

      .btn {
        padding: 0.9rem 2.2rem;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        display: inline-block;
        text-align: center;
        cursor: pointer;
        font-size: 1.1rem;
        min-width: 220px;
        border: none;
      }

      .btn-primary {
        background: var(--tertiary);
        color: var(--dark);
      }

      .btn-primary:hover {
        background: var(--dark);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      .btn-secondary {
        background: transparent;
        color: var(--white);
        border: 2px solid var(--white);
      }

      .btn-secondary:hover {
        background: var(--white);
        color: var(--dark);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .diaspora-hero h1 {
          font-size: 2.4rem;
        }

        .process-steps::before {
          display: none;
        }
      }

      @media (max-width: 768px) {
        .section-title h2 {
          font-size: 2rem;
        }

        .cta-buttons {
          flex-direction: column;
          align-items: center;
        }

        .btn {
          width: 100%;
          max-width: 300px;
        }

        .dropdown-content {
          position: static;
          box-shadow: none;
          background: transparent;
        }

        .dropdown-content a {
          color: white;
          padding-left: 2rem;
        }
      }

      @media (max-width: 480px) {
        .diaspora-hero {
          padding: 140px 0 60px;
        }

        .diaspora-hero h1 {
          font-size: 2rem;
        }

        .diaspora-hero p {
          font-size: 1.1rem;
        }
      }