:root {
  --bg: #f4f6fa;
  --surface: #ffffff;
  --surface-soft: #eef2f8;
  --primary: #102742;
  --primary-soft: #17385d;
  --accent: #c9a55c;
  --accent-dark: #af8b42;
  --text: #162033;
  --muted: #5f6f86;
  --border: #d7deea;
  --shadow: 0 20px 60px rgba(10, 28, 52, 0.08);
  --radius: 20px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-dark {
  background: linear-gradient(135deg, #102742 0%, #17385d 100%);
  color: #ffffff;
}

.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2,
.intro h2,
.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(16, 39, 66, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  flex-shrink: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, #ecd9a6 100%);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.2rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(16, 39, 66, 0.55), rgba(16, 39, 66, 0.72)),
    url("../images/hero-home.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 24, 42, 0.75) 0%, rgba(12, 24, 42, 0.35) 55%, rgba(12, 24, 42, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 700px;
  color: #fff;
}

.eyebrow {
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  color: #ecd9a6;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero-description {
  font-size: 1.15rem;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #e1c98e 100%);
  color: var(--primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--accent-dark) 0%, #d8be80 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.intro-grid,
.cta-box,
.banner-box {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro p + p {
  margin-top: 16px;
}

.card-grid,
.features-grid,
.steps-grid {
  display: grid;
  gap: 24px;
}

.card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.features-grid {
  grid-template-columns: repeat(4, 1fr);
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.feature-box,
.step,
.banner-box,
.cta-box {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.step {
  background: var(--surface);
  padding: 28px;
  border: 1px solid var(--border);
}

.card h3,
.feature-box h3,
.step h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.feature-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.step span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.highlight-banner {
  background: linear-gradient(180deg, #f7f1e3 0%, #f4f6fa 100%);
}

.banner-box {
  background:
    linear-gradient(rgba(98, 25, 67, 0.72), rgba(98, 25, 67, 0.72)),
    url("../images/legal-update.jpg") center/cover no-repeat;
  color: #fff;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-action {
  display: flex;
  justify-content: flex-end;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  color: #fff;
  padding: 42px;
}

.site-footer {
  background: #0d1f34;
  color: #fff;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 34px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 14px;
}

.site-footer ul li + li {
  margin-top: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

@media (max-width: 1100px) {
  .card-grid,
  .features-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .cta-box,
  .banner-box {
    grid-template-columns: 1fr;
  }

  .banner-action {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 86px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background: var(--primary);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .main-nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 78vh;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }

  .card-grid,
  .features-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .banner-box,
  .cta-box,
  .card,
  .feature-box,
  .step {
    padding: 22px;
  }
}
.page-hero {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, #102742 0%, #17385d 100%);
  color: #fff;
}

.page-hero-small {
  padding-top: 140px;
  padding-bottom: 70px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.5rem);
  line-height: 1.1;
  max-width: 900px;
}

.page-hero-text {
  max-width: 760px;
  margin-top: 18px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.86);
}

.section-soft {
  background: var(--surface-soft);
}

.two-column-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.content-card p + p {
  margin-top: 14px;
}

.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.service-list {
  display: grid;
  gap: 34px;
}

.service-block {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}

.service-block:first-child {
  padding-top: 0;
}

.service-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-title h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.service-content h3 {
  margin-top: 22px;
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.styled-list {
  list-style: disc;
  padding-left: 22px;
}

.styled-list li + li {
  margin-top: 10px;
}

.faq-list {
  display: grid;
  gap: 20px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.faq-item h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

@media (max-width: 1100px) {
  .two-column-block,
  .service-block,
  .card-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .card-grid-2,
  .card-grid-3 {
    grid-template-columns: 1fr;
  }

  .content-card,
  .faq-item {
    padding: 22px;
  }
}
.contact-layout,
.booking-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: start;
}

.contact-info-card,
.form-card,
.booking-side-card,
.legal-text {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-info-card,
.form-card,
.booking-side-card {
  padding: 32px;
}

.contact-info-list {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.contact-info-item h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.site-form {
  margin-top: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field label {
  font-weight: 700;
  font-size: 0.96rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary-soft);
  box-shadow: 0 0 0 4px rgba(23, 56, 93, 0.08);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-soft);
}

.checkbox-row input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
}

.legal-text {
  padding: 38px;
}

.legal-text h2 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text p + p {
  margin-top: 12px;
}

@media (max-width: 1100px) {
  .contact-layout,
  .booking-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .form-card,
  .booking-side-card,
  .legal-text {
    padding: 22px;
  }
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 165, 92, 0.08), transparent 26%),
    linear-gradient(180deg, #f5f7fb 0%, #eef2f8 100%);
  color: var(--text);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 25, 43, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(6, 20, 36, 0.08);
}

.hero-premium {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(9, 22, 38, 0.55), rgba(9, 22, 38, 0.78)),
    url("../images/hero-home.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero-premium::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -140px;
  top: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 165, 92, 0.16), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr;
  gap: 34px;
  align-items: end;
}

.hero-text {
  max-width: 760px;
  color: #fff;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.98;
  margin-bottom: 22px;
  max-width: 820px;
}

.hero-description {
  font-size: 1.12rem;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.hero-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-mini-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-side-card {
  position: relative;
  z-index: 2;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-side-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(201, 165, 92, 0.18);
  color: #f3dfb0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-side-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.hero-side-card p {
  color: rgba(255, 255, 255, 0.88);
}

.text-link,
.inline-arrow-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  font-weight: 700;
  color: var(--accent);
}

.inline-arrow-link::after,
.text-link::after {
  content: "→";
  margin-left: 8px;
}

.premium-intro {
  gap: 56px;
}

.intro-title-block h2 {
  max-width: 560px;
}

.intro-content-block {
  padding: 34px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(215, 222, 234, 0.9);
  border-radius: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
}

.intro-content-block p + p {
  margin-top: 14px;
}

.card,
.step,
.content-card,
.faq-item,
.form-card,
.contact-info-card,
.booking-side-card,
.legal-text {
  border-radius: 24px;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border: 1px solid rgba(215, 222, 234, 0.9);
  box-shadow: 0 18px 40px rgba(11, 28, 49, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(11, 28, 49, 0.1);
  border-color: rgba(201, 165, 92, 0.45);
}

.card h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
}

.feature-box {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.22s ease, background 0.22s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.step {
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 165, 92, 0.16), transparent 70%);
}

.step span {
  box-shadow: 0 10px 24px rgba(16, 39, 66, 0.18);
}

.legal-feature-box {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr;
  gap: 26px;
  align-items: stretch;
  padding: 38px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(74, 20, 53, 0.9), rgba(124, 42, 89, 0.82)),
    url("../images/legal-update.jpg") center/cover no-repeat;
  color: #fff;
  box-shadow: 0 28px 60px rgba(57, 16, 40, 0.18);
}

.legal-feature-content h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 760px;
}

.legal-feature-content p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
}

.legal-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.25s ease;
}

.btn-outline-light:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.legal-feature-side {
  display: flex;
  align-items: end;
  justify-content: end;
}

.mini-info-card {
  width: 100%;
  max-width: 290px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.mini-info-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f0dbac;
  font-weight: 700;
}

.mini-info-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.premium-cta-box {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 24px;
  align-items: center;
  padding: 46px;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(16, 39, 66, 0.18);
}

.cta-content p:last-child {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  max-width: 640px;
}

.footer-brand-block p {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(201, 165, 92, 0.08), transparent 25%),
    #0d1f34;
  color: #fff;
  padding-top: 76px;
}

