:root {
  --navy-blue: #0a3161;
  --blue: #2c71b8;
  --light-blue: #6ea5d9;
  --baby-blue: #abd1e7;
  --pale-blue: #e3f2fd;
  --white: #ffffff;
  --black: #000000;
  --gray: #f8f9fa;
  --dark-gray: #343a40;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--black);
  overflow-x: hidden;
  padding-top: 80px; /* Adjust for fixed navbar */
}

/* Navbar Styles */
.navbar {
  background-color: var(--white);
  transition: background-color 0.3s ease;
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  color: var(--navy-blue);
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--navy-blue);
  visibility: hidden;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover:before {
  visibility: visible;
  width: 100%;
}

.btn-primary {
  background-color: var(--navy-blue);
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--navy-blue) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-header-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50'%3E%3Crect width='50' height='50' fill='none'/%3E%3Crect width='1' height='1' fill='%23ffffff10'/%3E%3C/svg%3E");
  opacity: 0.1;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Privacy Content */
.privacy-content {
  padding: 60px 0;
  background-color: var(--white);
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h2 {
  color: var(--navy-blue);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-blue);
}

.privacy-section h3 {
  color: var(--blue);
  font-weight: 600;
  margin: 25px 0 15px;
}

.privacy-section p,
.privacy-section ul {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.privacy-section ul {
  padding-left: 20px;
}

.privacy-section ul li {
  margin-bottom: 10px;
}

.privacy-section strong {
  color: var(--navy-blue);
}

.privacy-navigation {
  position: sticky;
  top: 100px;
  background-color: var(--pale-blue);
  border-radius: 10px;
  padding: 20px;
}

.privacy-navigation h4 {
  color: var(--navy-blue);
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-blue);
}

.privacy-navigation ul {
  list-style: none;
  padding-left: 0;
}

.privacy-navigation ul li {
  margin-bottom: 10px;
}

.privacy-navigation ul li a {
  color: var(--blue);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 10px;
  border-radius: 5px;
}

.privacy-navigation ul li a:hover {
  background-color: var(--baby-blue);
  color: var(--navy-blue);
  padding-left: 15px;
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--navy-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--blue);
  transform: translateY(-5px);
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 70px 0 20px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
}

.footer h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.footer h4:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--light-blue);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--pale-blue);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a:before {
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 20px;
}

.footer-links a:hover:before {
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin-right: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background-color: var(--blue);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991.98px) {
  .privacy-navigation {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .page-header {
    padding: 40px 0;
    text-align: center;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .privacy-section h2 {
    font-size: 1.8rem;
  }

  .privacy-section h3 {
    font-size: 1.4rem;
  }
}
