

      /* General Styles */
      * {
       margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #ffffff;
      }

      /* NAVBAR-HOMEPAGE */
      header {
        position: fixed;
        width: 100%;
        top: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        border-radius: 10px; /* Rounded corners */
        box-shadow: 0px 4px 10px rgba(0.5, 0.5, 0.5, 0.1); /* Subtle shadow */
      }

      .logo img {
        max-height: 50px;
      }

      .nav-header {
  display: flex;
  list-style: none;
  margin: 15px;
  padding: 0;
  justify-content: center; /* Center the links */
  flex: 1; /* Take available space */
  max-width: 500px; /* Limit width for better centering */
  margin-right: 75px;
}

.nav-header a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  margin: 0 15px;
  font-size: 16px;
  transition: all 0.4s ease;
}
      .nav-header a:hover {
        color: #00aef1;
        opacity: 0.8;
      }

      .whatsapp-header-btn {
        display: inline-block;
        border: 3px solid #0d7d00;
        font-size: 15px;
        color: rgb(0, 0, 0);
        padding: 5px 15px;
        text-decoration: none;
        border-radius: 30px;
        letter-spacing: 0.5px;
        transition: all 0.45s ease;
        background-color: rgb(255, 255, 255);
      }

      .whatsapp-header-btn:hover {
        color: rgb(17, 110, 0);
      }

      .hamburger {
        display: none;
        font-size: 24px;
        color: #000000;
        cursor: pointer;
        margin-right: 10px; /* Align next to the WhatsApp button */
      }

      /* Responsive Styles */
      /* Responsive Styles ---------------------------------------------- FIXED */