.site-footer h3,
.site-footer h4 {
  letter-spacing: -0.01em;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.2s ease;
}

@media (max-width: 1100px) {
  .hero-grid,
  .legal-feature-box,
  .premium-cta-box {
    grid-template-columns: 1fr;
  }

  .hero-side-card {
    max-width: 520px;
  }

  .legal-feature-side {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .hero-premium {
    min-height: 82vh;
  }

  .hero h1 {
    font-size: 2.9rem;
    line-height: 1.02;
  }

  .intro-content-block,
  .hero-side-card,
  .legal-feature-box,
  .premium-cta-box {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .hero-mini-points {
    gap: 10px;
  }

  .hero-mini-points span {
    width: 100%;
    justify-content: center;
  }

  .legal-feature-actions,
  .cta-actions {
    width: 100%;
  }

  .legal-feature-actions .btn,
  .legal-feature-actions .btn-outline-light,
  .cta-actions .btn {
    width: 100%;
  }
}
.service-card-premium {
  position: relative;
  overflow: hidden;
}

.service-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(16, 39, 66, 0.08);
  color: var(--primary);
  font-weight: 800;
}

.service-card-premium::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 165, 92, 0.12), transparent 70%);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 50px 0;
  align-items: start;
}

.service-left h2 {
  font-size: 48px;
  font-weight: 800;
  color: #1f5f8b;
  line-height: 1.1;
}

.service-right ul {
  list-style: none;
  padding: 0;
}

