@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ====== HEADER ====== */
.header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header img {
    height: 75px;
    margin-left: 30px;
}

/* Menu Wrapper */
.menu-wrapper {
    position: relative;
}

/* Hamburger Menu */
.hamburger {
    width: 30px;
    height: 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    background-color: #000;
    width: 100%;
    height: 3px;
    transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(35deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-35deg);
}

/* Navigation Links */
.nav-background {
    position: fixed;
    top: 60px;
    right: 0;
    width: 0;
    height: calc(100vh - 60px);
    background-color: #000;
    transition: width 0.4s ease;
}

#nav-links {
    list-style: none;
    position: fixed;
    top: 80px;
    right: 20px;
    opacity: 0;
    display: none;
}

#nav-links.open {
    display: block;
    opacity: 1;
}

#nav-links li {
    padding: 10px 15px;
}

#nav-links a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

#nav-links a:hover {
    color: #6a6a6a;
}

/* ====== DISCLAIMER SECTION ====== */
/* Privacy Policy Section */
.disclaimer-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 40px 20px;
  background-color: #f8f8f8;
  margin-top: 100px;
}

.disclaimer-section .container {
  max-width: 800px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: left; /* Aligns all text to the left */
}

.disclaimer-section h1, 
.disclaimer-section h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #222;
}

.disclaimer-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.disclaimer-section ul {
  margin-left: 20px;
}

.disclaimer-section ul li {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

/* Contact Section */
.disclaimer-section .contact {
  margin-top: 20px;
  font-weight: bold;
}

.disclaimer-section .contact a {
  color: #007bff;
  text-decoration: none;
}

.disclaimer-section .contact a:hover {
  text-decoration: underline;
}

/* ====== FOOTER ====== */
footer {
    background: linear-gradient(to bottom, #DEDEDE, #ffffff); /* Light to darker gradient */
    padding: 80px 0;
    font-family: "Lato", sans-serif;
    width: 100vw;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Navigation Section (Moved to the Top) */
  .footer-nav {
    text-align: left;
    flex: 1;
    order: 1; /* Ensure navigation appears first */
  }
  
  .footer-nav ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-nav ul li {
    margin: 10px 0;
  }
  
  .footer-nav ul li a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
  }
  
  .footer-nav ul li a:hover {
    text-decoration: underline;
  }
  
  /* Logo and Contact Information (Moved Below Navigation) */
  .footer-left {
    text-align: left;
    flex: 1;
    order: 2; /* Appears after the navigation */
  }
  
  .footer-logo img {
    max-width: 150px;
    margin-bottom: 15px;
  }
  
  .footer-contact {
    margin-top: 10px;
  }
  
  .footer-contact p {
    margin: 5px 0;
    color: #333;
    font-size: 14px;
  }
  
  .footer-contact strong {
    display: block;
    margin-top: 15px;
  }
  
  /* Newsletter Section */
  .footer-newsletter {
    text-align: left;
    flex: 1;
    order: 3;
    margin-top: 50px;
  }
  
  .footer-newsletter h4 {
    font-weight: normal;
    color: gray;
    font-size: 14px;
  }
  
  .footer-newsletter h4 span {
    font-weight: bold;
    color: #555;
    font-size: 20px;
    position: relative;
  }
  
  .footer-newsletter form {
    display: flex;
    margin-top: 15px;
  }
  
  .footer-newsletter input {
    padding: 10px;
    border: 0px solid #ccc;
    border-radius: 10px 0 0 10px;
    width: 70%;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .footer-newsletter button {
    padding: 10px 20px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Social Media Icons */
  .footer-social {
    text-align: right;
    flex: 1;
    order: 4; /* Ensures social icons appear at the bottom */
  }
  
  .footer-social a {
    margin-right: 10px;
    color: black;
    font-size: 18px;
    text-decoration: none;
  }
  
  .footer-social i {
    margin: 0 5px;
  }
  
  /* Bottom Section */
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
  }
  
  .footer-bottom p,
  .footer-bottom a {
    color: #333;
    text-decoration: none;
    font-size: 12px;
    margin: 0 15px;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {

    .header img {
      height: 40px;
      margin-left: 0px;
  }
  
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
  
    .footer-left,
    .footer-nav,
    .footer-newsletter,
    .footer-social {
        margin-bottom: 20px;
        text-align: center;
    }
  
    .footer-newsletter form {
        flex-direction: column;
    }
  
    .footer-newsletter input,
    .footer-newsletter button {
        width: 100%;
        margin: 5px 0;
    }
  
    .footer-bottom {
      margin-bottom: -20px;
    }
  
    .footer-newsletter {
      input {
        width: 70vw;
        border-radius: 8px;
      }
      button {
        border-radius: 8px;
      }
    }
  }
  
  /* Fine-tuning the spacing */
  .footer-contact,
  .footer-nav,
  .footer-newsletter,
  .footer-social {
    margin-bottom: 20px;
  }
  