/* Reset default margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* background-image: url('/myimages/trailer.jpeg');  */
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
  animation: fadeInPage 1s ease-out;
}

/* Fade-in page animation */
@keyframes fadeInPage {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Header Styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: #4b4f54; /* Elegant dark background */
  color: #f1f1f1;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

header:hover {
  background-color: #444b4e;
}

header .logo img {
  width: 140px; /* Adjust size as necessary */
  height: auto;
}

nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  position: relative;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #6fd6eb;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #6fd6eb; /* Blue hover color */
}

nav ul li a:hover::after {
  width: 100%; /* Hover underline effect */
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
  /* background: #333; */
  padding: 15px;
  border-radius: 40px;
  transition: transform 0.3s ease;
}

.hamburger.active {
  transform: rotate(760deg); /* Rotate when active */
}

@media (max-width: 76px) {
  .hamburger {
    display: block;
  }

  nav ul {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 20px;
    z-index: 1000;
  }

  nav ul li {
    margin: 30px 0;
  }

  nav ul li a {
    font-size: 1.5rem;
    color: #ffffff;
  }

  #nav-menu.active {
    display: flex;
  }
}
.simple-privacy-heading {
  font-size: 2rem;
  color: #0f172a; /* Dark slate */
  text-align: center;
  padding: 1rem 0;
  margin: 2rem auto;
  position: relative;
  max-width: 300px;
  font-weight: 600;
  border-bottom: 3px solid #2563eb;
  transition: color 0.3s ease;
}

.simple-privacy-heading:hover {
  color: #2563eb;
}

/* Main Container */
.policy-container {
  max-width: 850px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Policy Section */
.policy-section {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.policy-section h2 {
  font-size: 1.3rem;
  color: #111827;
  margin-bottom: 1rem;
}

.policy-section ul {
  margin-left: 1.2rem;
  margin-top: 0.5rem;
}

.policy-section li {
  margin-bottom: 0.4rem;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

address {
  font-style: normal;
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* Footer */
footer {
  background-color: #111827;
  color: #d1d5db;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 2rem;
}
