body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
  }
  
  .privacy-policy {
    max-width: 90%;
    margin: 87px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }
  .color{
    color: #1e87f0;
  }
  
  .privacy-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .privacy-header h1 {
    font-size: 36px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .privacy-header p {
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.6;
  }
  
  .privacy-content h2 {
    font-size: 26px;
    color: #222;
    margin-top: 40px;
    font-weight: 600;
  }
  
  .privacy-content h3 {
    font-size: 22px;
    color: #444;
    margin-top: 25px;
    font-weight: 800;
  }
  .nav-link {
    color: black !important;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .nav-link:hover {
    background-color: #1e87f0; 
    color: white !important;  
    border-radius: 4px;      
    padding: 5px 10px;         
  }
 
  .privacy-content p {
    font-size: 16px;
    color: black;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  
  .privacy-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
  }
  section {
    margin-bottom: 20px !important;
    padding:0 !important;
  }
  
  
  .privacy-content li {
    font-size: 16px;
    color: #050505;
    line-height: 1.6;
  }
  
  .privacy-footer {
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
    color: #777;
  }
  
  a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  a:focus {
    outline: none;
  }
  .footer {
    background-color: #0d1117; /* dark navy/black-blue */
    color: #ffffff; /* white text */
    padding: 20px 0;
    font-size: 16px;
  }
  
  .footer a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  /* Optional: Add spacing between terms & privacy */
  .footer small span {
    margin: 0 8px;
  }
  .header {
    background-color: #ffffff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .nav-link {
    color: #000000;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
  }
  
  .nav-link:hover {
    color: #0094e8;
  }
  
  .home-button {
    background-color: #0094e8;
    color: #ffffff;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    border: none;
  }
  
  .book-button {
    background-color: #4CAF50;
    color: #ffffff;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    border: none;
  }
  
  .hamburger {
    width: 25px;
    height: 2px;
    background-color: #000000;
    margin: 4px 0;
  }
  
  @media screen and (max-width: 768px) {
    .privacy-policy {
      padding: 20px;
      margin: 20px;
    }
  
    .privacy-header h1 {
        font-size: 28px;
        margin-right: 0;
        text-align: left;
      }
    
      .privacy-header p {
        font-size: 16px;
        margin-right: 0;
        text-align: left;
      }
  
    .privacy-content h2 {
      font-size: 24px;
    }
  
    .privacy-content h3 {
      font-size: 20px;
    }
  
    .privacy-footer {
      font-size: 12px;
    }
  }
  
  