:root {
  --blue-deep: #274472;
  --text-dark: #2a2a2a;
  --white: #ffffff;
  --navbar: #f2f4f9;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  margin: 0;
}

h1 {font-weight: 800;}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  background: var(--blue-deep);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: -12px;
}

.header-toggle {
  display: none;
  border: 2px solid #ff8c00;
  background-color: var(--navbar);
  box-shadow: none;
  border-radius: 8px;
  padding: 8px 10px;
}

.header-toggle .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 140, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

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

.main-quote {
  font-weight: 800;
  font-size: 28px;
  color: #e2eaf2;
  text-transform: none;
  letter-spacing: 0.5px;
}

.navbar-main {
  background: var(--navbar);
  padding:0px;
}

.navbar-main .nav-link {
  color: #4174c5;
  font-weight: 600;
  padding: 14px 18px;
  text-transform: none;
}

.navbar-main .nav-link.active {
  background: orange;
  color: white;
}

.navbar-main .nav-link:hover {
  background: #274472;
  color: orange;
}

.hero {
  background: #e9e9e9;
}

.hero-slide {
  min-height: 487px;
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-text {
  color: #ffffff;
  font-weight: 800;
}

.hero-text-left {
  padding-left: 20px;
}

.hero-text-center {
  text-align: center;
  margin: 0 auto;
}

.hero-line {
  font-size: 48px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-line + .hero-line {
  margin-top: 8px;
}

.hero-line-wide {
  max-width: 760px;
  margin: 0 auto;
}

.hero-script {
  font-family: "Great Vibes", cursive;
  font-size: 36px;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.content {
  padding: 32px 0 40px;
  font-size: 17px;
  line-height: 1.7;
}

.content ul {
  padding-left: 20px;
}

.site-footer {
  background: var(--blue-deep);
  color: #ffffff;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.65);
  display: inline-block;
  line-height: 1;
}

@media (max-width: 991px) {
  .header-toggle {
    display: inline-flex;
  }

  .navbar-main {
    background: var(--blue-deep);
    padding: 6px;
  }

  .navbar-collapse {
    margin-top: 8px;
    background-color: var(--navbar);
  }

  .header-top {
    align-items: center;
  }

  .main-quote {
    font-size: 24px;
  }

  .hero-line {
    font-size: 36px;
  }

  .hero-slide {
    min-height: 360px;
  }
}

@media (max-width: 575px) {
  .header-top {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand-logo {
    height: 52px;
  }

  .main-quote {
    font-size: 20px;
    text-align: right;
  }

  .header-right {
    gap: 10px;
    margin-right: 0;
  }

  .hero-line {
    font-size: 28px;
  }

  .hero-script {
    font-size: 26px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-left: 12px;
  }
}
