.nbf {
  background: #8AADA0; /* updated */
  font-family: 'Open Sans', sans-serif;
  padding: 0;
}

.nbf a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color .2s;
}

.nbf a:hover {
  color: #fff;
}

.nbf-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 0.8fr;
  gap: 0;
  padding: 2.5rem 2rem;
}

.nbf-col {
  padding-right: 2rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.nbf-col:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 1.5rem;
}

.nbf-col:nth-child(2) {
  padding-left: 1.5rem;
}

.nbf-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 1rem;
}

.nbf-logo img {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

.nbf-tagline {
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.4rem;
  line-height: 1.6;
}

.nbf-phone-card {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 1rem;
}

.nbf-phone-card p {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 3px;
}

.nbf-phone-card a {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .02em;
}

.nbf-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: .5rem;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.nbf-contact-row .nbf-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nbf-social {
  display: flex;
  gap: 8px;
  margin-top: 1.4rem;
}

.nbf-soc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.nbf-soc:hover {
  background: rgba(255,255,255,0.2);
}

.nbf-soc svg {
  width: 16px;
  height: 16px;
}

.nbf-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nbf-nav-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  transition: background .15s, color .15s;
}

.nbf-nav-links li a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.nbf-nav-links li a svg {
  opacity: .4;
  flex-shrink: 0;
}

.nbf-book-btn {
  display: block;
  text-align: center;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #fff !important;
  letter-spacing: .04em;
  margin-top: 1.5rem;
  transition: background .2s;
}

.nbf-book-btn:hover {
  background: rgba(255,255,255,0.25);
}

.nbf-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 2rem;
}

.nbf-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.15);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 720px) {
  .nbf-main {
    grid-template-columns: 1fr 1fr;
    padding: 1.5rem;
  }

  .nbf-col:first-child {
    grid-column: 1 / -1;
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .nbf-col:nth-child(2) {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .nbf-main {
    grid-template-columns: 1fr;
  }

  .nbf-col:nth-child(2) {
    border-right: none;
    padding-right: 0;
  }

  .nbf-col:last-child {
    padding-left: 0;
  }

  .nbf-bottom {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}