.support-header h1 {
  font-family: 'Lexend', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2.7rem;
  color: #000000; /* Deep blue for strong impact */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem; /* Space for the line */
  text-align: center;
  margin-top: 45px;
  position: relative;
}
.support-header h1::after {
  content: '';
  display: block;
  width: 280px;
  height: 6px;
  background: linear-gradient(90deg, #940bfc, #02fddc);
  margin: 0 auto;
  border-radius: 2px;
  margin-top: 0.5rem;
}
  /* Wrapper that spans full width and applies background */
.privacy-wrapper {
    width: 100%;
    padding: 30px 0; /* Adds spacing around the policy box */
    background: url('../img/background.jpg'); /* Change to color if needed */
    background-size: cover; /* Ensure the image covers the full screen */
    background-repeat: no-repeat; /* Prevent tiling */
    background-position: center center; /* Center the image */
    background-attachment: fixed; /* Keep the background fixed on scroll */
}

/* Privacy Policy Box */
.privacy-policy-container {
    width: calc(100% - 300px); /* Keeps 150px margin on both sides */
    margin: 100px auto 0;
    padding: 20px;
    background-color: #fff; /* White background for content */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    line-height: 1.6;
    position: relative; /* Ensures it sits properly over the wrapper */
}

  .privacy-policy-container p {
    margin: 15px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: #000000; /* Rich Purple */
  }
  .privacy-policy-container ul {
    margin: 15px 0 15px 20px;
    list-style: disc;
  }
  .privacy-policy-container li {
    margin: 10px 0;
    font-family: 'Inter', sans-serif;
    color: #061d0f; 
    font-size: 1.2rem;
    font-weight: 400;
    
  }
  .privacy-policy-container h2 {
    margin-top: 30px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #1b02a8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    
  }

  .privacy-policy-container h3 {
    margin-top: 30px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #004D99; /* Cool Deep Blue */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    
  }

  .privacy-policy-container hr {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid #eee;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    /* For medium screens, reduce side margins to 50px */
    .privacy-policy-container {
      width: calc(100% - 100px);
     
    }
  }
  @media (max-width: 480px) {
    /* For small screens, use a 15px margin on each side */
    .services-header {
      padding: 15px;
    }
    .services-header h1 {
      font-size: 2rem;
    }
    .privacy-policy-container {
      width: calc(100% - 30px);
     
    }
    .privacy-policy-container h2 {
      font-size: 1.5rem;
    }

    .support-header h1 {
      font-size: 2rem;
      margin-top: 40px;
    }
    .support-header h1::after {
      width: 240px;
      height: 4px;
    }

  }