
    :root {
      --primary-color: #EE9B22;
      --secondary-color: #2E4AFF;
      --text-color: #333;
      --bg-color: #fff;
    }

    .privacy {
      font-family: 'Poppins', sans-serif !important;
      background-color: var(--bg-color) !important;
      color: var(--text-color) !important;
      margin: 0 !important;
      padding: 0 !important;
      line-height: 1.7 !important;
    }

    a.themebtu.full {
    text-decoration-line: none !important;
}

    .privacy {
      max-width: 1000px !important;
      margin: auto !important;
      padding: 120px 20px 80px 20px !important;
    }

    h1, h2, h3 {
      color: var(--secondary-color);
      margin-top: 40px;
    }

    h1 {
      font-size: 36px;
      border-bottom: 3px solid var(--primary-color);
      padding-bottom: 10px;
    }

    h2 {
      font-size: 28px;
      margin-top: 40px;
      position: relative;
    }

    h2::before {
      content: '';
      width: 4px;
      height: 28px;
      background-color: var(--primary-color);
      position: absolute;
      left: -20px;
      top: 7px;
    }

    h3 {
      font-size: 22px;
      color: var(--primary-color);
    }

    ul {
      padding-left: 20px;
      margin-top: 10px;
    }

    li {
      margin-bottom: 8px;
    }

    a {
      color: var(--secondary-color);
      text-decoration: underline;
    }

    strong {
      color: var(--secondary-color);
    }

    .contact-section {
      background-color: #f9f9f9;
      padding: 30px;
      margin-top: 60px;
      border-left: 5px solid var(--primary-color);
    }

    .mobile-nav > ul > li > a {
    font-size: 16px;
    line-height: 30px;
    color: white;
    text-decoration-line: none;
}

    @media (max-width: 768px) {
      h1 {
        font-size: 28px;
      }

      h2 {
        font-size: 22px;
      }

      h3 {
        font-size: 18px;
      }
    }


      @media (max-width: 500px) {
        .privacy {
            margin: auto !important;
            padding: 80px 20px 50px 20px !important;
        }

        h3 {
            margin-top: 10px;
        }
      }
 