    /* My Main Colours for MzanziReg logo*/
:root {
      --primary: #2563eb;
      --secondary: #1e40af;
      --accent: #f59e0b;
      --light: #f8fafc;
      --dark: #1e293b;
      --success: #10b981;
      --danger: #ef4444;
      --gray: #64748b;
    }
    * {margin: 0; padding: 0; box-sizing: border-box;}
    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
      color: var(--dark);
      line-height: 1.6;
      padding-bottom: 60px; /* Space for sticky contact bar */
    }

    nav {
      background: white;
      padding: 15px 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    nav img { height: 70px; }
    nav ul { display: flex; list-style: none; gap: 20px; }
    nav ul li a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }
    
    nav ul li a:hover { color: var(--accent); }

    /* Burger menu styles */
    .burger-menu {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 25px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1000;
    }
    
    .burger-menu span {
      width: 100%;
      height: 3px;
      background-color: var(--primary);
      border-radius: 10px;
      transition: all 0.3s linear;
    }
    
    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger-menu.active span:nth-child(2) {
      opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 75%;
      max-width: 300px;
      height: 100%;
      background: white;
      box-shadow: -5px 0 15px rgba(0,0,0,0.1);
      z-index: 999;
      transition: right 0.3s ease-in-out;
      padding: 80px 20px 20px;
    }
    
    .mobile-nav.active {
      right: 0;
    }
    
    .mobile-nav ul {
      flex-direction: column;
      gap: 15px;
    }
    
    .mobile-nav ul li a {
      display: block;
      padding: 10px;
      border-radius: 5px;
      transition: background 0.3s;
    }
    
    .mobile-nav ul li a:hover {
      background: #f0f9ff;
    }
    
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    
    .overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Smaller header */
    header {
      text-align: center;
      padding: 30px 20px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      color: white;
    }
    header h1 { font-size: 2rem; margin-bottom: 8px; }
    header p { font-size: 1.1rem; font-weight: 300; }

    .container { 
      max-width: 1200px; 
      margin: 0 auto; 
      padding: 20px;
    }

    /* FAQ Styles */
    .faq-section {
      max-width: 800px;
      margin: 40px auto;
    }
    
    .faq-section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 30px;
      color: var(--primary);
      position: relative;
    }
    
    .faq-section h2:after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: var(--accent);
      margin: 10px auto;
      border-radius: 2px;
    }
    
    .faq-container {
      background: white;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      overflow: hidden;
    }
    
    .faq-item {
      border-bottom: 1px solid #e2e8f0;
      transition: all 0.3s ease;
    }
    
    .faq-question {
      padding: 20px 25px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-size: 1.1rem;
      background: #f8fafc;
      transition: background 0.3s;
    }
    
    .faq-question:hover {
      background: #f0f9ff;
    }
    
    .faq-question .icon {
      transition: transform 0.3s ease;
      color: var(--primary);
    }
    
    .faq-question.active .icon {
      transform: rotate(180deg);
    }
    
    .faq-answer {
      padding: 0 25px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      background: white;
    }
    
    .faq-question.active + .faq-answer {
      padding: 20px 25px;
      max-height: 500px;
    }
    
    .faq-answer p {
      margin-bottom: 15px;
      line-height: 1.7;
    }
    
    .faq-answer ul {
      padding-left: 20px;
      margin-bottom: 15px;
    }
    
    .faq-answer li {
      margin-bottom: 8px;
    }
    
    .faq-answer .highlight {
      background: #fff8e1;
      padding: 15px;
      border-radius: 10px;
      border-left: 3px solid var(--accent);
      margin: 15px 0;
    }
    
    .faq-categories {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }
    
    .faq-category-btn {
      background: white;
      border: 2px solid var(--primary);
      color: var(--primary);
      padding: 10px 20px;
      border-radius: 30px;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.3s;
    }
    
    .faq-category-btn:hover, 
    .faq-category-btn.active {
      background: var(--primary);
      color: white;
    }
    
    .support-cta {
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      color: white;
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      margin: 50px 0;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    
    .support-cta h3 {
      font-size: 1.8rem;
      margin-bottom: 15px;
    }
    
    .support-cta p {
      max-width: 600px;
      margin: 0 auto 25px;
    }
    
    .support-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }
    
    .support-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: white;
      color: var(--primary);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
    }
    
    .support-btn.whatsapp {
      background: #25D366;
      color: white;
    }
    
    .support-btn.email {
      background: var(--accent);
      color: var(--dark);
    }
    
    .support-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    footer {
      text-align: center;
      padding: 20px 0;
      margin-top: 40px;
      color: var(--gray);
      font-size: 0.85rem;
      border-top: 1px solid #e2e8f0;
    }

    /* Sticky contact bar for mobile */
    .sticky-contact-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: white;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
      z-index: 1000;
      display: flex;
      justify-content: space-around;
      padding: 12px 10px;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    
    .sticky-contact-bar.visible {
      transform: translateY(0);
    }
    
    .contact-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
      font-size: 0.75rem;
      flex: 1;
      padding: 5px;
      transition: all 0.3s;
    }
    
    .contact-btn i {
      font-size: 1.5rem;
      margin-bottom: 5px;
      transition: transform 0.3s;
    }
    
    .contact-btn:hover i {
      transform: scale(1.1);
    }
    
    .contact-btn.whatsapp {
      color: #25D366;
    }
    
    .contact-btn.email {
      color: var(--primary);
    }
    
    .contact-btn.call {
      color: var(--success);
    }
    
    .contact-btn:hover {
      background: #f8fafc;
      border-radius: 8px;
    }

    @media (max-width: 768px) {
      nav ul { display: none; }
      .burger-menu {
        display: flex;
      }
      header h1 { font-size: 1.6rem; }
      header p { font-size: 1rem; }
      
      .faq-question {
        padding: 15px;
        font-size: 1rem;
      }
      
      .faq-categories {
        gap: 10px;
      }
      
      .faq-category-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
      }
      
      .support-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .support-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }
      
      .sticky-contact-bar {
        display: flex;
      }
    }
    
    @media (min-width: 769px) {
      .mobile-nav, .overlay {
        display: none;
      }
      .sticky-contact-bar {
        display: none;
      }
    }
    
    .section-intro {
      text-align: center;
      margin-bottom: 2.5rem;
      padding: 0 1rem;
    }

    .section-intro .headline {
      font-size: 2rem;
      font-weight: 700;
      color: #007bff;
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }

    .subtext {
      font-size: 0.85rem;       /* smaller font size */
      color: #666666;           /* muted/dark gray color */
      font-weight: 00;         /* normal weight */
      font-style: italic;       /* optional, for a softer tone */
      letter-spacing: 0.02em;   /* slight spacing */
      line-height: 1.3;         /* tighter line height */
      margin-top: 0.25em;       /* space above subtext */
    }
    
    .trust-badges {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin: 20px 0;
      flex-wrap: wrap;
    }
    
    .trust-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: white;
      padding: 8px 15px;
      border-radius: 20px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      font-size: 0.85rem;
    }
    
    .trust-badge i {
      color: var(--success);
      font-size: 1.2rem;
    }
    
    .results {
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      color: white;
      padding: 10px 15px;
      border-radius: 10px;
      text-align: center;
      margin: 20px 0;
      font-weight: 600;
    }
    
    .results i {
      margin-right: 8px;
    }
    
    .testimonial {
      background: white;
      padding: 15px;
      border-radius: 10px;
      margin: 20px 0;
      position: relative;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      font-style: italic;
      border-left: 4px solid var(--accent);
    }
    
    .testimonial::before {
      content: """;
      position: absolute;
      top: -10px;
      left: 10px;
      font-size: 4rem;
      color: rgba(0,0,0,0.05);
      font-family: serif;
    }
    
    .testimonial-author {
      text-align: right;
      font-weight: 600;
      font-style: normal;
      margin-top: 10px;
      color: var(--secondary);
    }
/* Remove bullets */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Remove underline from links */
nav a {
  text-decoration: none;
}

/* Optional: make links inherit your font color */
nav a {
  color: inherit; /* Or set a specific color like #000 */
}
nav ul,
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a,
.mobile-nav a {
  text-decoration: none;
  color: inherit;
}
body {
  background: url("images/handshake.jpg") no-repeat center center fixed;
  background-size: cover;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* Dark overlay */
  z-index: -1;
}
/************Footer********************/
footer {
      background: var(--dark);
      color: white;
      padding: 60px 0 30px;
      margin-top: 80px;
    }
    
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }
    
    .footer-column h3 {
      font-size: 1.4rem;
      margin-bottom: 25px;
      color: var(--accent);
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--primary);
    }
    
    .footer-column p {
      color: #cbd5e1;
      margin-bottom: 20px;
      line-height: 1.7;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: #cbd5e1;
      text-decoration: none;
      transition: color 0.3s;
      display: flex;
      align-items: center;
    }
    
    .footer-links a i {
      margin-right: 10px;
      width: 20px;
      color: var(--accent);
    }
    
    .footer-links a:hover {
      color: var(--accent);
    }
    
    .copyright {
      text-align: center;
      padding-top: 40px;
      margin-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.1);
      color: #94a3b8;
      font-size: 0.9rem;
    }