/* Make the address box stand out */
.address-box {
  border: 1px solid #ddd; /* Light border around address box */
  padding: 20px;           /* Add padding for spacing inside the box */
  border-radius: 5px;      /* Rounded corners */
  background-color: #f9f9f9; /* Light background to distinguish it */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
}

/* Optional: Style the legend for clarity */
.address-box legend {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
}

/* Optional: Add a margin to the bottom of the address box for spacing */
.address-box .mb-3 {
  margin-bottom: 1.5rem;
}

.quote-form-card {
  max-width: 110%;
}

.legal-index {
  max-width: 860px;
}

.legal-index-header {
  margin-bottom: 2.5rem;
}

.legal-intro {
  max-width: 720px;
  color: #555;
}

.legal-list {
  border-top: 1px solid #e5e5e5;
}

.legal-list-item {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.legal-list-item h2 {
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
}

.legal-list-item p {
  margin: 0;
  color: #555;
  max-width: 620px;
}

.legal-link-button {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .legal-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

body {
  background-color: #f8fcff;
}

.custom-navbar {
  background-color: #f8fcff;
  box-shadow: none;
}
.custom-navbar .navbar-brand,
.custom-navbar .nav-link,
.custom-navbar .dropdown-toggle {
  color: #2d3a45 !important;
  font-weight: 500;
}

.custom-navbar .nav-link:hover,
.custom-navbar .dropdown-toggle:hover {
  color: #5bbce9 !important;
}

.navbar-logo {
  height: 64px;
  width: auto;
}
