html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f6f8fa;
  color: #16223a;
  box-sizing: border-box;
  min-height: 100vh
}

body {
  position: relative;
  min-height: 100vh;
}

* {
  box-sizing: inherit
}

a {
  text-decoration: none;
  color: inherit
}

::-webkit-scrollbar {
  width: 8px;
  background: #e9eef3
}

::-webkit-scrollbar-thumb {
  background: #c8d1e1;
  border-radius: 4px
}

.page-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: linear-gradient(145deg, #e3eaf7 0%, #f9fafc 100%)
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 16px
}

@media (max-width:1023px) {
  .container {
    max-width: 100%;
    padding: 12px 4vw
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 50;
  background: #fff;
  box-shadow: 0 2px 12px rgba(22, 34, 58, 0.10)
}

.header-inner {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  height: auto;
  padding: 20px;
}

@media (max-width:1100px) {
  .header-inner {
    padding: 0 15px;
  }
}

.logo {
  display: flex;
  align-items: center;
  margin-right: 40px;
  min-width: 120px;
  height: 38px
}

@media (max-width:600px) {
  .logo {
    margin-right: 18px;
    min-width: 100px
  }
}

.logo img {
  display: block;
  height: 38px;
  width: auto;
  max-width: 135px
}

@media (max-width:600px) {
  .logo img {
    height: 32px;
    max-width: 98px
  }
}

.nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  position: relative
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  transition: all .2s;
}

.nav-menu>li {
  position: relative;
  line-height: 1
}

.nav-menu>li>a {
  display: block;
  padding: 9px 16px;
  border-radius: 20px;
  font-weight: 500;
  transition: background .15s, color .15s;
  font-size: 16px;
  color: #283756;
  white-space: nowrap;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
  background: #e6f1fd;
  color: #008fff
}

.nav-menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(30, 64, 115, .10);
  padding: 10px 0;
  margin-top: 9px;
  z-index: 10;
  flex-direction: column;
  gap: 0;
  list-style: none
}

.nav-menu li:hover>ul {
  display: flex;
}

.nav-menu li ul li a {
  padding: 10px 18px;
  font-size: 15px;
  border-radius: 10px;
  color: #283756;
  transition: background .14s
}

.nav-menu li ul li a:hover {
  background: #e6f1fd;
  color: #008fff
}

@media (max-width:900px) {
  .header-inner {
    padding: 0 4vw
  }

  .nav-menu {
    display: none
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 101;
}

.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #008fff;
  margin: 3.2px 0;
  border-radius: 2px;
  transition: all .25s
}

@media (max-width:900px) {
  .burger {
    display: flex
  }
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 33, 46, 0.67);
  z-index: 99;
  opacity: 0;
  transition: opacity .23s
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 325px;
  max-width: 95vw;
  background: #fff;
  box-shadow: -2px 0 18px rgba(22, 34, 58, 0.12);
  z-index: 100;
  overflow-y: auto;
  transform: translateX(110%);
  transition: transform .29s cubic-bezier(.4, 0, .2, 1)
}

.mobile-menu.open {
  transform: translateX(0)
}

.mobile-overlay.open {
  display: block;
  opacity: 1
}

.mobile-menu.open {
  display: block
}

.mobile-nav-menu {
  list-style: none;
  padding: 32px 10px 32px 10px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.mobile-nav-menu>li {
  position: relative
}

.mobile-nav-menu>li>a {
  display: block;
  padding: 13px 15px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 500;
  color: #283756;
  transition: background .15s, color .15s
}

.mobile-nav-menu>li>a:hover,
.mobile-nav-menu>li>a.active {
  background: #e6f1fd;
  color: #008fff
}

.mobile-nav-menu li ul {
  display: none;
  flex-direction: column;
  gap: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0 0 0 20px;
  margin: 0;
  position: static;
  min-width: 0
}

.mobile-nav-menu li.open>ul {
  display: flex;
  margin-top: 2px
}

.mobile-nav-menu li ul li a {
  font-size: 16px;
  padding: 9px 14px;
  border-radius: 10px
}

@media (max-width:900px) {
  body.menu-open {
    overflow: hidden
  }
}

@media (max-width:1199px) {
  .nav-menu>li>a {
    font-size: 15px;
    padding: 8px 12px
  }
}

@media (max-width:600px) {
  .mobile-menu {
    width: 100vw;
    max-width: 100vw
  }
}

.main {
  padding-top: 140px;
  padding-bottom: 40px;
  min-height: 80vh
}

@media (max-width:900px) {
  .main {
    padding-top: 64px
  }
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 4px 32px rgba(46, 101, 175, .08);
  background: #1e3255;
  min-height: 264px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 48px 22px 38px 22px
}

@media (max-width:600px) {
  .hero-card {
    padding: 26px 7vw 22px 7vw;
    min-height: 180px;
    border-radius: 17px;
    max-width: 100%;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 60% 40%, #008fff44 0%, #1e3255 70%), url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
  opacity: .48
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(31, 52, 86, 0.88) 60%, rgba(0, 143, 255, 0.30) 100%)
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%
}

.hero-content h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: -.01em
}

