    /* --------- Top Translate Bar --------- */
    .translate-bar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 35px;
      background-color: #003366;
      z-index: 1040;
      display: flex;
      align-items: center;
      padding: 0 1rem;
      box-shadow: 0 2px 4px rgba(0,0,0,0.15);
      user-select: none;
    }

    #google_translate_element {
      color: white;
      font-size: 0.9rem;
      white-space: nowrap;
      user-select: none;
    }

    /* --------- Main Navbar --------- */
    .fixed-main-navbar {
  position: fixed;
  top: 35px; /* below translate bar */
  left: 0;
  width: 100%;
  background-color: #004080;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  z-index: 1030;  /* less than translate bar (1040), more than content */
}

    .fixed-main-navbar .container-fluid {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    /* Logo and Brand */
    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-shrink: 1;
      min-width: 150px;
      text-decoration: none;
      color: #fff;
      font-weight: bold;
      font-size: 1.4rem;
    }

    /* Logo image */
    .logo-img {
      height: 80px;
      max-height: 90px;
      width: 80px;
      transition: height 0.3s ease;
    }

    /* Navbar Nav Links */
    .navbar-nav {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 1.75rem;
      align-items: center;
      margin: 0;
      padding: 0;
      justify-content: flex-end;
      flex-grow: 1;
    }

    .navbar-nav .nav-link {
      color: #ffffff;
      font-weight: 600;
      text-decoration: none;
      padding: 0.75rem 1rem;
      border-radius: 6px;
      white-space: nowrap;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
      color: #99c2ff;
      background-color: rgba(255,255,255,0.15);
      outline: none;
    }

    /* Navbar Toggler (for mobile) */
    .navbar-toggler {
      display: none;
      background: none;
      border: 1.5px solid rgba(255,255,255,0.5);
      border-radius: 4px;
      padding: 0.25rem 0.5rem;
      cursor: pointer;
      margin-left: auto;
    }

    .navbar-toggler-icon {
      display: block;
      width: 22px;
      height: 2px;
      background-color: white;
      position: relative;
      transition: background-color 0.3s ease;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
      content: "";
      position: absolute;
      width: 22px;
      height: 2px;
      background-color: white;
      transition: background-color 0.3s ease;
    }

    .navbar-toggler-icon::before {
      top: -6px;
    }

    .navbar-toggler-icon::after {
      top: 6px;
    }

    /* Body padding so content not hidden under fixed bars */
    body {
      padding-top: 110px; /* 35px translate + ~75px navbar */
      margin: 0;
      font-family: Arial, sans-serif;
    }

    /* --------- Section Layout --------- */
    .section {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 2rem;
      padding: 2rem 1rem;
      max-width: 1100px;
      margin: 2rem auto;
      border-radius: 10px;
    }

    .section.reverse {
      flex-direction: row-reverse;
    }

    .section.alt {
      background-color: #f9f9f9;
    }

    /* Content and image */
    .content-text {
      flex: 1 1 55%;
      min-width: 280px;
      line-height: 1.5;
      color: #333;
    }

    .content-image,
    .service-image {
      flex: 1 1 40%;
      max-width: 400px;
      max-height: 250px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      display: block;
      align-self: flex-start;
    }

    /* Content row */
    .content-row {
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .content-row.reverse {
      flex-direction: row-reverse;
    }

    /* Footer */
    footer {
      flex-shrink: 0;
      background-color: #004080;
      color: #dee2e6;
      padding: 20px 0;
      text-align: center;
      font-size: 0.9rem;
      margin-top: auto;
    }

    /* --------- Responsive --------- */
    @media (max-width: 768px) {
      .translate-bar {
        height: 40px;
        padding: 0 0.5rem;
      }

      .fixed-main-navbar {
        top: 40px;
        padding: 0.5rem 1rem;
        flex-direction: column;
        align-items: flex-start;
      }

      .logo-img {
        max-height: 32px;
        width: auto;
        height: auto;
      }

      /* Show toggler */
      .navbar-toggler {
        display: block;
      }

      /* Hide nav by default */
      .navbar-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 0.75rem;
        gap: 0.75rem;
      }

      /* Show nav when active */
      .navbar-nav.show {
        display: flex;
      }

      .navbar-nav .nav-link {
        width: 100%;
        padding: 0.75rem 1rem;
      }

      .navbar-brand {
        margin-bottom: 0.5rem;
      }

      .section,
      .content-row,
      .content-row.reverse {
        flex-direction: column !important;
        text-align: center;
      }

      .content-image,
      .service-image {
        order: 2;
        width: 100%;
        max-width: 100%;
        max-height: none;
        margin-top: 1rem;
      }

      .content-text {
        order: 1;
        flex: 1 1 100%;
      }

      footer {
        font-size: 1rem;
        padding: 1rem;
      }
    }

.cookie-consent {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 1rem 1.5rem;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
}

/* Link style */
.cookie-consent a {
  color: #99c2ff;
  text-decoration: underline;
  word-break: break-word;
}

/* Button style */
.cookie-consent button {
  background-color: #0073e6;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.cookie-consent button:hover {
  background-color: #005bb5;
}

/* Hide by default */
.cookie-consent.hidden {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .cookie-consent {
    flex-direction: column;
    padding: 1rem;
    font-size: 0.85rem;
  }

  .cookie-consent p {
    margin: 0;
    max-width: 100%;
  }

  .cookie-consent button {
    
    padding: 0.75rem 0;
    font-size: 1rem;
  }
}
