
/* nav start */

header {
  background-image: linear-gradient(to right, lightblue , white);
    height: 40px;
    color: #333;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* For absolute positioning of mobile nav */
}

.logo img{
  height: 38px;
  background-size: cover;
  margin-left: 10px;
}

.logo a {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

/* Desktop Navigation */
.desktop-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.desktop-nav ul li {
    margin-left: 20px;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.desktop-nav ul li a:hover {
    color: #007bff;
}

.desktop-nav ul li.cta a {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

.desktop-nav ul li.cta a:hover {
    background-color: #0056b3;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none; /* Hidden by default on larger screens */
    cursor: pointer;
}

.menu-icon {
    width: 30px;
    height: 25px;
  margin-right: 10px;
  margin-top: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.line {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#menu-toggle {
    display: none;
}

#menu-toggle:checked + .menu-icon .line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

#menu-toggle:checked + .menu-icon .line:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked + .menu-icon .line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.mobile-nav {
    position: absolute;
    top: 100%; /* Positioned below the header */
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: none; /* Hidden by default */
    padding: 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

#menu-toggle:checked ~ .mobile-nav {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav ul li {
    margin-bottom: 15px;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: block; /* Make links full width for easier tapping */
    padding: 10px 0;
}

.mobile-nav ul li a:hover {
    color: #007bff;
}

.mobile-nav ul li.cta a {
    background-color: #007bff;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    display: inline-block; /* Adjust for centering */
}

.mobile-nav ul li.cta a:hover {
    background-color: #0056b3;
}

/* nav end */

.Privacy {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 20px;
    color: #333;
}



h1, h2, h3 {
    color: #007bff;
    text-decoration: none;
    border-bottom: 2px solid darkblue;
    display: inline-block;
}

p {
    margin-bottom: 1em;
}

strong {
    font-weight: bold;
}

ul {
    margin-bottom: 1em;
    padding-left: 20px;
}

li {
    margin-bottom: 0.5em;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.last-updated {
    font-size: 0.8em;
    color: #777;
    margin-bottom: 1em;
}

.contact-info {
    margin-top: 2em;
    border-top: 1px solid #eee;
    padding-top: 1em;
}



@media (max-width: 768px) {
  .desktop-nav {
        display: none; /* Hide desktop nav on smaller screens */
    }

    .hamburger-menu {
        display: block; /* Show hamburger menu */
    }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  nav img {
    width: 80px; /* Adjust logo size on smaller screens */
  }
}






