/* Reset default body and html padding/margin */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    overflow-x: hidden; /* Prevent sideways scroll */
}
 
/* Apply box-sizing border-box globally */
*, *::before, *::after {
    box-sizing: border-box;
}
.back-privacy-policy {
    position: relative;
    text-align: left;
    background-image: url(../images/Services/privacy-policy/back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    min-height: 85vh;
    padding: 40px 20px;
    font-size: 2rem;
}
.highlight-policy{

    color: #2b5797;
    font-size: 2.6rem;
}
/* Overlay */
.back-privacy-policy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.11);
    z-index: 1;
}

/* Text Styling */
.back-privacy-policy h1,
.back-privacy-policy p {
    position: relative;
    z-index: 2; /* Content above overlay */
}

.back-privacy-policy h1 {
    font-size: 8rem;
    margin-top: 20rem;
    font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: hsl(0, 0%, 100%);
}

.back-privacy-policy h2 {
    margin-top: 1rem;
    font-size: 3.2rem;
    font-family: Arial;
    /* margin-right: 550px; */
    padding: 0.2em 0.5em;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .back-privacy-policy {
        padding: 30px 15px;
    }
    
    .back-privacy-policy h1 {
        margin-top: 15rem;
    }

    .back-privacy-policy h2 {
        margin-right: 400px;
    }

    .back-privacy-policy h3 {
        margin-right: 500px;
    }
}

@media (max-width: 768px) {
    .back-privacy-policy {
        padding: 20px 10px;
        background-attachment: scroll; /* Better performance on smaller devices */
    }

    .back-privacy-policy h1 {
        margin-top: 10rem;
        font-size: 8rem;
    }

    .back-privacy-policy h2 {
        margin-right: 0;
        font-size: 3rem;
    }

    .back-privacy-policy h3 {
        margin-right: 0;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .back-privacy-policy h1 {
        font-size: 8rem;
        margin-top: 5rem;
    }
    .highlight-policy{

        color: #2b5797;
        font-size:2.2rem;
    }

    .back-privacy-policy h2,
    .back-privacy-policy h3 {
        font-size: 2.5rem;
        margin-right: 0;
        padding: 0.1em;
    }
}


/*  */
.section-container {
    font-family: Arial, sans-serif;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
    /* background-color: #afe4ff; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0); 
    transition: all 0.3s ease-in-out; 
}

.section-title {
    font-size: 3.6rem;
    color: #2b5797;
    margin-bottom: 10px;
    border-bottom: 3px solid #2b972d;
    padding-bottom: 5px;
    display: inline-block;   
}

.section-content {
    line-height: 1.6;
    /* color: #333;  */
}

.section-content .highlight {
    font-weight: bold;
    color: #f39c12;
}

.section-content p {
    margin-bottom: 15px;
    font-size: 1.6rem;
    text-align: justify;
}



@media (max-width: 768px) {
    .section-container {
        padding: 30px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-content {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 20px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-content {
        font-size: 13px;
    }
}


.privacy-policy-features-section{
    margin-bottom: 30PX;
}

.privacy-policy-product {
    width: 100vw;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden !important;
    box-sizing: border-box;
  }
  
  .privacy-policy-product h1 {
    color: #0d3281;

    font-size: 5.5rem; /* Default font size for large screens */
    margin-top: 9rem;
    font-weight: bold;
  }
  
  .privacy-policy-product h2 {
    color: #0d3281;
    font-size: 3rem; /* Default font size for large screens */
    /* margin: 10px 0; */
  }
  
  /* Media Queries */
  
  /* For large tablets and small laptops (1000px - 1200px) */
  @media (max-width: 1200px) and (min-width: 1000px) {
    .privacy-policy-product h1 {
      font-size: 4.5rem; /* Reduce font size */
    }
  
    .privacy-policy-product h2 {
      font-size: 2.5rem; /* Reduce font size */
    }
  }
  
  /* For tablets (760px - 1000px) */
  @media (max-width: 1000px) and (min-width: 760px) {
  
  
    .privacy-policy-product h1 {
      font-size: 3.5rem; /* Smaller font size for tablets */
    }
  
    .privacy-policy-product h2 {
      font-size: 2rem; /* Smaller font size for tablets */
    }
  }
  
  /* For mobile devices (320px - 760px) */
  @media (max-width: 760px) {
    .privacy-policy-product {
      /* padding: 15px; */
      text-align: center;
    }
  
    .privacy-policy-product h1 {
      font-size: 2.5rem; /* Adjust font size for smaller screens */
    }
  
    .privacy-policy-product h2 {
      font-size: 1.5rem; /* Adjust font size for smaller screens */
    }
  }
  
  /* For very small screens (less than 320px) */
  @media (max-width: 320px) {
    .privacy-policy-product h1 {
      font-size: 2rem; /* Further reduce font size */
    }
  
    .privacy-policy-product h2 {
      font-size: 1.2rem; /* Further reduce font size */
    }
  }
  

.privacy-policy-section-content ul{
    margin-left: 20px;

}

.privacy-policy-section-content ul li{
    margin-left: 20px;
    font-size: 1.6rem;

}
  
  