
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #002b7f;
}
header {
    background-color: #002b7f;
    color: white;
    padding: 1em;
    text-align: center;
}
header a {
    color: white;
    text-decoration: none;
    margin: 0 1em;
}
footer {
    background-color: #002b7f;
    color: white;
    text-align: center;
    padding: 1em;
    position: relative;
    bottom: 0;
    width: 100%;
}
.call-now {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #e31837;
    color: white;
    border-radius: 50px;
    padding: 12px 18px;
    text-decoration: none;
    font-size: 16px;
    z-index: 1000;
    display: none;
}
@media (max-width: 768px) {
    .call-now {
        display: block;
    }
}
.container {
    padding: 20px;
}

/* Sidebar Styling */
.sidebar {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
}
.sidebar h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #333;
}
.sidebar ul {
  list-style-type: none;
  padding: 0;
}
.sidebar ul li {
  margin-bottom: 8px;
}
.sidebar ul li a {
  color: #0056b3;
  text-decoration: none;
}
.sidebar ul li a:hover {
  text-decoration: underline;
}

/* Directory Page Styling */
.categories h2 {
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 4px;
  color: #222;
}
.categories ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}
.categories ul li {
  margin-bottom: 6px;
}
.categories ul li a {
  color: #0077cc;
  font-weight: 500;
  text-decoration: none;
}
.categories ul li a:hover {
  color: #004999;
  text-decoration: underline;
}

/* CTA header/footer styles */
.cta-header a, .cta-footer a {
  font-size: 1.1em;
}

/* Inline CTA Styling */
.cta-inline a {
  font-weight: bold;
}

/* Floating Call Button */
.call-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff6600;
  color: #fff;
  padding: 12px 18px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  text-decoration: none;
  z-index: 9999;
}
.call-button:hover {
  background-color: #e65c00;
}
@media (min-width: 768px) {
  .call-button {
    display: none; /* Hide on desktop, visible on mobile */
  }
}
/* Notification Banner Styles */
.notification-banner {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #002b7f;
  color: white;
  text-align: center;
  padding: 10px 15px;
  font-size: 1rem;
  font-weight: bold;
  z-index: 9999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.notification-banner a {
  color: #ffcc00;
  text-decoration: none;
  margin-left: 10px;
}

.notification-banner a:hover {
  text-decoration: underline;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .notification-banner {
    font-size: 0.95rem;
    padding: 10px;
  }
}
<nav>
  <a href="/index.html">Home</a>
  <a href="/resources.html">Resources</a>
  <a href="/blog/index.html">Blogs</a>
  <a href="/contact/index.html">Contact</a>
  <a href="/support/index.html">Support</a>
  <a href="/about/index.html">About</a>
  <a href="/disclaimer/index.html">Disclaimer</a>
  <a href="/faq/index.html">FAQ</a>
  <a href="/privacy/index.html">Privacy</a>
  <a href="/terms/index.html">Terms</a>
</nav>
/* Navigation Bar Styles */
nav {
  background-color: #003366;
  padding: 10px;
  text-align: center;
}

nav a {
  color: #ffffff;
  font-weight: bold;
  margin: 0 15px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

nav a:hover {
  text-decoration: underline;
}

/* Responsive tweak */
@media (max-width: 768px) {
  nav a {
    display: block;
    margin: 8px 0;
    font-size: 0.95rem;
  }
}
/* Sticky Notification Banner */
.notification-banner {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 10px 15px;
  font-size: 1rem;
  font-weight: bold;
  z-index: 9999;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.notification-banner a {
  color: #ffcc00;
  text-decoration: none;
  margin-left: 10px;
}

.notification-banner a:hover {
  text-decoration: underline;
}

/* Navigation Bar */
nav {
  background-color: #003366;
  padding: 10px;
  text-align: center;
}

nav a {
  color: #ffffff;
  font-weight: bold;
  margin: 0 15px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

nav a:hover {
  text-decoration: underline;
}

/* Mobile Optimization for Navigation */
@media (max-width: 768px) {
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }

  nav a {
    display: block;
    margin: 8px 0;
    font-size: 0.95rem;
  }

  .notification-banner {
    font-size: 0.9rem;
    padding: 8px;
  }

  .cta-header {
    font-size: 0.95rem;
    padding: 10px;
  }
}
/* ------------------ MOBILE OPTIMIZATION START ------------------ */
@media (max-width: 768px) {
  nav {
    display: flex;
    flex-direction: row; /* Horizontal layout instead of column */
    flex-wrap: wrap;
    justify-content: center;
    background-color: #003366;
    padding: 5px 0;
  }

  nav a {
    display: inline-block;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.85rem;
    text-decoration: none;
    margin: 4px 8px; /* Reduce spacing */
    padding: 4px 6px;
    border-radius: 4px;
  }

  nav a:hover {
    background-color: #002244;
    text-decoration: underline;
  }
}


  section {
    margin-top: 30px;
    padding: 0 10px;
  }

  .call-now-button {
    margin-top: 15px;
    padding: 12px 18px;
    background-color: #e60023;
    color: #fff;
    border-radius: 24px;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    position: relative;
    z-index: 999;
  }

  .notification-banner {
    font-size: 14px;
    padding: 10px;
    text-align: center;
  }

  .notification-banner a {
    font-size: 16px;
    margin: 0 5px;
  }
}
/* ------------------ MOBILE OPTIMIZATION END ------------------ */
.call-now-sticky {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e60023;
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 25px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}
