html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0;
}

/* Header Styles */
.site-header {
  background-color: #ffffff;
  padding: 20px 0;
  border-bottom: 3px solid #7cb342;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.btn-call {
  background-color: #22374E;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color 0.3s ease;
}

.btn-call:hover {
  background-color: #2d4560;
}

.call-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.phone-number {
  font-size: 18px;
  font-weight: 700;
}

/* Mobile Header - Stack Logo and Button */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
  }

  .logo {
    width: 100%;
    text-align: center;
  }

  .header-cta {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .btn-call {
    width: 100%;
    max-width: 300px;
  }
}

/* Footer Styles */
.site-footer {
  background-color: #22374E;
  color: #ffffff;
  padding: 40px 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  margin-bottom: 20px;
}

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

.footer-text {
  font-size: 12px;
  line-height: 1.6;
}

.copyright {
  font-weight: 600;
  margin-bottom: 15px;
}

.disclaimer {
  margin-bottom: 15px;
  opacity: 0.9;
}

.legal-notice {
  font-size: 11px;
  opacity: 0.8;
  margin-bottom: 0;
}