/* ===== Terms and Conditions Page ===== */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f8fbff;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

.container {
  max-width: 900px;
  background: #ffffff;
  margin: 50px auto;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

h1 {
  color: #004aad;
  text-align: center;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.effective-date {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

h2 {
  color: #003366;
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 10px;
}

p {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #333;
}

ul {
  margin-left: 25px;
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: #333;
}

strong {
  color: #004aad;
}

/* Back to home link */
.back-home {
  text-align: center;
  margin-top: 40px;
}

.back-home a {
  text-decoration: none;
  background-color: #004aad;
  color: #fff;
  padding: 10px 25px;
  border-radius: 6px;
  transition: background 0.3s;
}

.back-home a:hover {
  background-color: #003580;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 25px 20px;
    margin: 30px 15px;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.15rem;
  }

  p, ul li {
    font-size: 1rem;
  }
}
/* ===== STICKY NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #004aad;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: #003a8c;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  padding: 8px 30px;
}

/* ===== LOGO + BUSINESS NAME ===== */
.logo-container {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.nav-logo {
  width: 42px;
  height: auto;
  margin-right: 10px;
  border-radius: 6px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ===== NAV LINKS ===== */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #ffd700;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #004aad;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 15px 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
  }
}
/* ===== FOOTER ===== */
#footer {
  background: #002b5c;
  color: #fff;
  padding: 35px 15px 20px;
  font-size: 0.9rem;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 20px;
}

.footer-nav h3,
.footer-address h3 {
  font-size: 1rem;
  color: #ffd700;
  margin-bottom: 8px;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  list-style: none;
  padding: 0;
}

.footer-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-nav ul li a:hover {
  color: #ffd700;
}

.footer-address p {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #ccc;
  margin: 3px 0;
}
/* ===== FIX: Footer Business Name Color ===== */
.footer-address strong,
.footer-top .footer-address strong,
.footer-address p strong {
  color: #ffffff !important; /* Change "Classic Service" to white */
}