@media (max-width: 768px) {
  /* Reset desktop styles for mobile */
  .nav-header {
    margin: 0 !important;
    max-width: none !important;
    flex: none !important;
    justify-content: flex-start !important;
  }

  .nav-header {
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    width: 100%;
    height: auto;
    display: none;
    z-index: 1000;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
  }

  .nav-header.active {
    display: flex !important;
  }

  .nav-header a {
    margin: 8px 20px;
    font-size: 18px;
    color: rgb(0, 0, 0);
    padding: 12px 20px;
    text-align: left;
    width: calc(100% - 40px);
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    display: block;
  }

  .nav-header a:last-child {
    border-bottom: none;
  }

  .nav-header a:hover {
    background-color: #f8f9fa;
    color: #00aef1;
  }

  .hamburger {
    display: block;
    font-size: 28px;
    color: #000000;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    margin-left: auto;
  }

  .whatsapp-header-btn {
    margin-left: 15px;
    font-size: 14px;
    padding: 6px 12px;
  }

  /* Ensure header has proper layout */
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
  }

  .logo {
    flex-shrink: 0;
  }
}
/* Responsive Styles ---------------------------------------------- FIXED */

      /* Additional styles for the cancellation policy page */
      .policy-header {
        background-color: #f8f9fa;
        padding: 100px 0 40px;
        text-align: center;
        margin-bottom: 40px;
      }
      
      .policy-header h1 {
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
        font-size: 2.5rem;
      }
      
      .policy-header p {
        color: #666;
        max-width: 800px;
        margin: 0 auto;
        font-size: 1.1rem;
      }
      
      .policy-container {
        max-width: 1200px;
        margin: 0 auto 60px;
        padding: 0 20px;
      }
      
      .policy-section {
        margin-bottom: 50px;
      }
      
      .policy-section h2 {
       
        font-weight: 600;
        color: #333;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #f0f0f0;
        font-size: 1.8rem;
      }
      
      .policy-section h3 {
        
        font-weight: 600;
        color: #444;
        margin: 25px 0 15px;
        font-size: 1.3rem;
      }
      
      .policy-section p, .policy-section li {
        font-family: "Nunito", sans-serif;
        color: #555;
        line-height: 1.6;
        margin-bottom: 15px;
        font-size: 1rem;
      }
      
      .policy-section ul {
        padding-left: 20px;
      }
      
      .policy-section li {
        margin-bottom: 10px;
      }
      
      .policy-table {
        width: 100%;
        border-collapse: collapse;
        margin: 25px 0;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        overflow: hidden;
      }
      
      .policy-table th {
        background-color: #333;
        color: white;
        text-align: left;
        padding: 15px;
        font-weight: 600;
      }
      
      .policy-table td {
        padding: 15px;
        border-bottom: 1px solid #ddd;
        font-family: "Nunito", sans-serif;
      }
      
      .policy-table tr:nth-of-type(even) {
        background-color: #f8f9fa;
      }
      
      .policy-table tr:last-of-type {
        border-bottom: 2px solid #333;
      }
      
      .policy-note {
        background-color: #f8f9fa;
        padding: 20px;
        border-left: 4px solid #333;
        margin: 30px 0;
        border-radius: 0 8px 8px 0;
      }
      
      .policy-note strong {
        color: #333;
      }
      
      .back-to-top {
        text-align: center;
        margin-top: 40px;
      }
      
      .back-to-top a {
        display: inline-block;
        background-color: #333;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        transition: background-color 0.3s;
      }
      
      .back-to-top a:hover {
        background-color: #555;
      }
      
      /* -------------- max 768px --------------------- */
      @media (max-width: 768px) {
        .policy-table {
          display: block;
          overflow-x: auto;
        }
        
        .policy-header {
          padding: 100px 0 30px;
        }
        
        .policy-header h1 {
          font-size: 2rem;
        }
        
        .policy-section h2 {
          font-size: 1.5rem;
        }
        
        .policy-section h3 {
          font-size: 1.2rem;
        }
      }
      
      /* UPDATED FOOTER STYLES */
      .whatsapp-btn{
        display: inline-block;
        border: 3px solid #0d7d00;
        font-size: 16px;
        color: rgb(0, 0, 0);
        padding: 8px 20px;
        text-decoration: none;
        border-radius: 30px;
        letter-spacing: 1px;
        transition: all .45s ease;
        background-color: rgb(255, 255, 255);
        text-align: center;
        margin-top: 10px;
      }
      .whatsapp-btn:hover{
        letter-spacing: 2px;
        color: rgb(38, 255, 0);
      }

      .footer-section {
        background-color: #ffffff;
        color: #2e2e2e;
        padding: 40px 20px 20px;
        border-radius: 10px;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
        position: relative;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        align-items: start;
        margin-bottom: 30px;
      }

      .footer-column {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .footer-column h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: #333;
      }

      .footer-column p {
        font-size: 0.9rem;
        margin: 5px 0;
        color: #000000;
      }

      .quick-links {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
      }

      .quick-links li {
        margin-bottom: 8px;
      }

      .quick-links a {
        color: #000000;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.9rem;
      }

      .quick-links a:hover {
        color: #f7941d;
      }

      /* Social Links Section */
      .footer-socials {
        text-align: center;
        margin: 20px 0;
        padding: 20px 0;
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
      }

      .footer-socials h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        color: #333;
        font-weight: 600;
      }

      .social-links-horizontal {
        display: flex;
        justify-content: center;
        gap: 30px;
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .social-links-horizontal li {
        display: inline-block;
      }

      .social-links-horizontal a {
        color: #000000;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 5px;
      }

      .social-links-horizontal a:hover {
        color: #f7941d;
      }

      .footer-bottom {
        text-align: center;
        margin-top: 20px;
        font-size: 0.8rem;
        padding-top: 20px;
        color: #666;
      }

      .footerlogo {
        max-width: 180px;
        height: auto;
        margin-bottom: 10px;
      }

      /* Tablet and smaller screens */
      @media (max-width: 1024px) {
        .footer-content {
          grid-template-columns: repeat(2, 1fr);
          gap: 40px;
        }
        
        .footer-column {
          text-align: center;
        }
      }

      /* Mobile screens */
      @media (max-width: 768px) {
        .footer-content {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        
        .footer-column {
          text-align: center;
        }
        
        .footer-column h3 {
          font-size: 1.4rem;
        }
        
        .footer-column p, 
        .quick-links a {
          font-size: 1rem;
        }

        
      .footerlogo {
        max-width: 180px;
        height: auto;
        margin-bottom: 10px;
      }
        
        .whatsapp-btn {
          font-size: 1rem;
          padding: 10px 25px;
        }

        .social-links-horizontal {
          gap: 20px;
          flex-wrap: wrap;
        }

        .social-links-horizontal a {
          font-size: 0.9rem;
        }
      }

      /* Small mobile screens */
      @media (max-width: 480px) {
        .footer-section {
          padding: 30px 15px 15px;
        }
        
        .footer-content {
          gap: 25px;
        }
        
        .footer-column h3 {
          font-size: 1.2rem;
        }
        
        .footer-column p, 
        .quick-links a {
          font-size: 0.9rem;
        }
        
      
      .footerlogo {
        max-width: 180px;
        height: auto;
        margin-bottom: 10px;
      }

        .social-links-horizontal {
          gap: 15px;
        }

        .social-links-horizontal a {
          font-size: 0.85rem;
        }

        .footer-socials h4 {
          font-size: 1rem;
        }
      }
        /* General Styles */
      * {
       margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #ffffff;
      }

      /* NAVBAR-HOMEPAGE */
      header {
        position: fixed;
        width: 100%;
        top: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        border-radius: 10px; /* Rounded corners */
        box-shadow: 0px 4px 10px rgba(0.5, 0.5, 0.5, 0.1); /* Subtle shadow */
      }

      .logo img {
        max-height: 50px;
      }

      .nav-header {
  display: flex;
  list-style: none;
  margin: 15px;
  padding: 0;
  justify-content: center; /* Center the links */
  flex: 1; /* Take available space */
  max-width: 500px; /* Limit width for better centering */
  margin-right: 75px;
}

.nav-header a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  margin: 0 15px;
  font-size: 16px;
  transition: all 0.4s ease;
}
      .nav-header a:hover {
        color: #00aef1;
        opacity: 0.8;
      }

      .whatsapp-header-btn {
        display: inline-block;
        border: 3px solid #0d7d00;
        font-size: 15px;
        color: rgb(0, 0, 0);
        padding: 5px 15px;
        text-decoration: none;
        border-radius: 30px;
        letter-spacing: 0.5px;
        transition: all 0.45s ease;
        background-color: rgb(255, 255, 255);
      }

      .whatsapp-header-btn:hover {
        color: rgb(17, 110, 0);
      }

      .hamburger {
        display: none;
        font-size: 24px;
        color: #000000;
        cursor: pointer;
        margin-right: 10px; /* Align next to the WhatsApp button */
      }

      /* Responsive Styles */
      @media (max-width: 768px) {
        .nav-header {
          flex-direction: column;
          position: absolute;
          top: 60px;
          right: 0;
          background-color: #ffffff;
          width: 100%;
          display: none;
          z-index: 1000;
          border: 1px solid #000000;
        }

        .nav-header.active {
          display:flex;
        }

        .nav-header a {
          margin: 10px 0;
          font-size: 18px;
          color: rgb(0, 0, 0);
        }

        .nav-header a:hover {
          color: #00aef1;
        }

        .hamburger {
          display: block;
          order: 1; /* Ensure the hamburger appears before WhatsApp */
          margin-right: 0;
          margin-left: auto; /* Push it next to WhatsApp button */
        }

        .whatsapp-header-btn {
          order: 2;
          margin-left: 10px;
        }
      }

      /* Additional styles for the cancellation policy page */
      .policy-header {
        background-color: #f8f9fa;
        padding: 100px 0 40px;
        text-align: center;
        margin-bottom: 40px;
      }
      
      .policy-header h1 {
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
        font-size: 2.5rem;
      }
      
      .policy-header p {
        color: #666;
        max-width: 800px;
        margin: 0 auto;
        font-size: 1.1rem;
      }
      
      .policy-container {
        max-width: 1200px;
        margin: 0 auto 60px;
        padding: 0 20px;
      }
      
      .policy-section {
        margin-bottom: 50px;
      }
      
      .policy-section h2 {
       
        font-weight: 600;
        color: #333;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #f0f0f0;
        font-size: 1.8rem;
      }
      
      .policy-section h3 {
        
        font-weight: 600;
        color: #444;
        margin: 25px 0 15px;
        font-size: 1.3rem;
      }
      
      .policy-section p, .policy-section li {
        font-family: "Nunito", sans-serif;
        color: #555;
        line-height: 1.6;
        margin-bottom: 15px;
        font-size: 1rem;
      }
      
      .policy-section ul {
        padding-left: 20px;
      }
      
      .policy-section li {
        margin-bottom: 10px;
      }
      
      .policy-table {
        width: 100%;
        border-collapse: collapse;
        margin: 25px 0;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        overflow: hidden;
      }
      
      .policy-table th {
        background-color: #333;
        color: white;
        text-align: left;
        padding: 15px;
        font-weight: 600;
      }
      
      .policy-table td {
        padding: 15px;
        border-bottom: 1px solid #ddd;
        font-family: "Nunito", sans-serif;
      }
      
      .policy-table tr:nth-of-type(even) {
        background-color: #f8f9fa;
      }
      
      .policy-table tr:last-of-type {
        border-bottom: 2px solid #333;
      }
      
      .policy-note {
        background-color: #f8f9fa;
        padding: 20px;
        border-left: 4px solid #333;
        margin: 30px 0;
        border-radius: 0 8px 8px 0;
      }
      
      .policy-note strong {
        color: #333;
      }
      
      .back-to-top {
        text-align: center;
        margin-top: 40px;
      }
      
      .back-to-top a {
        display: inline-block;
        background-color: #333;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        transition: background-color 0.3s;
      }
      
      .back-to-top a:hover {
        background-color: #555;
      }
      
      /* -------------- max 768px --------------------- */
      @media (max-width: 768px) {
        .policy-table {
          display: block;
          overflow-x: auto;
        }
        
        .policy-header {
          padding: 100px 0 30px;
        }
        
        .policy-header h1 {
          font-size: 2rem;
        }
        
        .policy-section h2 {
          font-size: 1.5rem;
        }
        
        .policy-section h3 {
          font-size: 1.2rem;
        }
      }
      
      /* UPDATED FOOTER STYLES */
      .whatsapp-btn{
        display: inline-block;
        border: 3px solid #0d7d00;
        font-size: 16px;
        color: rgb(0, 0, 0);
        padding: 8px 20px;
        text-decoration: none;
        border-radius: 30px;
        letter-spacing: 1px;
        transition: all .45s ease;
        background-color: rgb(255, 255, 255);
        text-align: center;
        margin-top: 10px;
      }
      .whatsapp-btn:hover{
        letter-spacing: 2px;
        color: rgb(38, 255, 0);
      }

      .footer-section {
        background-color: #ffffff;
        color: #2e2e2e;
        padding: 40px 20px 20px;
        border-radius: 10px;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
        position: relative;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        align-items: start;
        margin-bottom: 30px;
      }

      .footer-column {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .footer-column h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: #333;
      }

      .footer-column p {
        font-size: 0.9rem;
        margin: 5px 0;
        color: #000000;
      }

      .quick-links {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
      }

      .quick-links li {
        margin-bottom: 8px;
      }

      .quick-links a {
        color: #000000;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.9rem;
      }

      .quick-links a:hover {
        color: #f7941d;
      }

      /* Social Links Section */
      .footer-socials {
        text-align: center;
        margin: 20px 0;
        padding: 20px 0;
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
      }

      .footer-socials h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        color: #333;
        font-weight: 600;
      }

      .social-links-horizontal {
        display: flex;
        justify-content: center;
        gap: 30px;
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .social-links-horizontal li {
        display: inline-block;
      }

      .social-links-horizontal a {
        color: #000000;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 5px;
      }

      .social-links-horizontal a:hover {
        color: #f7941d;
      }

      .footer-bottom {
        text-align: center;
        margin-top: 20px;
        font-size: 0.8rem;
        padding-top: 20px;
        color: #666;
      }

      .footerlogo {
        max-width: 180px;
        height: auto;
        margin-bottom: 10px;
      }

      /* Tablet and smaller screens */
      @media (max-width: 1024px) {
        .footer-content {
          grid-template-columns: repeat(2, 1fr);
          gap: 40px;
        }
        
        .footer-column {
          text-align: center;
        }
      }

      /* Mobile screens */
      @media (max-width: 768px) {
        .footer-content {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        
        .footer-column {
          text-align: center;
        }
        
        .footer-column h3 {
          font-size: 1.4rem;
        }
        
        .footer-column p, 
        .quick-links a {
          font-size: 1rem;
        }

        
      .footerlogo {
        max-width: 180px;
        height: auto;
        margin-bottom: 10px;
      }
        
        .whatsapp-btn {
          font-size: 1rem;
          padding: 10px 25px;
        }

        .social-links-horizontal {
          gap: 20px;
          flex-wrap: wrap;
        }

        .social-links-horizontal a {
          font-size: 0.9rem;
        }
      }

      /* Small mobile screens */
      @media (max-width: 480px) {
        .footer-section {
          padding: 30px 15px 15px;
        }
        
        .footer-content {
          gap: 25px;
        }
        
        .footer-column h3 {
          font-size: 1.2rem;
        }
        
        .footer-column p, 
        .quick-links a {
          font-size: 0.9rem;
        }
        
      
      .footerlogo {
        max-width: 180px;
        height: auto;
        margin-bottom: 10px;
      }

        .social-links-horizontal {
          gap: 15px;
        }

        .social-links-horizontal a {
          font-size: 0.85rem;
        }

        .footer-socials h4 {
          font-size: 1rem;
        }
      }
  