body {
  background: #ffffff;
  color: #f8f9fa;
  font-family: 'Lato', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  --primary: #022d38;
  --secondary: #1e6ad8;
}



/* ===== SIMPLE NAVBAR ===== */
.simple-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 16px; /* you can tweak this if you want more/less edge space */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background: #022d38;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0);
  transition: padding 0.3s ease, background 0.3s ease;
}

.navbar-container {
  width: 100%;
  /* ❌ remove this:
     max-width: 1400px;
  */
  display: flex;
  justify-content: space-between; /* puts logo hard left, EL hard right */
  align-items: center;
}

/* Logo */
.navbar-logo img {
  height: 38px;
  transition: transform 0.3s ease;
}

.navbar-logo img:hover {
  transform: scale(1.05);
}

/* Shrink navbar on scroll (optional) */
.simple-navbar.scrolled {
  padding: 6px 16px;
}

/* ===== Language Switch Button ===== */
.lang-btn {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 3px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.lang-btn span {
  font-size: 0.9rem;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.lang-btn:hover {
  opacity: 0.6;
  transform: translateY(-2px);
}

.lang-btn:hover span {
  transform: translateX(2px);
}

/* Responsive */
@media (max-width: 768px) {
  .simple-navbar {
    padding: 10px 12px;
  }

  .navbar-logo img {
    height: 32px;
  }

  .lang-btn {
    font-size: 0.85rem;
    /* you had: padding-bottom: 8px 20px; which is invalid */
    /* if you want padding, use: */
    /* padding: 4px 0; */
  }
}











/* Footer */
.footer {
  background-color: #ffffff;
  color: #022d38;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  flex: 1 1 150px;
}

.footer-logo {
  height: 100px;
}

.footer-center {
  flex: 1 1 300px;
  text-align: center;
}

.footer-center p {
  margin: 5px 0;
}

.footer-center .company-name {
  font-weight: 700;
  color: #022d38;
}

.footer-center .tax-info {
  color: #022d38;
}

.footer-right {
  flex: 1 1 200px;
  text-align: right;
}

.footer-right .social-icons a {
  display: inline-block;
  margin-left: 10px;
}

.footer-right .social-icons img {
  height: 24px;
  width: 24px;
}

.footer-right .footer-links {
  margin-top: 10px;
}

.footer-right .footer-links a {
  color: #022d38;
  text-decoration: none;
  border-bottom: 1px solid #022d38;
  padding-bottom: 5px;
  margin-left: 10px;
  font-size: 0.9rem;
}

.footer-right .footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
    align-items: center;
    flex: unset;
  }

  .footer-right {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-right .social-icons,
  .footer-right .footer-links {
    justify-content: center;
    gap: 10px;
  }
}


/* === CUSTOM TEXT SELECTION COLOR === */
::selection {
  background: rgba(192, 192, 192, 0.5);
  color: #000000;
}

::-moz-selection {
  background: rgba(192, 192, 192, 0.5);
  color: #000000;
}









/* === Privacy Policy & Terms of Use === */
body {
  background: #ffffff;
  color: #022d38;
  font-family: "Lato", sans-serif;
  line-height: 1.8;
}

/* Main content container */
.legal-page {
  background: #ffffff;
  padding: 80px 60px;
  margin: 120px auto;
  max-width: 900px;
  border-radius: 10px;

  /* Soft shadow for readability */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

/* Headings */
.legal-page h1 {
  font-size: 2.8rem;
  margin-bottom: 35px;
  font-weight: 900;
  color: #022d38;
  letter-spacing: 1px;
}

.legal-page h2 {
  font-size: 1.6rem;
  margin-top: 40px;
  color: #022d38;
  font-weight: 700;
}

/* Paragraphs */
.legal-page p,
.legal-page ul li {
  font-size: 1.05rem;
  color: #022d38;
  opacity: 0.95;
}

/* UL styling */
.legal-page ul {
  padding-left: 20px;
}

/* Responsive for tablets */
@media (max-width: 900px) {
  .legal-page {
    margin: 80px 30px;
    padding: 60px 40px;
    max-width: 100%;
  }

  .legal-page h1 {
    font-size: 2.3rem;
  }

  .legal-page h2 {
    font-size: 1.4rem;
  }

  .legal-page p,
  .legal-page ul li {
    font-size: 1rem;
  }
}

/* Responsive for phones */
@media (max-width: 600px) {
  .legal-page {
    margin: 60px 20px;
    padding: 40px 25px;
  }

  .legal-page h1 {
    font-size: 1.9rem;
  }

  .legal-page h2 {
    font-size: 1.25rem;
  }

  .legal-page p,
  .legal-page ul li {
    font-size: 0.95rem;
  }
}

