/* ========================================= */
/*                PRIVACY POLICY PAGE STYLES  */
/* ========================================= */

/* General Page Layout */
.privacy-policy-main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}
  
  /* Privacy Policy Container Styling */
  .privacy-policy-container {
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 1000px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* No scroll on the container itself */
  }

  /* Title Styling */
  .privacy-policy-title {
    text-align: center;
    font-size: 2rem;
    color: black;
    font-weight: bold;
    flex-shrink: 0; /* Keep the title visible */
    border-bottom: 3px solid #e4bc1c;
    padding-bottom: 10px;
    -khtml-user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
  }

  /* FAQ List Styling */
#privacyPolicyList {
  overflow-y: auto; /* Scroll only inside the list */
  flex-grow: 1; /* Fill remaining space */
  padding: 60px;
  text-align: center;
}
  
  /* Privacy Policy Item Styling */
  .privacy-policy-item {
    margin-bottom: 20px;
  }
  
  .privacy-policy-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    -khtml-user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
  }
  
  /* Hover Effect for Privacy Policy Titles */
  .privacy-policy-item h3:hover {
    color: #e4bc1c;
    cursor: pointer;
  }
  
  .privacy-policy-item p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .privacy-policy-container {
      padding: 30px 20px;
    }
  
    .privacy-policy-title {
      font-size: 1.75rem;
    }
  
    .privacy-policy-item h3 {
      font-size: 1.1rem;
    }
  
    .privacy-policy-item p {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 480px) {
    .privacy-policy-container {
      padding: 20px 15px;
    }
  
    .privacy-policy-title {
      font-size: 1.5rem;
    }
  
    .privacy-policy-item h3 {
      font-size: 1rem;
    }
  
    .privacy-policy-item p {
      font-size: 0.9rem;
    }
  }
  
  /* ========================================= */
  /*                FAQ PAGE STYLES            */
  /* ========================================= */
  
  /* General Page Layout */
  .faq-main {
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: flex-start; /* Aligns content at the top vertically */
    padding: 60px 20px;
    background-color: #f9f9f9;
    min-height: 100vh; /* Full height of the viewport */
    flex-direction: column; /* Stack content vertically */
    box-sizing: border-box;
  }
  
  /* FAQ Container Styling */
  .faq-container {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 1000px; /* Increased width */
    margin-bottom: 40px; /* Adds space between content and footer */
    box-sizing: border-box;
    margin-left: auto; /* Centers the container horizontally */
    margin-right: auto; /* Centers the container horizontally */
  }
  
  /* Title Styling */
  .faq-title {
    text-align: center;
    font-size: 2rem;
    color: black;
    font-weight: bold;
    margin-bottom: 60px;
  }
  
  /* FAQ Item Styling */
  .faq-item {
    margin-bottom: 20px;
  }
  
  .faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
  }
  
  /* Hover Effect for FAQ Titles */
  .faq-item h3:hover {
    color: #005fa3;
    cursor: pointer;
  }
  
  .faq-item p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .faq-container {
      padding: 30px 20px;
    }
  
    .faq-title {
      font-size: 1.75rem;
    }
  
    .faq-item h3 {
      font-size: 1.1rem;
    }
  
    .faq-item p {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 480px) {
    .faq-container {
      padding: 20px 15px;
    }
  
    .faq-title {
      font-size: 1.5rem;
    }
  
    .faq-item h3 {
      font-size: 1rem;
    }
  
    .faq-item p {
      font-size: 0.9rem;
    }
  }

@media (max-width: 1024px) {
  .privacy-policy-main {
    padding: 0;
  }

  .privacy-policy-container {
    border: none;
    box-shadow: none;
    border-radius: 0;
  }

  #privacyPolicyList {
    padding: 10px;
  }
}
    