body {
  font-family: "NATS", sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.companyName {
  color: #edf4f2;
  font-size: 18px;
}

.navbar {
  padding: 0.5rem 1rem;
  background-color: #00945f;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-nav {
  display: flex;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-brand img {
  width: 120px;
  height: auto;
  margin-right: 10px;
}

.navbar .navbar-nav .nav-link {
  color: #fff;
}

.navbar-nav .nav-item .nav-link {
  font-family: "NATS", sans-serif;
  text-align: center;
  display: flex;
  align-items: center;
}

.navbar .navbar-nav .nav-link:hover {
  text-decoration: underline;
}

.navbar-brand span {
  text-transform: uppercase;
}

.navbar-collapse {
  justify-content: flex-end;
}

.navbar .nav-item {
  margin-right: 50px;
}

.navbar-toggler {
  margin-top: 2px;
  background-color: #edf4f2;
}
.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.custom-quote-btn {
  background-color: white;
  color: #00945f;
  border: 1px solid #00945f;
  padding: 10px 40px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;

  /* Mobile fixes */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-focus-ring-color: rgba(0, 0, 0, 0);
}

.custom-quote-btn:hover {
  color: white;
  border-color: white;
}

.custom-quote-btn:active {
  background-color: #2e9b62 !important;
  color: white !important;
  border-color: #2e9b62 !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Footer styles */
footer {
  background-color: #00945f;
  color: white;
  padding: 40px 10px;
  font-family: "NATS", sans-serif;
}

/* First row - logo and links */
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.footer-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 100px;
}

.footer-logo-img {
  width: 250px;
  height: auto;
}

.footer-links {
  flex: 3;
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

.footer-links-column {
  flex: 1 1 200px;
  margin-right: 5px;
}

.footer-links-column ul {
  list-style: none;
  padding: 0;
}

.footer-links-column li {
  margin-bottom: 5px;
  font-size: 12px;
}

.footer-links-column a {
  color: white;
  text-decoration: none;
}

.footer-links-column a:hover {
  text-decoration: underline;
}

.footer-credits {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0;
}

.footer-credits p {
  font-size: 12px;
  margin: 0;
  color: #dcdcdc;
  display: inline-block;
}

/* For small screens, make navbar links stack vertically */
@media (max-width: 991.98px) {
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-nav .nav-item {
    margin-top: 10px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .custom-quote-btn {
    width: auto;
    margin-top: 10px;
  }
}
