/* =========================
   Global page background
========================= */
html,
body {
  margin: 0;
  min-height: 100%;
  background: linear-gradient(135deg, #eaf2ff 0%, #eee9ff 45%, #ddd8ff 100%);
  color: #1F2A44;
}

/* Full website centered wrapper */
.site-page {
  width: 100%;
  max-width: 1240px;
  margin: 24px auto;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 20px 60px rgba(31, 42, 68, 0.14);
}

/* Bootstrap container inside centered page */
.site-page > .site-header .container,
.site-page .section > .container,
.site-page .site-main > .container,
.site-page .site-footer > .container {
  max-width: 1320px;
}

/* =========================
   Header
========================= */
.site-header {
  background: #ffffff;
  /* border-radius: 22px 22px 0 0; */
  box-shadow: 0 4px 18px rgba(31, 42, 68, 0.08);
  position: relative;
  z-index: 50;
}

.site-header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Branding */
.site-header__brand .region-header {
  display: flex;
  align-items: center;
}

.site-header__brand .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.site-header__brand .site-logo img {
  width: 340px;
  height: auto;
  display: block;
}

.site-header__brand .site-title {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  color: #1F2A44;
  text-decoration: none;
  display:none;
}

.site-header__brand .site-title:hover {
  color: #1F2A44;
}

/* =========================
   Main menu inline
========================= */
.site-header__menu,
.site-header__menu .region-primary-menu,
.site-header__menu nav {
  display: flex;
  align-items: center;
}

.site-header__menu .navbar-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__menu .nav-item {
  display: inline-flex;
  align-items: center;
}

.site-header__menu .nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: #1F2A44;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__menu .nav-link:hover,
.site-header__menu .nav-link.active {
  color: #006df0;
}

/* Login menu item */
.site-header__menu .nav-link.login-btn {
  padding: 12px 24px;
  border: 1px solid #5c6cff;
  border-radius: 8px;
  color: #1F2A44;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(70, 91, 255, 0.12);
}

.site-header__menu .nav-link.login-btn:hover {
  color: #006df0;
  border-color: #006df0;
  background: #f8fbff;
}

/* Mobile basic */
@media (max-width: 991px) {
  .site-page {
    margin: 0;
    border-radius: 0;
  }

  .site-header {
    border-radius: 0;
  }

  .site-header__inner {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  .site-header__menu .navbar-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* =========================
   Hero banner
========================= */
.hero-banner {
  min-height: 640px;
  background-size: cover;
  background-position: center right -100px;
  background-repeat: no-repeat;
}

.hero-banner__inner {
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-banner__text {
  max-width: 590px;
  padding: 80px 0 90px 70px;
}

.hero-banner__title {
  margin: 0 0 28px;
  font-size: 55px;
  line-height: 1.16;
  font-weight: 600;
  color: #1F2A44;
  letter-spacing: -0.8px;
}

.hero-banner__title .field__label,
.hero-banner__desc .field__label {
  display: none;
}

.hero-banner__desc {
  max-width: 500px;
  margin-bottom: 36px;
  font-size: 21px;
  line-height: 1.6;
  color: #1F2A44;
}

.hero-banner__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 42px;
}

.hero-banner__bullets li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 600;
  color: #1F2A44;
}

.hero-banner__bullets li::before {
  content: "✓";
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, #4ea8ff 0%, #0067ec 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0,103,236,0.35);
}

.hero-banner__cta a {
  min-width: 420px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #45a7ff 0%, #0067ec 100%);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,103,236,0.38);
}




@media (max-width: 991px) {
  .hero-banner {
    padding: 40px 0;
  }

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

  .hero-banner__bullets {
    grid-template-columns: 1fr;
  }
}