<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 15px 7%;
}

.logo img {
  width: 160px;
  height: auto;
  max-width: 100%;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  width: 80%;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #19021f;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #f05922;
}

.has-dropdown {
  position: relative;
  padding: 10px;
}

header .nav-menu .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  z-index: 1001;
  min-width: 250px;
}

header .nav-menu .has-dropdown:hover .dropdown-menu {
  display: block; /* Show dropdown on hover */
}

.dropdown-menu li {
  padding: 15px 20px;
}

.dropdown-menu li a {
  font-weight: 500;
}

.quote-btn {
  padding: 15px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.3em;
  text-align: center;
  transition: background-color 0.3s ease;
  background-color: #f05922;
  color: #fff;
}

.quote-btn:hover {
  background-color: #db3b00;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #f05922;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
}

.close-icon {
  position: absolute;
  top: 30px;
  right: 60px;
  cursor: pointer;
  display: none;
  animation: closeIconAnimation 0.5s ease;
}

.close-icon span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  position: absolute;
}

.close-icon span:nth-child(1) {
  transform: rotate(45deg);
}

.close-icon span:nth-child(2) {
  transform: rotate(-45deg);
}

.close-icon.active {
  display: block;
  animation: closeIconRotate 0.5s ease;
}

@media (min-width: 1025px) {
  .nav-menu .nav-left li,
  .nav-menu .nav-right li {
    display: list-item;
  }
  .hamburger {
    display: none;
  }
}

@media (max-width: 768px) {
  .close-icon{
    top: 30px;
    right: 40px;
  
  }
  .quote-btn {
    padding: 8px 15px;
    font-size: 0.9em;
    margin-right: 15px;
  }
  .nav-menu .nav-left li,
  .nav-menu .nav-right li.tablet-desktop-only {
    display: none;
  }
  .nav-menu .nav-right li.always-visible {
    display: list-item;
  }
  .hamburger {
    display: block;
  }
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #120f3a;
  padding: 60px 20px 20px;
  z-index: 999;
  animation: slideIn 0.5s ease;
  overflow-y: auto;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  text-align: right;
  margin: 20px 0;
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu li.active {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.mobile-menu .dropdown-menu {
  display: none;
  position: static;
  background-color: transparent;
  box-shadow: none;
  margin-left: 20px;
}

.mobile-menu .dropdown-menu li {
  margin: 10px 0;
  opacity: 0;
  transform: translateY(10px);
}

.mobile-menu .dropdown-menu li.active {
  opacity: 1;
  transform: translateY(0);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@keyframes slideIn {
  from {
    transform: translateY(-100vh);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes closeIconAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}

@keyframes closeIconRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}

.animate {
  animation: fadeInUp 0.5s ease forwards;
}

.step-animate {
  animation: stepAnimation 0.75s ease forwards;
}

@keyframes stepAnimation {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-animate {
  animation: dropdownAnimation 0.75s ease forwards;
}

@keyframes dropdownAnimation {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-out {
  animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .quote-btn {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-right: 15px;
  }
  .nav-menu .nav-left li.desktop-only {
    display: none;
  }
  .nav-menu .nav-right li.tablet-desktop-only,
  .nav-menu .nav-right li.always-visible {
    display: list-item;
  }
  .hamburger {
    display: block;
  }
  .mobile-menu .mobile-only {
    display: none;
  }

  .mobile-menu.active {
    align-items: flex-end;
    left: auto;
    right: 0;
    width: 75%;
    overflow-y: auto;
    padding: 60px;
  }
  .mobile-menu li {
    text-align: right;
  }
}

 /* Footer Section */
 footer {
  background-color: #f5f5f7; /* Dark blue background */
  padding: 40px 12%; /* Side padding matches the site */
  text-align: center;
  color: #222228;
}

/* Top Section: Links */
.footer-links {
  margin-bottom: 60px;
}

.footer-links a {
  /* font-family: "Paytone One", sans-serif; */
  font-size: 1em;
  line-height: 1.3em;
  color: #222228;
  text-decoration: underline;
  margin: 0 10px;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.footer-links span {
  color: #222228;
}

/* Bottom Section: Copyright and Text */
.footer-bottom h5 {
  font-family: "Paytone One", sans-serif;
  font-size: 1.3vw;
  line-height: 20px;
  color: #222228;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-bottom h5 span {
  color: #f05922; /* Orange for "BOOMERS TRAVEL GUIDE" */
}

.footer-bottom p {
  font-family: Arial, sans-serif;
  font-size: 0.9em;
  line-height: 1.5em;
  color: #222228;
}

.footer-bottom p a {
  font-weight: bold;
  text-decoration: none;
  color: #f05922; /* Orange on hover */
  font-size: 1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  footer {
    padding: 30px 5%;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 14px;
    line-height: 16px;
    margin: 0;
  }

  .footer-links span {
    display: none; /* Hide pipe separators on smaller screens */
  }

  .footer-bottom h5 {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 10px;
  }

  .footer-bottom p {
    font-size: 12px;
    line-height: 18px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 25px 4%;
  }

  .footer-links {
    gap: 8px;
    margin-bottom: 20px;
  }

  .footer-links a {
    font-size: 13px;
    line-height: 15px;
  }

  .footer-bottom h5 {
    font-size: 13px;
    line-height: 15px;
  }

  .footer-bottom p {
    font-size: 11px;
    line-height: 16px;
  }
}

@media (max-width: 320px) {
  footer {
    padding: 20px 3%;
  }

  .footer-links {
    gap: 6px;
    margin-bottom: 15px;
  }

  .footer-links a {
    font-size: 12px;
    line-height: 14px;
  }

  .footer-bottom h5 {
    font-size: 12px;
    line-height: 14px;
  }

  .footer-bottom p {
    font-size: 10px;
    line-height: 14px;
  }
}</pre></body></html>