@media (max-width:600px) {
  .hero-content h1 {
    font-size: 1.5rem
  }
}

.cta-btn {
  padding: 17px 38px;
  font-size: 1.18rem;
  font-weight: 700;
  background: #008fff;
  color: #fff;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 143, 255, 0.12);
  margin-top: 0;
  transition: background .17s, transform .16s, box-shadow .18s;
  outline: none;
  display: inline-block;
  letter-spacing: 0.01em;
  position: relative
}

.cta-btn:active {
  transform: scale(.97)
}

.cta-btn:hover {
  background: #015ebd;
  box-shadow: 0 4px 20px rgba(0, 143, 255, 0.17);
}

.content-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(22, 34, 58, 0.07);
  padding: 40px 32px;
  margin: 0 auto;
}

@media (max-width:700px) {
  .content-section {
    padding: 20px 10px;
  }
}

.section-spacer {
  height: 38px
}

@media (max-width:600px) {
  .section-spacer {
    height: 21px
  }
}

.content-container {
  display: flex;
  flex-direction: column;

}

@media (max-width:600px) {
  .content-container {

  }
}

.content-container h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 0;
  color: #16223a
}

@media (max-width:600px) {
  .content-container h2 {
    font-size: 1.1rem
  }
}

.content-container img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  margin: 16px 0
}

.content-container table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #f6f8fa;
  border: 1.5px solid #c8d1e1;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(46, 101, 175, .05);
  margin: 16px 0;
  font-size: 1rem;
  display: block;
  overflow: auto;
}

.content-container th,
.content-container td {
  padding: 13px 9px;
  border-bottom: 1.5px solid #c8d1e1;
  text-align: left
}

.content-container th {
  background: #e6f1fd;
  font-weight: 700;
  color: #1e3255
}

.content-container tr:last-child td {
  border-bottom: none
}

.content-container td {
  color: #1c2840
}

.content-container thead th {
  border-bottom: 2px solid #a4b6d8
}

.content-container table {
  margin-bottom: 0
}

.content-container .cta-btn {
  margin-bottom: 18px;
  margin-top: 0
}

table p {
  margin: 0;
}

@media (max-width:600px) {

  .content-container th,
  .content-container td {
    padding: 9px 5px;
    font-size: .97em
  }
}

.content-container .cta-btn {
  display: block;
  margin-left: auto;
  margin-right: auto
}

@media (max-width:600px) {
  .content-section {
    border-radius: 10px
  }
}

.rating-section {
  margin: 0 auto;
  max-width: 440px;
  padding: 26px 0 22px 0;
  text-align: center
}

.rating-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px
}

.star {
  font-size: 2.2rem;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  color: #008fff;
  opacity: 0.38;
  transition: opacity .14s, transform .12s;
  user-select: none;
  outline: 0;
  filter: drop-shadow(0 2px 5px rgba(0, 143, 255, 0.08))
}

.star.selected,
.star.active {
  opacity: 1;
  transform: scale(1.08)
}

.star:focus {
  box-shadow: 0 0 0 2px #008fff55;
  border-radius: 5px
}

.star[aria-disabled="true"] {
  cursor: default;
  pointer-events: none
}

@media (max-width:600px) {
  .star {
    font-size: 1.45rem
  }
}

.footer {
  width: 100%;
  background: #283756;
  color: #fff;
  padding: 0;
  margin: 0;
  border-top: 1.5px solid #dbe4f5
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 16px 8px 16px;
  font-size: 1rem;
  text-align: center;
  opacity: .92
}

@media (max-width:600px) {
  .footer-inner {
    font-size: .97rem;
    padding: 13px 5vw 6px 5vw
  }
}