:root {
  --petrol: #0b6f86;
  --navy: #07345d;
  --blue: #11a9c9;
  --gold: #ff8a2a;
  --sand: #eef8f6;
  --paper: #ffffff;
  --soft: #f7f4ed;
  --ink: #111111;
  --muted: #606060;
  --line: #d9d9d9;
  --warning: #ffe7ac;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(7, 59, 76, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Rubik, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.68;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--petrol); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 8px 10px;
  z-index: 20;
}
.skip-link:focus { left: 8px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(7, 59, 76, 0.12);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: Raleway, Rubik, sans-serif;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.brand img {
  width: 154px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 16px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.main-nav a {
  color: #273d46;
  font-size: 15px;
  text-decoration: none;
}

.button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--gold);
  color: #092b46;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
}
.button.secondary {
  background: transparent;
  border-color: rgba(7, 59, 76, 0.25);
  color: var(--petrol);
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  min-height: 72vh;
  display: grid;
  align-items: end;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 52, 93, 0.92), rgba(11, 111, 134, 0.66));
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 96px 0 54px;
}
.eyebrow {
  color: #ffcf9b;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}
h1, h2, h3 {
  font-family: Raleway, Rubik, sans-serif;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 16px;
}
.hero h1 {
  color: white;
  max-width: 920px;
  font-size: clamp(42px, 6vw, 74px);
}
.hero p {
  max-width: 760px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.93);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.section {
  padding: 74px 22px;
}
.section.alt { background: var(--soft); }
.section-headline {
  max-width: 760px;
  margin-bottom: 24px;
}
.eyebrow-on-light {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 8px;
}
.blog-more {
  margin-top: 22px;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
}
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: start;
}
.prose {
  max-width: 820px;
}
.prose h2 { font-size: 34px; margin-top: 40px; }
.prose h3 { font-size: 24px; margin-top: 28px; }
.prose p { margin: 0 0 18px; }
.prose li { margin-bottom: 8px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--paper);
  box-shadow: 0 8px 26px rgba(7, 59, 76, 0.07);
  overflow: hidden;
}
.card img {
  width: calc(100% + 40px);
  max-width: none;
  height: 150px;
  object-fit: cover;
  margin: -20px -20px 16px;
}
.card h3 { font-size: 21px; }
.card p { color: var(--muted); font-size: 15px; }

.info-box,
.warning-box,
.cta-box,
.side-box {
  border-radius: var(--radius);
  padding: 22px;
  margin: 28px 0;
}
.info-box {
  background: #eaf8fb;
  border-left: 5px solid var(--blue);
}
.warning-box {
  background: var(--warning);
  border-left: 5px solid var(--gold);
}
.cta-box {
  background: var(--petrol);
  color: white;
}
.cta-box h2,
.cta-box h3 { color: white; }
.cta-box p { color: rgba(255, 255, 255, 0.88); }

.sidebar {
  position: sticky;
  top: 92px;
}
.side-box {
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}
.side-box ul { padding-left: 18px; }

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 12px;
  background: white;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}

.breadcrumb {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--muted); }

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 48px 22px;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
}
.site-footer a { color: white; }
.small { font-size: 14px; color: var(--muted); }
.site-footer .small { color: rgba(255, 255, 255, 0.65); }

.floating-zypern-banner {
  position: fixed;
  left: calc(50% + 610px);
  top: 150px;
  width: 240px;
  max-height: calc(100vh - 184px);
  z-index: 24;
  display: block;
  border-radius: 8px;
  box-shadow: 0 22px 46px rgba(7, 52, 93, 0.18);
  background: #fff;
  text-decoration: none;
}
.floating-zypern-banner a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
}
.floating-zypern-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 184px);
  object-fit: contain;
}
.floating-zypern-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 52px rgba(7, 52, 93, 0.24);
}
.floating-zypern-close {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(7, 52, 93, 0.22);
}

@media (max-width: 900px) {
  .nav-wrap { align-items: flex-start; flex-direction: column; }
  .main-nav { justify-content: flex-start; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-inner { padding-top: 72px; }
  .brand img { width: 132px; }
}

@media (max-width: 1700px) {
  .floating-zypern-banner { display: none; }
}
