html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

.logo {
    height: 100px !important;
    width: auto;
    object-fit: contain;
    max-width: none !important;
}

.navbar {
      min-height: 100px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid #eee;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
}

.nav-link:hover {
    color: var(--gold) !important;
}
@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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

body {
    background-color: #ffffff;
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
}

.hero-title {
    color: var(--text-dark);
}

.hero-subtitle {
    color: var(--text-gray);
}

.hero-text {
    color: var(--text-gray);
    line-height: 1.7;
}

.gold-line {
    width: 120px;
    height: 2px;
    background-color: var(--gold);
    margin: 20px auto;
}

.section:first-of-type {
    padding: 10px 80px;
    text-align: center;
}

.section {
    padding:  10px 80px;
    text-align: center;
}

:root {
    --gold: #c8a96a;
    --text-dark: #111;
    --text-gray: #555;
}

h3 {
    transition: color 0.2s ease;
}

h3:hover {
    color: var(--gold);
}

.content-wrapper {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}