:root {
    --color-bg: #fff;
    --font-base: "Manrope", system-ui, -apple-system, BlinkMacSystemFont,
      "Segoe UI", sans-serif;
    --color-teal: #21c2ae;
    --color-teal-dark: #1da797;
    --color-navy: #17395c;
    --color-black: #121619;
    --color-muted: #6c737d;
    --border-radius: 12px;
  }
  
  #dotnet-compile-error {
    display: none;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html,
  body {
    margin: 0;
    padding: 0;
    background: var(--color-bg);
    font-family: var(--font-base);
    line-height: 1.6;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  a:hover,
  a:focus {
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4 {
    margin: 0 0 0.5rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  p {
    margin: 0 0 1rem;
  }
  
  .page-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    color: var(--color-muted);
    font-weight: 700;
    margin-bottom: 0.35rem;
  }
  
  .legal-body {
    max-width: 860px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    color: var(--color-navy);
  }
  
  .legal-body h2 {
    margin-top: 2rem;
    color: var(--color-black);
  }
  
  .legal-body h3 {
    margin-top: 1.2rem;
    font-size: 1.05rem;
    color: var(--color-navy);
  }
  
  .legal-body ul {
    list-style: disc;
    margin: 0 0 1rem 1.5rem;
    padding: 0;
  }
  
  .legal-body li {
    margin-bottom: 0.35rem;
  }
  
  .legal-link {
    color: var(--color-teal);
    text-decoration: underline;
    font-weight: 600;
  }
  
  ul {
    padding: 0;
    list-style: none;
  }
  
  input,
  button,
  select,
  textarea {
    outline: none;
  }
  
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
  }
  
  .btn-primary {
    background-color: var(--color-teal);
    color: #fff;
  }
  
  .btn-primary:hover {
    background-color: var(--color-teal-dark);
  }
  
  .btn-ghost {
    background-color: #323b43;
    color: #fff;
  }
  
  .form-input {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .layout-header {
    padding: 1rem 0;
    background-color: var(--color-black);
  }

  /* Navigation Styles */
  
  .mobile-nav-modal {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    height: 120px;
    margin: 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav .nav-wrapper {
    display: flex;
    gap: 60px;
  }
  
  .nav .nav-toggle {
    display: none;
  }
  
  .nav .nav-brand img {
    height: 50px;
  }
  
  .nav .nav-menu {
    display: flex;
    gap: 40px;
  }
  
  .nav .nav-menu li {
    position: relative;
  }
  
  .nav .nav-menu li a {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    font-weight: 600;
    cursor: pointer;
  }
  
  .nav .nav-menu li a:hover {
    color: rgba(255, 255, 255, 1);
  }
  
  .nav .nav-menu li a.active {
    font-size: 17px;
    color: rgba(255, 255, 255, 1);
  }
  
  .nav .nav-menu li .nav-submenu {
    display: none;
    position: absolute;
    background-color: var(--color-black);
    padding: 5px 20px;
    left: -10px;
    white-space: nowrap;
  }
  
  .nav .nav-menu li:hover .nav-submenu {
    display: block;
  }
  
  .nav .nav-menu li .nav-submenu li {
    padding: 10px 0;
  }
  
  .nav .nav-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
  
  .nav .nav-cta .login-link {
    padding: 0.5rem 1rem;
    background-color: transparent;
    color: var(--color-teal);
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
  }
  
  /* End Navigation Styles */
  
  .black-block {
    background-color: var(--color-black);
    color: #fff;
  }
  
  .hero {
    display: flex;
    justify-content: center;
    padding: 80px 0;
  }
  
  .hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 25px;
    max-width: 1290px;
  }
  
  .hero-content h1,
  .hero-content h2 {
    font-size: 60px;
    line-height: 74px;
    font-weight: 800;
    margin-bottom: 100px;
  }
  
  .hero-content p {
    line-height: 27px;
    margin-bottom: 24px;
    color: #e1e8ed;
  }
  
  .hero-content .hero-actions {
    display: flex;
    gap: 20px;
  }
  
  .hero-content .hero-right {
    min-width: 0;
  }
  
  .hero-content .hero-right img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Reservations (and similar): hero visual = 40% of row width; height follows aspect ratio */
  .hero--visual-40 .hero-content {
    width: 100%;
  }

  .hero--visual-40 .hero-left {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero--visual-40 .hero-content .hero-right {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .home-trust-band {
    background: #f6f7f9;
    border-bottom: 1px solid #e8ecef;
    padding: 2rem 100px;
  }

  .home-trust-band__inner {
    max-width: 1290px;
    margin: 0 auto;
  }

  .home-trust-band__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .home-trust-band__item {
    margin: 0;
    padding: 0;
    border-left: 3px solid var(--color-teal);
    padding-left: 1.25rem;
  }

  .home-trust-band__title {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: #192a3d;
    margin-bottom: 0.35rem;
    line-height: 1.3;
  }

  .home-trust-band__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #3a4f66;
  }
  
  .register-container {
    background-color: var(--color-teal);
    width: 420px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: var(--border-radius);
  }
  
  .register-container h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 18px;
  }
  
  .register-container p {
    color: var(--color-black);
  }
  
  .register-container .register-input {
    padding: 10px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-base);
  }
  
  .register-container a {
    color: var(--color-navy);
  }
  
  .register-container .validation-message,
  .register-container .register-error {
    color: var(--color-navy);
  }
  
  .black-block .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    color: var(--color-teal);
    font-weight: 700;
    margin: 0 0 0.75rem;
  }
  
  .cta-panel {
    padding: 100px 80px;
  }
  
  .cta-panel__content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px 64px;
    align-items: center;
    max-width: 1290px;
    margin: 0 auto;
  }
  
  .cta-panel__copy {
    min-width: 0;
  }
  
  .black-block .cta-panel__copy h2 {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1rem;
  }
  
  .black-block .cta-panel__copy > p:not(.eyebrow) {
    color: #e1e8ed;
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 36rem;
  }
  
  .cta-panel__form {
    min-width: 0;
  }
  
  .cta-panel__form .register-container {
    width: 420px;
    max-width: 100%;
    margin-left: auto;
  }
  
  .feature-section {
    padding: 100px 80px;
  }
  
  .reservations-showcase {
    max-width: 1290px;
    margin: 0 auto;
  }
  
  .reservations-showcase__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  
  .black-block .reservations-showcase__copy h2 {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1rem;
  }
  
  .black-block .reservations-showcase__copy p {
    color: #e1e8ed;
    line-height: 1.65;
    margin-bottom: 0;
  }
  
  .reservations-showcase__media {
    min-width: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  
  .reservations-showcase__media img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .reservations-showcase__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
  }
  
  .reservations-showcase__card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 28px 24px;
  }
  
  .reservations-showcase__card-icon {
    margin-bottom: 18px;
  }
  
  .reservations-showcase__card-icon img {
    display: block;
    width: 44px;
    height: 44px;
  }
  
  .black-block .reservations-showcase__card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.65rem;
  }
  
  .black-block .reservations-showcase__card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #b8c2cc;
    margin-bottom: 0;
  }
  
  .light-feature-cards {
    background: #f0f3f7;
    padding: 100px 80px;
  }
  
  .light-feature-cards__inner {
    max-width: 1290px;
    margin: 0 auto;
  }
  
  .light-feature-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .light-feature-cards__card {
    background: #fff;
    border: 1px solid #e2e6eb;
    border-radius: var(--border-radius);
    padding: 28px 24px;
    box-shadow: 0 4px 24px rgba(25, 42, 61, 0.06);
  }
  
  .light-feature-cards__card-icon {
    margin-bottom: 18px;
  }
  
  .light-feature-cards__card-icon img {
    display: block;
    width: 44px;
    height: 44px;
  }
  
  .light-feature-cards__card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #192a3d;
    margin-bottom: 0.65rem;
  }
  
  .light-feature-cards__card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #3a4f66;
    margin-bottom: 0;
  }

  .pricing-single {
    background: #f0f3f7;
    padding: 100px 80px;
  }

  .pricing-single__inner {
    max-width: 1290px;
    margin: 0 auto;
  }

  .pricing-single__intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
  }

  .pricing-single__intro h2 {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.2;
    color: #192a3d;
    margin-bottom: 1rem;
  }

  .pricing-single__intro p {
    color: #3a4f66;
    line-height: 1.65;
    margin-bottom: 0;
  }

  .pricing-single__card {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e2e6eb;
    border-radius: var(--border-radius);
    padding: 40px 36px 36px;
    box-shadow: 0 8px 40px rgba(25, 42, 61, 0.08);
    text-align: center;
  }

  .pricing-single__plan-name {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-teal-dark);
    margin-bottom: 0.75rem;
  }

  .pricing-single__amount {
    font-size: 3.25rem;
    font-weight: 800;
    color: #192a3d;
    line-height: 1.1;
  }

  .pricing-single__period {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #3a4f66;
    margin-top: 0.35rem;
  }

  .pricing-single__note {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin: 1rem 0 1.5rem;
  }

  .pricing-single__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 1.75rem;
  }

  .pricing-single__cta .btn {
    width: 100%;
  }

  .pricing-single__features {
    text-align: left;
    list-style: none;
    margin: 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid #e8ecf0;
  }

  .pricing-single__features li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.75rem;
    font-size: 0.95rem;
    color: #3a4f66;
    line-height: 1.45;
  }

  .pricing-single__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-teal);
  }

  .contact-page {
    background: #f0f3f7;
    padding: 100px 80px;
  }

  .contact-page__inner {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 440px);
    gap: 48px 64px;
    align-items: start;
    max-width: 1290px;
    margin: 0 auto;
  }

  .contact-page__aside h2 {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.2;
    color: #192a3d;
    margin-bottom: 0.75rem;
  }

  .contact-page__lede {
    color: #3a4f66;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .contact-page__bullets {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
  }

  .contact-page__bullets li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.35rem;
    color: #3a4f66;
    line-height: 1.45;
  }

  .contact-page__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-teal);
  }

  .contact-page__direct {
    padding: 1.25rem 0;
    border-top: 1px solid #d8dee6;
    border-bottom: 1px solid #d8dee6;
    margin-bottom: 1rem;
  }

  .contact-page__direct p {
    margin: 0 0 0.35rem;
    color: #192a3d;
  }

  .contact-page__direct a {
    color: var(--color-teal-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .contact-page__hint {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin: 0;
  }

  .contact-page__panel {
    background: #fff;
    border: 1px solid #e2e6eb;
    border-radius: var(--border-radius);
    padding: 32px 28px;
    box-shadow: 0 8px 40px rgba(25, 42, 61, 0.08);
  }

  .contact-page__form .form-input {
    margin-bottom: 1rem;
  }

  .contact-page__form .form-input label {
    font-weight: 600;
    color: #192a3d;
    font-size: 0.95rem;
  }

  .contact-page__input,
  .contact-page__textarea {
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid #cfd6dd;
    border-radius: var(--border-radius);
    font-family: var(--font-base);
    font-size: 1rem;
    color: var(--color-black);
    background: #fff;
  }

  .contact-page__textarea {
    resize: vertical;
    min-height: 120px;
  }

  .contact-page__input:focus,
  .contact-page__textarea:focus {
    border-color: var(--color-teal);
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 194, 174, 0.2);
  }

  .contact-page__submit {
    width: 100%;
    margin-top: 0.5rem;
  }

  .not-found-page__hero {
    padding: 72px 24px 96px;
    text-align: center;
  }

  .not-found-page__inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .not-found-page__code {
    font-size: clamp(4rem, 16vw, 7.5rem);
    font-weight: 800;
    line-height: 1;
    margin: 0 0 0.35rem;
    color: var(--color-teal);
    letter-spacing: -0.05em;
    text-shadow: 0 12px 48px rgba(33, 194, 174, 0.25);
  }

  .black-block .not-found-page__hero h1 {
    font-size: clamp(1.65rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 1rem;
  }

  .not-found-page__lede {
    color: #e1e8ed;
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 auto 1.75rem;
    max-width: 38rem;
  }

  .not-found-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }

  .not-found-page__actions .btn {
    min-width: 148px;
  }

  .not-found-page__suggestions.light-feature-cards {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .not-found-page__suggestions-title {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 800;
    color: #192a3d;
    text-align: center;
    margin: 0 0 2rem;
  }

  .not-found-page__suggestions .light-feature-cards__grid {
    margin-top: 0;
  }

  .not-found-page__card-link {
    margin: 1rem 0 0;
    margin-bottom: 0;
  }
  
  .white-showcase-split {
    background: #fff;
    padding: 100px 80px;
  }
  
  .white-showcase-split__inner {
    max-width: 1290px;
    margin: 0 auto;
  }
  
  .white-showcase-split__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  
  .white-showcase-split__media {
    min-width: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  
  .white-showcase-split__media img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .white-showcase-split__copy h2 {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.2;
    color: #192a3d;
    margin-bottom: 1rem;
  }
  
  .white-showcase-split__copy p {
    color: #3a4f66;
    line-height: 1.65;
    margin-bottom: 0;
  }
  
  .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 auto;
    max-width: 1290px;
  }
  
  .features .feature {
    padding: 30px;
    text-align: center;
    width: 400px;
  }
  
  .features .feature .feature-icon {
    margin-bottom: 20px;
  }
  
  .features .feature .feature-icon img {
    width: 40px;
    height: 40px;
  }
  
  .features .feature h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .features .feature p {
    color: var(--color-muted);
  }
  
  .info-section {
    padding: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    max-width: 1290px;
    margin: 0 auto;
  }
  
  .info-section h2 {
    font-size: 35px;
    font-weight: 800;
    line-height: 49px;
    color: #192a3d;
    text-align: center;
  }
  
  .info-section p {
    color: #3a4f66;
    text-align: center;
  }
  
  .info-section .info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
  }
  
  .info-section .info-cards.info-cards--single {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .info-section .info-cards .info-card {
    display: flex;
    align-items: flex-start;
  }
  
  .info-section .info-cards .info-card .content {
    text-align: left;
  }
  
  .info-section .info-cards .info-card .content p {
    text-align: left;
    color: #3a4f66;
  }
  
  .info-section .info-cards .info-card .number span {
    font-size: 30px;
    font-weight: 800;
    background-color: var(--color-teal);
    margin-right: 20px;
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
  }
  
  .info-section .info-cards .info-card .content h4 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 17px;
    line-height: 38px;
  }

  .home-why {
    padding: 80px 100px;
    border-top: 1px solid #e8ecef;
    background: #f6f7f9;
  }

  .home-why__inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .home-why h2 {
    font-size: 35px;
    font-weight: 800;
    line-height: 49px;
    color: #192a3d;
    text-align: center;
    margin: 0 0 1.25rem;
  }

  .home-why__lead {
    text-align: center;
    color: #3a4f66;
    font-size: 1.1rem;
    line-height: 1.65;
    margin: 0 0 2rem;
  }

  .home-why__points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .home-why__points li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: #3a4f66;
    line-height: 1.55;
  }

  .home-why__bullet {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 0.45rem;
    border-radius: 50%;
    background: var(--color-teal);
  }

  .home-why__footer {
    text-align: center;
    margin: 2rem 0 0;
    font-size: 1rem;
    color: #3a4f66;
  }

  .home-why__link {
    color: var(--color-teal);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .home-why__link:hover {
    text-decoration-thickness: 2px;
  }

  .home-why__sep {
    margin: 0 0.5rem;
    color: #b8c0c8;
  }

  .home-faq {
    max-width: 1290px;
    margin: 0 auto;
    padding: 72px 100px 64px;
    border-top: 1px solid #e8ecef;
  }

  .home-faq__inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .home-faq h2 {
    font-size: 35px;
    font-weight: 800;
    line-height: 49px;
    color: #192a3d;
    text-align: center;
    margin: 0 0 2rem;
  }

  .home-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .home-faq__item {
    border: 1px solid #e4e8ec;
    border-radius: var(--border-radius, 8px);
    background: #fff;
  }

  .home-faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 2.75rem 1rem 1.25rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #192a3d;
    line-height: 1.4;
    position: relative;
  }

  .home-faq__item summary::-webkit-details-marker {
    display: none;
  }

  .home-faq__item summary:focus-visible {
    outline: 2px solid var(--color-teal);
    outline-offset: 2px;
    border-radius: 4px;
  }

  .home-faq__item summary::after {
    content: "";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-teal);
    border-bottom: 2px solid var(--color-teal);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.2s ease;
  }

  .home-faq__item[open] summary::after {
    transform: translateY(-25%) rotate(-135deg);
  }

  .home-faq__body {
    padding: 0 1.25rem 1.15rem;
    color: #3a4f66;
    line-height: 1.6;
    font-size: 1rem;
  }

  .home-faq__body p {
    margin: 0;
    text-align: left;
  }

  .home-faq__body .inline-link {
    color: var(--color-teal);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .home-faq__body .inline-link:hover {
    text-decoration-thickness: 2px;
  }
  
  .download-section {
    background-color: #f6f7f9;
    padding: 150px 10px;
    text-align: center;
  }
  
  .download-section h2 {
    font-size: 35px;
    font-weight: 800;
    line-height: 49px;
    color: #192a3d;
  }
  
  .download-section p {
    font-size: 20px;
    line-height: 33px;
    color: #192a3d;
    width: 800px;
    margin: 20px auto 40px;
  }
  
  /* Footer Styles */
  footer {
    background-color: var(--color-black);
    color: #fff;
    text-align: center;
    padding: 1rem 50px;
  }
  
  footer .footer-top {
    display: flex;
    justify-content: center;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  footer .footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }
  
  footer .footer-links li {
    text-align: left;
  }
  
  footer .footer-links li h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #e1e8ed;
  }
  
  footer .footer-links li .sub-links a {
    color: var(--color-muted);
    font-weight: 400;
    transition: color 0.3s ease;
    line-height: 30px;
  }
  
  footer .footer-links li .sub-links a:hover {
    color: var(--color-teal);
  }
  
  footer .social-buttons {
    padding: 25px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #3a4f66;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  footer .social-buttons svg {
    fill: var(--color-muted);
    transition: fill 0.3s ease;
  }
  
  footer .social-buttons svg:hover {
    fill: var(--color-teal);
  }
  
  footer .footer-copyright {
    padding-top: 25px;
    font-size: 14px;
    color: var(--color-muted);
    text-align: left;
  }
  
  footer .footer-copyright a {
    color: var(--color-teal);
  }
  
  footer .footer-copyright p {
    margin: 0;
  }
  
  /* End Footer Styles */

  .page-header {
    max-width: 960px;
    margin: 0 auto 2rem;
    padding: 2rem 1.25rem 0;
    color: var(--color-navy);
  }

  .page-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--color-black);
  }

  .help-breadcrumb {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
  }

  .help-breadcrumb a {
    color: var(--color-teal);
    text-decoration: none;
  }

  .help-breadcrumb a:focus-visible {
    outline: 2px solid var(--color-teal, #21c2ae);
    outline-offset: 2px;
  }

  .help-lang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto 4rem;
    padding: 0 1.25rem;
  }

  .help-lang-card {
    display: block;
    padding: 1.25rem 1.5rem;
    border: 1px solid #e4e8ec;
    border-radius: var(--border-radius);
    background: #fff;
    color: var(--color-navy);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .help-lang-card:hover {
    border-color: var(--color-teal);
    box-shadow: 0 8px 24px rgba(23, 57, 92, 0.08);
  }

  .help-lang-card h2 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
  }

  .help-lang-card__native {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .help-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto 4rem;
    padding: 0 1.25rem;
  }

  .help-category-card {
    display: block;
    padding: 1.25rem 1.5rem;
    border: 1px solid #e4e8ec;
    border-radius: var(--border-radius);
    background: #fff;
    color: var(--color-navy);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .help-category-card:hover {
    border-color: var(--color-teal);
    box-shadow: 0 8px 24px rgba(23, 57, 92, 0.08);
  }

  .help-category-card h2 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: var(--color-black);
  }

  .help-category-card__desc {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin: 0;
  }

  .help-category-block {
    max-width: 960px;
    margin: 0 auto 2.5rem;
    padding: 0 1.25rem;
    color: var(--color-navy);
  }

  .help-category-block h2 {
    font-size: 1.35rem;
    color: var(--color-black);
    margin-bottom: 0.5rem;
  }

  .help-category-block__desc {
    color: var(--color-muted);
    margin-bottom: 1rem;
  }

  .help-category-body {
    max-width: 960px;
    margin: 0 auto 2rem;
    padding: 0 1.25rem;
    color: var(--color-navy);
  }

  .help-article-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .help-article-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid #eef1f4;
  }

  .help-article-list a {
    font-weight: 600;
    color: var(--color-teal-dark);
  }

  .help-article-list li p {
    margin: 0.35rem 0 0;
    color: var(--color-muted);
    font-size: 0.95rem;
  }

  .help-article-list--padded {
    max-width: 960px;
    margin: 0 auto 2rem;
    padding: 0 1.25rem;
  }

  .help-article {
    max-width: 860px;
    margin: 0 auto 4rem;
    padding: 1rem 1.25rem 3rem;
    color: var(--color-navy);
  }

  .help-article__header h1 {
    font-size: clamp(1.6rem, 4vw, 2rem);
    color: var(--color-black);
  }

  .help-article__summary {
    font-size: 1.1rem;
    color: var(--color-muted);
  }

  .help-article-body {
    margin-top: 1.5rem;
    line-height: 1.65;
  }

  .help-article-body h2,
  .help-article-body h3 {
    margin-top: 1.75rem;
    color: var(--color-black);
  }

  .help-article-body pre {
    overflow-x: auto;
    padding: 1rem;
    background: #f6f7f9;
    border-radius: 8px;
  }

  .help-article__footer {
    margin-top: 2.5rem;
  }

  .help-back {
    display: inline-block;
    color: var(--color-teal, #21c2ae);
    text-decoration: none;
    font-weight: 600;
  }

  .help-back:hover {
    color: var(--color-teal-dark, #1da797);
    text-decoration: underline;
  }

  .help-related {
    margin-top: 2rem;
  }

  .help-related h2 {
    font-size: 1.15rem;
    color: var(--color-black);
    margin-bottom: 0.75rem;
  }

  .help-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .help-related-list li {
    margin: 0.5rem 0;
  }

  .help-related-list a {
    color: var(--color-teal-dark);
    font-weight: 600;
    text-decoration: none;
  }

  .help-related-list a:hover {
    text-decoration: underline;
  }

  .help-survey {
    margin: 2rem 0 1rem;
    padding: 1.25rem;
    border: 1px solid #e4e8ec;
    border-radius: var(--border-radius, 8px);
    background: #fafbfc;
  }

  .help-survey__prompt {
    margin: 0 0 0.75rem;
    font-weight: 600;
    color: var(--color-navy);
  }

  .help-survey__thanks {
    margin: 0;
    color: var(--color-muted);
  }

  .help-survey__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
  }

  .help-survey__btn {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    border-radius: 8px;
    border: 1px solid #cfd6dd;
    background: #fff;
    color: var(--color-navy);
    font-weight: 600;
    cursor: pointer;
  }

  .help-survey__btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
  }

  .help-survey__btn--yes {
    border-color: var(--color-teal, #21c2ae);
    color: var(--color-teal-dark);
  }

  .help-survey__btn--primary {
    background: var(--color-teal, #21c2ae);
    border-color: var(--color-teal, #21c2ae);
    color: #fff;
  }

  .help-survey__btn--link {
    border: none;
    background: transparent;
    color: var(--color-teal-dark);
    text-decoration: underline;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .help-survey__textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 0.75rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid #cfd6dd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
  }

  .help-survey__error {
    color: #b91c1c;
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
  }

  .btn--ghost {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #cfd6dd;
    border-radius: 8px;
    color: var(--color-navy);
  }

  .btn--ghost:hover {
    border-color: var(--color-teal);
    color: var(--color-teal-dark);
  }

  .help-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    background: rgba(33, 194, 174, 0.15);
    color: var(--color-teal-dark);
  }
  
  /* Responsive Layout Adjustments */
  @media (max-width: 1200px) {
    .hero {
      padding: 80px 20px;
    }
  
    .hero-content {
      flex-direction: column;
    }

    .hero--visual-40 .hero-content .hero-right {
      flex: 0 0 auto;
      max-width: 100%;
      width: 100%;
    }
  
    .hero-content h1,
    .hero-content h2 {
      font-size: 46px;
      line-height: 57px;
      font-weight: 800;
      margin-bottom: 50px;
    }
  
    .hero-content .hero-actions a {
      flex: 1;
    }
  
    .reservations-showcase__row {
      grid-template-columns: 1fr;
      gap: 36px;
    }
  
    .white-showcase-split__row {
      grid-template-columns: 1fr;
      gap: 36px;
    }
  
    .reservations-showcase__cards {
      grid-template-columns: repeat(2, 1fr);
      margin-top: 48px;
    }
  
    .features {
      grid-template-columns: repeat(2, 1fr);
      width: 100%;
    }
  
    .features .feature {
      padding: 0;
      width: auto;
    }
  
    .cta-panel {
      padding: 80px 20px;
    }
  }
  
  @media (max-width: 992px) {
    .cta-panel__content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .black-block .cta-panel__copy > p:not(.eyebrow) {
      max-width: none;
    }
  
    .cta-panel__form {
      justify-self: center;
      width: 100%;
      display: flex;
      justify-content: center;
    }
  
    .cta-panel__form .register-container {
      margin-left: 0;
      width: 100%;
      max-width: 420px;
    }
  }
  
  @media (max-width: 768px) {
    .nav {
      height: 70px;
      margin: 0 1rem;
    }
  
    .nav .nav-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
      min-width: 44px;
      min-height: 44px;
      padding: 0;
      margin: 0;
      background: transparent;
      border: none;
      color: var(--color-teal);
      cursor: pointer;
    }
  
    .nav .nav-toggle svg {
      fill: var(--color-teal);
    }
  
    .nav .nav-wrapper {
      width: 100%;
      justify-content: space-between;
    }
  
    .nav .nav-brand a {
      display: block;
      height: 40px;
    }
  
    .nav .nav-brand img {
      width: 100%;
      height: 40px;
    }
  
    .nav .nav-menu {
      display: none;
    }
  
    .nav .nav-cta {
      display: none;
    }
  
    .mobile-nav-modal {
      display: block;
      position: fixed;
      z-index: 2000;
      color: white;
      background-color: var(--color-black);
      width: 100%;
      height: 100%;
      inset: 0;
      visibility: hidden;
      top: 0;
    }
  
    .mobile-nav-modal.opened {
      opacity: 0.95;
      visibility: visible;
    }
  
    .mobile-nav-modal .nav-close {
      position: absolute;
      top: 26px;
      right: 15px;
      background: transparent;
      border: none;
      cursor: pointer;
    }
  
    .mobile-nav-modal .nav-close svg {
      fill: var(--color-teal);
    }
  
    .mobile-nav-modal .mobile-nav-menu {
      padding: 56px 24px 24px;
      max-width: 28rem;
      margin: 0 auto;
      list-style: none;
    }

    .mobile-nav-modal .mobile-nav-menu__group {
      margin: 0 0 1.35rem;
      padding: 0;
      list-style: none;
    }

    .mobile-nav-modal .mobile-nav-menu__label {
      display: block;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--color-teal);
      margin-bottom: 0.45rem;
    }

    .mobile-nav-modal .mobile-nav-menu__sub {
      margin: 0;
      padding: 0 0 0 0.65rem;
      list-style: none;
      border-left: 2px solid rgba(33, 194, 174, 0.4);
    }

    .mobile-nav-modal .mobile-nav-menu__sub li {
      text-align: left;
      padding: 0.28rem 0;
    }

    .mobile-nav-modal .mobile-nav-menu__sub li a {
      font-size: 1.05rem;
      font-weight: 600;
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.92);
    }

    .mobile-nav-modal .mobile-nav-menu__sub li a.active {
      color: var(--color-teal);
    }

    .mobile-nav-modal .mobile-nav-menu__sub li a:active {
      color: var(--color-teal);
    }

    .mobile-nav-modal .mobile-nav-menu__solo {
      margin: 0 0 1.35rem;
      padding: 0;
      list-style: none;
      text-align: left;
    }

    .mobile-nav-modal .mobile-nav-menu__top-link {
      font-size: 1.15rem;
      font-weight: 700;
      line-height: 1.4;
      color: #fff;
    }

    .mobile-nav-modal .mobile-nav-menu__top-link.active {
      color: var(--color-teal);
    }
  
    .mobile-nav-modal .mobile-nav-menu li a:active {
      color: var(--color-teal);
    }
  
    .mobile-nav-modal .social-buttons {
      fill: #fff;
      display: flex;
      justify-content: center;
      gap: 30px;
    }
  
    .feature-section {
      padding: 80px 20px;
    }
  
    .white-showcase-split {
      padding: 80px 20px;
    }
  
    .info-section {
      padding: 80px 20px;
    }
  
    .info-section .info-cards {
      grid-template-columns: 1fr;
    }
  
    .light-feature-cards {
      padding: 80px 20px;
    }

    .pricing-single {
      padding: 80px 20px;
    }

    .pricing-single__intro h2 {
      font-size: 28px;
    }

    .contact-page {
      padding: 80px 20px;
    }

    .contact-page__inner {
      grid-template-columns: 1fr;
    }

    .contact-page__aside h2 {
      font-size: 28px;
    }

    .not-found-page__hero {
      padding: 56px 20px 72px;
    }

    .not-found-page__actions {
      flex-direction: column;
      align-items: stretch;
    }

    .not-found-page__actions .btn {
      width: 100%;
      min-width: 0;
    }

    .not-found-page__suggestions.light-feature-cards {
      padding-top: 64px;
      padding-bottom: 80px;
    }
  
    .light-feature-cards__grid {
      grid-template-columns: 1fr;
    }
  
    .reservations-showcase__cards {
      grid-template-columns: 1fr;
    }
  
    .black-block .reservations-showcase__copy h2 {
      font-size: 28px;
    }
  
    .white-showcase-split__copy h2 {
      font-size: 28px;
    }
  
    .info-section .info-cards .info-card .content p {
      text-align: left;
    }

    .home-trust-band {
      padding: 1.5rem 20px;
    }

    .home-trust-band__items {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }

    .home-why {
      padding: 56px 20px;
    }

    .home-why h2 {
      font-size: 28px;
      line-height: 1.25;
    }

    .home-faq {
      padding: 56px 20px 48px;
    }

    .home-faq h2 {
      font-size: 28px;
      line-height: 1.25;
    }

    .home-faq__item summary {
      font-size: 1rem;
    }
  
    .download-section {
      padding: 80px 20px;
    }
  
    .download-section p {
      width: 100%;
    }
  
    footer .footer-links {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .layout-header {
      padding: 0;
    }
  
    .features {
      grid-template-columns: 1fr;
    }
  
    footer {
      padding: 0.5rem 20px;
    }
  
    footer .footer-links {
      grid-template-columns: 1fr;
    }
  }