* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body Styling */
body {
    display: block;
    padding-top: 100px; /* Adds space for navbar */
    padding-bottom: 60px; /* Adds space for footer */
    height: auto; /* Allows full page height */
    overflow-y: auto; /* Enables scrolling */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333; /* Adjust color to match your site's theme */
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
}

.menu a:hover {
    text-decoration: underline;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-buttons button {
    padding: 8px 15px;
    background-color: #007bff; /* Button color */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.auth-buttons button:hover {
    background-color: #0056b3; /* Button hover color */
}

/* Ensure the background image covers the entire page */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
/* Hamburger Button */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1200;
    background-color: #333;
    color: white;
    border-radius: 6px;
  }
  
  /* Sidebar Menu */
  .sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 260px;
    height: 100vh;
    background-color: #222;
    color: white;
    padding-top: 60px;
    transition: left 0.5s ease;
    z-index: 1100;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
  }
  
  .sidebar.open {
    left: 0;
  }
  
  .sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .sidebar-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
  }
  
  .sidebar-btn {
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Responsive Rules */
  /* NEW: Hide .desktop-only on mobile */
  @media screen and (max-width: 1200px) {
    .desktop-only {
      display: none;
    }
  
    .hamburger {
      display: block;
    }
  }
  /* Ensure logo stays on left */
  .logo img {
    height: 60px;
  }
.hero-image {
    background-image: url(HOMECOVER.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
}


/* Hero Content Styling */
.hero-content {
    color: white;
    text-align: left;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.terms-container {
    margin-top: 80px; /* Pushes content below navbar */
    margin-bottom: 80px; /* Pushes content above footer */
    padding: 30px; /* Ensures spacing inside */
    width: 90%; /* Makes it responsive */
    max-width: 800px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

.terms-container h1 {
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

.terms-container h2 {
    color: #555;
    margin-top: 15px;
}

.terms-container p {
    color: #666;
    margin-bottom: 10px;
}

.back-link {
    display: block;
    text-align: left;
    margin-top: 20px;
    font-size: 16px;
    color: #007bff;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}
.terms-container ul {
    margin-left: 20px; /* Adds left margin for indentation */
    padding-left: 20px; /* Ensures bullets appear properly */
    list-style-type: disc; /* Ensures bullets are visible */
}
.terms-container li {
    margin-bottom: 5px; /* Adds spacing between list items */
    color: #666; /* Matches the paragraph text */
    font-size: 1rem;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .terms-container {
      margin: 100px auto;
      padding: 20px;
      width: 90%;
      max-width: 400px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      line-height: 1.6;
    }
  
    .terms-container h1 {
      font-size: 25px;
    }
  
    .terms-container h2 {
      font-size: 16px;
    }
  
    .terms-container p {
      font-size: 12px;
    }
  
    .terms-container li {
      font-size: 0.75rem;
    }
  
    .back-link {
      font-size: 12px;
    }
  }
  
  
  /* Medium screens: Tablets (769px–1024px) */
  @media screen and (min-width: 769px) and (max-width: 2000px) {
    .terms-container {
      margin: 120px auto;
      padding: 30px;
      width: 90%;
      max-width: 800px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      line-height: 1.6;
    }
  
    .terms-container h1 {
      font-size: 2rem;
    }
  
    .terms-container h2 {
      font-size: 1.3rem;
    }
  
    .terms-container p,
    .terms-container li {
      font-size: 1rem;
    }
  
    .back-link {
      font-size: 1rem;
    }
    footer {
        background-color: #333;
        color: white;
        padding: 20px;
        text-align: center;
        font-size: 12px;
    }
  }
  