.service-right li {
  margin-bottom: 12px;
  color: #3b6f94;
  font-size: 16px;
  position: relative;
  padding-left: 16px;
}

.service-right li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3b6f94;
}

hr {
  border: none;
  border-top: 1px solid #d9e2ec;
}
.about-hero {
  background: #f4f7fb;
  padding: 60px 0 30px;
}

.about-subtitle {
  color: #5c6f82;
  max-width: 600px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.about-box {
  background: #0f3c5c;
  color: white;
  padding: 30px;
  border-radius: 12px;
}

.about-box h3 {
  margin-bottom: 15px;
}

.about-box ul {
  list-style: none;
  padding: 0;
}

.about-box li {
  margin-bottom: 10px;
}

.section-light {
  background: #f9fbfd;
}

.countries {
  margin-top: 20px;
}

.countries li {
  margin-bottom: 6px;
}
.faq-hero {
  padding: 70px 0 30px;
  background: linear-gradient(180deg, #f5f7fb 0%, #eef2f7 100%);
}

.faq-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9a7b3f;
}

.faq-hero h1 {
  max-width: 760px;
  font-size: 52px;
  line-height: 1.05;
  color: #102742;
  margin-bottom: 16px;
}

.faq-subtitle {
  max-width: 700px;
  font-size: 18px;
  color: #5c6f82;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.faq-intro-card {
  background: #ffffff;
  border: 1px solid #d8e1ec;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 14px 32px rgba(16, 39, 66, 0.06);
}

.faq-intro-card h2 {
  margin-bottom: 14px;
  color: #102742;
  font-size: 30px;
}

.faq-intro-card p + p {
  margin-top: 14px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-card {
  background: #ffffff;
  border: 1px solid #d8e1ec;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(16, 39, 66, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(16, 39, 66, 0.08);
}

.faq-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.2;
  color: #102742;
}

.faq-card p {
  color: #52657b;
  font-size: 16px;
  line-height: 1.7;
}

.faq-cta-section {
  padding-top: 0;
}

.faq-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  background: linear-gradient(135deg, #102742 0%, #17385d 100%);
  color: #ffffff;
  border-radius: 22px;
  padding: 38px;
  box-shadow: 0 20px 50px rgba(16, 39, 66, 0.16);
}

.faq-cta-box h2 {
  margin-bottom: 10px;
  font-size: 36px;
  line-height: 1.1;
}

.faq-cta-box p {
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 980px) {
  .faq-layout,
  .faq-cta-box {
    grid-template-columns: 1fr;
  }

  .faq-hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .faq-hero {
    padding: 50px 0 20px;
  }

  .faq-hero h1 {
    font-size: 32px;
  }

  .faq-intro-card,
  .faq-card,
  .faq-cta-box {
    padding: 22px;
  }

  .faq-card h3 {
    font-size: 21px;
  }
}
.brand-with-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-full {
  height:150px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1.75rem;
  font-weight: 700;
}

.brand-text small {
  font-size: 0.95rem;
  opacity: 0.9;
}
.brand-image-only {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}
.visa-checker-page {
  padding-bottom: 90px;
  background: linear-gradient(180deg, #f3f6fb 0%, #edf2f8 100%);
}

.visa-hero {
  padding: 40px 0 26px;
}

.visa-hero-card {
  border-radius: 32px;
  padding: 34px;
  background: linear-gradient(135deg, #1987cb 0%, #0b91a4 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(16, 39, 66, 0.18);
}

.visa-hero-grid {
  display: grid;
  grid-template-columns: 180px 1fr 300px;
  gap: 28px;
  align-items: start;
}

.visa-logo-box {
  width: 160px;
  height: 160px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.visa-logo-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.visa-hero-kicker {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.visa-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.visa-hero-content p {
  max-width: 760px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.92);
}

.currency-panel {
  border-radius: 26px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.currency-panel h3 {
  margin-bottom: 12px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.currency-note,
.currency-rate {
  margin-top: 14px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.checker-section {
  padding: 10px 0 80px;
}

.checker-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #d7e0eb;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(16, 39, 66, 0.06);
}

.checker-card + .checker-card {
  margin-top: 24px;
}

.checker-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 10px;
  color: #112542;
}

.checker-card h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
  color: #112542;
}

.checker-card-inner {
  margin-top: 24px;
  background: #fff;
}

.checker-intro {
  margin-bottom: 22px;
  color: #56708f;
  max-width: 860px;
}

.checker-grid {
  display: grid;
  gap: 18px;
}

.checker-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.checker-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checker-field-full {
  grid-column: 1 / -1;
}

.checker-field label {
  font-weight: 700;
  color: #1d3557;
}

.checker-field input,
.checker-select {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid #c7d3e0;
  background: #fff;
  font: inherit;
  color: #152844;
}

.checker-field input:focus,
.checker-select:focus {
  outline: none;
  border-color: #1a86ca;
  box-shadow: 0 0 0 4px rgba(26, 134, 202, 0.1);
}

.euro-preview {
  color: #56708f;
  font-size: 0.92rem;
}

.checker-tabs {
  display: flex;
  gap: 12px;
  margin: 24px 0;
}

.checker-tab {
  border: none;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: #dbe6f4;
  color: #12355b;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.checker-tab.active {
  background: linear-gradient(135deg, #1b87ca 0%, #0f7fc1 100%);
  color: #fff;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.two-panel-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.right-stack {
  display: grid;
  gap: 22px;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #e3f3e7;
  color: #037a47;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.result-main {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #0f2747;
  margin-bottom: 12px;
}

.result-text {
  color: #56708f;
  margin-bottom: 20px;
}

.result-list {
  display: grid;
  gap: 12px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  border-top: 1px dashed #d5dfeb;
}

.result-row span {
  color: #1e3658;
}

.result-row strong {
  color: #0f2747;
}

.talking-point-box {
  padding: 20px;
  border-radius: 20px;
  background: #eaf4ff;
  border: 1px solid #c5dcf7;
  color: #183b63;
  font-size: 1.04rem;
  line-height: 1.6;
}

.fine-note {
  margin-top: 18px;
  color: #6b809b;
  font-size: 0.95rem;
}

.checker-details {
  margin-top: 18px;
  border: 1px solid #d5dfeb;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}

.checker-details summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  color: #12355b;
}

.checker-details-content {
  padding: 0 20px 20px;
  color: #56708f;
}

.checker-action-btn {
  margin-top: 18px;
}

.budget-list {
  display: grid;
  gap: 14px;
}

.budget-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 16px;
  border: 1px solid #d7e0eb;
  border-radius: 20px;
  background: #fff;
}

.budget-row p {
  margin-top: 4px;
  color: #607792;
}

.budget-row strong:last-child {
  font-size: 1.15rem;
  white-space: nowrap;
}

.budget-summary-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.budget-summary-box {
  padding: 20px;
  border-radius: 22px;
  background: #f3f7fd;
  border: 1px solid #d3dfef;
}

.budget-summary-box span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5c7392;
  font-weight: 800;
  margin-bottom: 10px;
}

.budget-summary-box strong {
  display: block;
  font-size: 2.25rem;
  color: #102742;
  margin-bottom: 8px;
}

.budget-summary-box p {
  color: #5c7392;
}

.budget-message {
  margin-top: 18px;
  padding: 20px;
  border-radius: 20px;
  background: #fffdf2;
  border: 1px solid #ecd991;
  color: #3a3a33;
  line-height: 1.6;
}

.save-card {
  margin-top: 24px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid #d7e0eb;
  border-radius: 20px;
  background: #fff;
  margin: 18px 0 20px;
}

.consent-row input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.checker-save-btn {
  min-width: 160px;
}

@media (max-width: 1180px) {
  .visa-hero-grid,
  .two-panel-grid {
    grid-template-columns: 1fr;
  }

  .currency-panel {
    max-width: 360px;
  }
}


.visa-hero-card {
  border-radius: 32px;
  padding: 34px;
  background: linear-gradient(135deg, #0b1f35 0%, #123a5c 55%, #15557d 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(16, 39, 66, 0.22);
}

.visa-hero-grid {
  display: grid;
  grid-template-columns: 240px 1fr 320px;
  gap: 32px;
  align-items: start;
}

.visa-logo-box {
  width: 220px;
  height: 220px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.visa-logo-box img {
  width: 180%;
  max-width: none;
  height: auto;
  object-fit: contain;
}

@media (max-width: 760px) {
  .checker-grid-2,
  .budget-summary-cards {
    grid-template-columns: 1fr;
  }

  .checker-tab {
    width: 100%;
  }

  .checker-tabs {
    flex-direction: column;
  }

  .visa-hero-card {
    background: linear-gradient(135deg, #0b1f35 0%, #123a5c 100%);
    padding: 22px;
  }

  .checker-card {
    padding: 22px;
  }

  .visa-logo-box {
    width: 180px;
    height: 180px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .visa-logo-box img {
    width: 175%;
  }

  .budget-row,
  .result-row,
  .consent-row {
    flex-direction: column;
  }
}