/* General Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  color: #333;
  background-color: #f9f9f9;
}

/* Container */
.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

/* Header */
/* .header {
  background-color: #71b100;
  color: white;
  padding: 15px 0;
} */
.header {
  background: url("../images/privacypolicy.webp") no-repeat;background-position: center;
  background-size: cover;
  width: 100%;
  height: 350px;
}.header .container {
padding-top: 12%;
}
.header h1 {
  margin: 0;
  padding-left: 20px;
  font-size: 2rem;color: #71b100;
}

.header nav {
  margin-top: 5px;
  padding-left: 20px;
}

.header nav a {
  color: white;
  text-decoration: none;
  margin-right: 15px;
  font-size: 1rem;
}

.header nav a:hover {
  text-decoration: underline;
}
/* ---------- Responsive ---------- */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .header {
    height: 300px;
  }
  .header .container {
    padding-top: 15%;
  }
  .header h1 {
    font-size: 1.8rem;
  }
  .header nav a {
    font-size: 0.95rem;
  }
}

/* Mobile Devices (≤768px) */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header nav {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    position: absolute;
    left: 0;
    top: 80px;
    text-align: center;
    padding: 15px 0;
  }

  .header nav a {
    display: block;
    padding: 10px 0;
    font-size: 1.1rem;
  }

  .header .container {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 25%;
  }
}

/* Very Small Devices (≤480px) */
@media (max-width: 480px) {
  .header {
    height: 250px;
  }
  .header h1 {
    font-size: 1.5rem;
  }
  .header .container {
    padding-top: 30%;
  }
}

/* Privacy Policy Content */
.privacy-policy h2 {
  color: #71b100;
  margin-bottom: 10px;
  font-size: 2rem;
}

.privacy-policy h3 {
  margin-top: 20px;
  color: #333;
  font-size: 1.3rem;
}

.privacy-policy p, .privacy-policy ul {
  margin-bottom: 15px;
  font-size: 1rem;
}

.privacy-policy ul {
  padding-left: 20px;
}.privacy-policy{
  padding: 70px 0px 70px 0px;line-height: 40px;
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 30px;
}

a {
  color: #71b100;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header nav {
    display: flex;       /* keep nav visible */
    flex-direction: row;
    background: rgba(0, 0, 0, 0.85);
    width: 100%; justify-content: space-around;
    position: static;
    text-align: center;
    padding: 0px 0;
  }
}
@media (max-width: 768px) {
  .header h1 {
    font-size: 1.5rem;
    padding-left: 15px;
  }

  .header nav a {
    font-size: 0.9rem;
    margin-right: 10px;
  }
.privacy-policy{
  padding: 30px 0px 30px 0px;
}
  .privacy-policy h2 {
    font-size: 1.5rem;
  }

  .privacy-policy h3 {
    font-size: 1.1rem;
  }

  .privacy-policy p, .privacy-policy ul {
    font-size: 0.95rem;
  }

  .container {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 1.3rem;
    padding-left: 10px;
  }

  .header nav a {
    display: block;
    margin: 5px 0;
    font-size: 0.9rem;
  }

  .privacy-policy h2 {
    font-size: 1.3rem;
  }

  .privacy-policy h3 {
    font-size: 1rem;
  }

  .privacy-policy p, .privacy-policy ul {
    font-size: 0.9rem;
  }

  .container {
    padding: 10px;
  }
}
/* Whatapp icon */
/* whatapp icon */

    .whatsapp-btn {
      position: fixed;
      bottom: 30%;
      right: 15px;
      width: 60px;
      height: 60px;
      background: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      cursor: pointer;
      animation: pulse 2s infinite, float 4s ease-in-out infinite;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      z-index: 999;
    }

    .whatsapp-btn img {
      width: 60px;
      height: 60px;
    }

    .whatsapp-btn:hover {
      transform: scale(1.15);
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    /* Pulse glow effect */
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(32, 195, 92, 0.6); }
      70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
      100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }

    /* Floating up and down */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
