/* Base Resets */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Top Banner */
.top-text-banner {
  background-color: #ffffff;
  text-align: center;
  padding: 18px 20px;
  font-size: 16px;
  color: #333333;
}

.top-text-banner a {
  color: #007bff;
  text-decoration: underline;
}

/* Main Footer */
.site-footer {
  background-color: #1a3c5a; /* Deep blue background */
  color: #ffffff;
  padding: 50px 20px 40px;
  position: relative;
}

.footer-inner-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  justify-content: space-between;
}

/* Footer Columns */
.footer-column {
  flex: 1;
  min-width: 250px;
}

.logo-column {
  flex: 0 1 200px;
}

.footer-logo {
  max-width: 100%;
  height: auto;
  display: block;
}

.disclaimer-column {
  flex: 2;
}

.disclaimer-column p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.site-footer h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
}

/* Contact Section */
.contact-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14px;
  font-style: italic;
}

.contact-row .icon {
  margin-right: 12px;
  margin-top: 2px;
}

.contact-row p {
  margin: 0;
  line-height: 1.5;
}

.contact-row a {
  color: #ffffff;
  text-decoration: none;
}

.highlight-link {
  color: #f28a4c !important; /* Orange text color */
}

/* Footer Bottom: Links & Copyright */
.footer-bottom {
  max-width: 1100px;
  margin: 60px auto 0;
  text-align: center;
}

.footer-nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-nav-links a:hover {
  text-decoration: underline;
}

.footer-copyright {
  font-size: 13px;
  text-transform: uppercase;
}

/* Floating Action Button */
.floating-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #0c2742; /* Slightly darker than footer background */
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
}

.floating-btn:hover {
  background-color: #081a2d;
}

/* Responsive adjustments */
@media (max-width: 850px) {
  .footer-inner-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .logo-column {
    align-self: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .footer-nav-links {
    flex-direction: column;
    gap: 15px;
  }
}
/* 1. Establish structural positioning on the body element */
body {
    position: relative;
    min-height: 100vh;
}

/* 2. Style the transparent click overlay block */
.global-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Covers everything on the standard layout layer */
    cursor: pointer;
    background-color: transparent;
}