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: 60px;
}

/* Quote Page Styles */
.quote-page-body {
  background-color: #F5F5F5;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.quote-container {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-card {
  background-color: #FFFFFF;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  overflow: hidden;
}

.quote-card-header {
  background-color: #001F3F;
  padding: 20px 10px;
  text-align: center;
  color: #FFFFFF;
}

.quote-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.quote-logo-img {
  max-width: 240px;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.quote-card-body {
  padding: 50px 40px;
  text-align: center;
  background-color: #FFFFFF;
}

.quote-error-message {
  color: #DC3545;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.quote-download-text {
  color: #333333;
  font-size: 18px;
  margin: 0 0 30px 0;
  padding: 0;
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.quote-download-btn {
  background-color: #001F3F;
  color: #FFFFFF;
  border: none;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.quote-download-btn:hover {
  background-color: #003366;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.quote-download-btn:active {
  background-color: #002244;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .quote-container {
    max-width: 100%;
    padding: 15px;
  }

  .quote-card-body {
    padding: 40px 20px;
  }

  .quote-card-header {
    padding: 30px 20px;
  }

  .quote-download-text {
    font-size: 15px;
  }

  .quote-error-message {
    font-size: 16px;
  }

  .quote-company-name {
    font-size: 22px;
  }
}