body {
  font-family: "Lato", Arial, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: linear-gradient(135deg, #102a43, #0b1d2d);
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

p {
  line-height: 1.6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  padding-top: 15px; 
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: var(--footer-height);
  max-width: 1200px;
  margin: auto;
}

.container2 {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: var(--navbar-height); 
  max-width: 1200px;
  margin: auto;
  padding-bottom: var(--footer-height);
}

.navbar {
  font-family: "Lato", Arial, sans-serif;
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 999;
  padding: 20px 20px;
  background: rgba(16, 42, 67, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-text {
  color: white;
  line-height: 1.2;
  font-size: 18px;
  font-weight: 300;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 80px;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

.desktop-and-tablet-only {
  display: block;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 350;
  transition: color 0.3s ease;
  text-decoration: none;
  padding: 10px;
  font-size: 18px;
}

.nav-links a:hover {
  color: #ff6b6b;
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 300px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  padding: 0;
  margin: 0;
  list-style: none;
  border-radius: 8px;
  top: 30px;
}

.nav-links .dropdown-menu li a {
  color: black;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  font-size: 18px;
}

.nav-links .dropdown-menu li a:hover {
  border-radius: 8px;
  color: #ff6b6b;
}

.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}

.nav-button-container {
  text-align: center;
  margin: 40px 0;
  font-size: 18px;
}

.nav-button-container a:hover {
  background-color: #4f6c58;
}

.review-highlight {
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 8px 30px rgba(0, 0, 0, 0.08);
  color: black;
  font-family: "Lato", Arial, sans-serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  width: fit-content;
  padding: 8px 20px;
}

.review-highlight img {
  width: 200px;
}

.review-text {
  margin: 0;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  max-width: 800px;
  text-align: center;
  width: 100%;
}

.review-text h1 {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
}

.review-text p {
  text-align: center;
  font-family: "Lato", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  padding: 40px;
}

.regulatory-statement {
  padding: 40px 0px;
  font-size: 12px;
  text-align: center;
  color: #777;
}

.regulatory-statement p {
  font-family: "Lato", Arial, sans-serif;
  font-weight: 300;
  margin-top: 20px;
  color: white;
}

.regulatory-statement a {
  font-family: "Lato", Arial, sans-serif;
  font-weight: 300;
  color: white;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

.close-icon {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

.get-started-btn,
button {
  background-color: #5f8d6d;
  color: white;
  text-decoration: none;
  border: none;
  padding: 14px 32px;
  font-size: 1.1rem;
  border-radius: 15px;
  cursor: pointer;
  display: inline-block;
  width: 250px;
  transition: background-color 0.3s ease;
  font-weight: 600;
  font-family: "Lato", Arial, sans-serif;
}

.get-started-btn:hover,
button:hover {
  background-color: #4f6c58;
}

.logo {
  color: #ffffff;
  font-size: 1.5em;
  font-weight: bold;
  width: 20%;
}

.bottom-bar {
  font-family: "Lato", Arial, sans-serif;
  font-weight: 300;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0b1d2d;
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 16px;
  z-index: 999;
}

body.menu-open .bottom-bar {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

.info-section {
  padding: 30px 50px;
}

.info-section h2 {
  font-family: "Lato", Arial, sans-serif;
  font-size: 32px;
  padding-top: 40px;
  padding-bottom: 40px;
  font-weight: 300;
  color: white;
  text-align: center;
}

.info-section p {
  font-family: "Lato", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: white;
  padding: 30px;
}

.info-section ul {
  list-style-type: circle;
  color: white;
  font-family: "Lato", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  padding-left: 100px;
}

.info-section li {
  padding-bottom: 10px;
}

/* Tablet: 769px–1200px */
@media (min-width: 769px) and (max-width: 1200px) {
  .desktop-only {
    display: none;
  }

  .nav-links {
    display: flex;
    justify-content: space-evenly;  
    align-items: center;
    width: 80%;        
    margin-left: auto;
    list-style: none;
    padding: 0 20px;
    position: relative; 
    left: auto;
    transform: none;
  }

  .container {
    padding-top: var(--navbar-height); 
    max-width: 1000px;
    margin: auto;
  }

  .container2 {
    max-width: 1000px;
    margin: auto;
  }
}

/* Mobile: > 769px */
@media (max-width: 768px) {
  .desktop-and-tablet-only {
    display: none;
  }

  .header {
    position: relative;
  }

  .navbar {
    height: 130px;
    max-width: 768px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    transform: none;
    height: 100vh;
    width: 100%;
    display: flex;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    text-align: center;
    background: linear-gradient(135deg, #102a43, #0b1d2d);
    color: white;
    transition: max-height 0.4s ease-out, transform 0.4s ease-out,
      opacity 0.4s ease-out;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    padding-top: 150px;
  }

  .nav-link a {
    display: block;
    width: 100%;
    padding: 1rem;
    text-decoration: none;
  }

  .nav-links a {
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
    padding: 5px 16px;
    display: grid;
    border-radius: 0px;
  }

  .nav-links .dropdown-menu li a {
    color: black;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    font-size: 16px;
  }

  .nav-links .dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 300px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .nav-links .dropdown-menu li a:hover {
    border-radius: 0px;
  }

  .nav-links.show {
    display: flex;
    padding-top: 150px;
    max-height: 100vh;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    z-index: 1000;
  }

  .menu-toggle,
  .close-icon {
    position: absolute;
    right: 20px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 1001;
  }

  .menu-toggle {
    top: 80px;
    display: block;
  }

  .close-icon {
    top: 80px;
    display: none;
  }

  body.menu-open .menu-toggle {
    display: none;
  }

  body.menu-open .close-icon {
    display: block;
  }

  .nav-button-container {
    margin: 20px 0;
  }

  .nav-button-container .get-started-btn {
    padding: 10px 40px;
    font-size: 14px;
    width: auto;
    border-radius: 10px;
  }

  .nav-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1001;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-logo img {
    top: 0;
    width: 180px;
    height: auto;
  }

  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .logo-text {
    color: white;
    line-height: 1.2;
    font-size: 16px;
    font-weight: 300;
  }

  .container {
    padding-top: var(--navbar-height); 
    max-width: 1200px;
    margin: auto;
  }

  .container2 {
    max-width: 1200px;
    margin: auto;
  }

  .review-highlight {
    margin-top: 40px;
    padding: 0px 30px;
  }

  .review-text h1 {
    font-size: 18px;
  }

  .review-text p {
    font-size: 18px;
  }

  .bottom-bar {
    font-size: 14px;
  }

  .separator {
    text-align: center;
  }

  .hamburger-button-container {
    margin: 20px 10px;
    justify-content: center;
    display: flex;
  }

  .hamburger-button-container .get-started-btn {
    padding: 10px 20px;
    font-size: 14px;
    width: 200px;
    border-radius: 10px;
  }

  .info-section {
    padding: 0px 0px;
  }

  .info-section h2 {
    font-size: 28px;
    padding-top: 40px;
    padding-bottom: 10px;
  }

  .info-section p {
    font-size: 16px;
  }

  .info-section ul {
    font-size: 16px;
    padding-left: 30px;
  }

  .info-section li {
    padding-bottom: 10px;
  }
}
