/* Privacy Policy */
  .privacy-policy-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .privacy-title{
    padding-top: 5rem;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .privacy-subtitle{
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    line-height: 1.6;
  }

  .policy-section {
    backdrop-filter: blur(-10px);
    box-shadow: rgba(31, 38, 135, 0.2) 0px 8px 32px 0px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25) ;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
  }

  .policy-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding-left: 1rem;
  }

  .policy-section ul {
    list-style: disc;
    padding-left: 2rem;
  }
  
  .policy-section ul li {
    margin-bottom: 0.8rem;
  }
  
  .policy-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }

  .highlight-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
  }
  
  .highlight-text {
    font-weight: 700;
  }

  .policy-section em {
    font-size: 16px;
    font-style: italic;
  }

  
  /* ------------------ RESPONSIVE ------------------ */
  @media (max-width: 768px) {
    .privacy-title{
      font-size: 2.5rem;
    }
  
    .privacy-subtitle{
      font-size: 1.2rem;
    }
  
    .policy-section {
      padding: 1.5rem 1rem;
    }
  }






  