/* === CSS RESET & NORMALIZATION === */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background-color: #1a2233;
  color: #f2f2f2;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
main, section, header, footer, nav, aside, ul, ol {
  display: block;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  color: #f8b500;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #fff;
}
hr {
  border: none;
  border-top: 1px solid #30415d;
  margin: 32px 0;
}

/* === BRAND FONTS === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', 'Roboto', Arial, Helvetica, sans-serif;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 { font-size: 2.8rem; letter-spacing: 0.01em; }
h2 { font-size: 2.1rem; letter-spacing: 0.01em; margin-bottom: 12px; }
h3 { font-size: 1.3rem; margin-bottom: 8px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
strong, b { font-weight: bold; color: #f8b500; }

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: transparent;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #223152;
  border-radius: 20px;
  box-shadow: 0 4px 16px 0 rgba(10,30,48,.15);
  position: relative;
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.18s;
  min-width: 260px;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(112,202,255,0.18);
  transform: translateY(-4px) scale(1.015);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #f2f2f2;
  color: #222b3a;
  padding: 20px 28px;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(42,66,106,.13);
  margin-bottom: 28px;
  border-left: 6px solid #f8b500;
  transition: box-shadow 0.16s, transform 0.17s;
}
.testimonial-card strong {
  color: #26547c;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 2px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(247,185,0,0.13);
  transform: scale(1.01);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === FLEXBOX GRIDS (for pseudo grids) === */
.feature-grid, .tips-grid, .expert-advice {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid li,
.tips-grid li {
  background: #202e4c;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(38,84,124,0.11);
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 350px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.16s, transform 0.14s;
  border-left: 4px solid #f8b50066;
}
.feature-grid li:hover {
  box-shadow: 0 6px 18px 0 rgba(248,181,0,.15), 0 0 8px #05eaff44;
  border-left: 4px solid #05eaff;
  transform: translateY(-2px) scale(1.018);
}
.tips-grid li {
  border-left: 4px solid #05eaff;
}
.expert-advice li {
  background: #202e4c;
  color: #f2f2f2;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 10px;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(145deg, #202e4c 60%, #2d74da 148%);
  min-height: 360px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}
.hero h1 {
  font-size: 2.3rem;
  color: #fff;
  text-shadow: 0 2px 24px #05eaff33;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.15rem;
  color: #dbeefa;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .hero h1 { font-size: 2.8rem; }
  .hero p { font-size: 1.25rem; }
}

/* === BUTTONS === */
.button-primary,
.button-secondary {
  border: none;
  outline: none;
  display: inline-block;
  padding: 12px 34px;
  font-family: 'Nunito', 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 28px;
  box-shadow: 0 2px 18px 0 #05eaff22;
  transition: background 0.19s, color 0.16s, box-shadow 0.16s, transform 0.13s;
  cursor: pointer;
  position: relative;
  margin-top: 8px;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.button-primary {
  background: #26547c;
  color: #fff;
  border: 2px solid #05eaff;
  box-shadow: 0 0 8px #05eaff47;
}
.button-primary:hover,
.button-primary:focus {
  background: #05eaff;
  color: #223152;
  box-shadow: 0 2px 20px 0 #05eaffaa;
  transform: translateY(-2px) scale(1.04);
}
.button-secondary {
  background: #fff;
  color: #26547c;
  border: 2px solid #f8b500;
  box-shadow: 0 0 4px #f8b50033;
}
.button-secondary:hover,
.button-secondary:focus {
  background: #f8b500;
  color: #fff;
  box-shadow: 0 4px 16px #f8b50055;
}

/* Generic Buttons (for cookie/modal) */
.button-consent,
.button-settings,
.button-reject {
  min-width: 120px;
  padding: 10px 16px;
  border-radius: 22px;
  font-family: 'Nunito', 'Roboto', sans-serif;
  font-size: 1rem;
  margin-right: 14px;
  border: none;
  outline: none;
  color: #fff;
  background: #26547c;
  transition: background 0.16s, color 0.14s, box-shadow 0.16s;
  cursor: pointer;
}
.button-consent {
  background: #05eaff;
  color: #223152;
}
.button-consent:hover,
.button-consent:focus {
  background: #13b2e9;
  color: #fff;
}
.button-reject {
  background: #f01460;
}
.button-reject:hover,
.button-reject:focus {
  background: #8d112b;
}
.button-settings {
  background: #26547c;
}
.button-settings:hover,
.button-settings:focus {
  background: #142336;
}

/* === HEADER/NAVIGATION === */
header {
  background: #202e4c;
  border-bottom: 2px solid #05eaff11;
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  gap: 0;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #f2f2f2;
  padding: 8px 10px;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.13s, color 0.17s;
}
header nav a:hover,
header nav a.active {
  background: #05eaff;
  color: #223152;
}
header a.button-primary { margin-left: 24px; }

/* Hamburger Button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #05eaff;
  color: #223152;
  width: 40px; height: 40px;
  border: none;
  border-radius: 10px;
  font-size: 2rem;
  box-shadow: 0 1px 6px #05eaff33;
  margin-left: 18px;
  transition: background .17s;
  cursor: pointer;
  z-index: 105;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #13b2e9;
  color: #fff;
}

/* Hide nav on mobile, show on desktop */
@media (max-width: 1024px) {
  header nav,
  header a.button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #202e4c;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 28px;
  padding-left: 0;
  padding-right: 0;
  visibility: hidden;
  transform: translateX(-102vw);
  opacity: 0;
  transition: transform .36s cubic-bezier(.83,-0.01,.19,1.01), opacity 0.22s;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 18px;
  font-size: 2.2rem;
  background: transparent;
  color: #13b2e9;
  border: none;
  cursor: pointer;
  z-index: 210;
  transition: color .16s;
  padding: 6px 14px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 90vw;
  gap: 10px;
  margin-top: 76px;
  padding-left: 24px;
}
.mobile-nav a {
  font-family: 'Nunito', 'Roboto', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f2f2f2;
  padding: 14px 6px 14px 8px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: background .17s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #05eaff;
  color: #202e4c;
}

/* === SECTIONS / LAYOUT === */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
@media (max-width: 768px) {
  section {
    padding: 24px 0 0 0;
    margin-bottom: 36px;
  }
}

.features, .services, .cta, .text-section, .tips-grid {
  width: 100%;
}
.features .content-wrapper,
.cta .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.services .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}

@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .content-wrapper { gap: 18px; }
  .feature-grid, .tips-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card { margin-bottom: 20px; padding: 16px 10px; }
  .card { padding: 18px 10px; }
  .feature-grid li, .tips-grid li {
    padding: 22px 11px;
    min-width: unset;
    max-width: unset;
  }
  .hero { padding: 30px 0;
    min-height: 220px;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quick-contacts {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 26px;
}
.quick-contacts li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
address {
  font-style: normal;
  color: #c5e0f7;
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.opening-hours {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #b6c7db;
  font-size: .98rem;
}

/* === PRICING TABLE === */
.pricing-table {
  width: 100%;
  background: #223152;
  border-radius: 16px;
  box-shadow: 0 1px 9px #2d74da13;
  margin-bottom: 22px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.pricing-table tr {
  border-bottom: 1px solid #2d74da33;
}
.pricing-table th {
  background: #202e4c;
  color: #05eaff;
  font-size: 1.11rem;
  text-align: left;
  padding: 14px 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.pricing-table td {
  color: #f8b500;
  background: none;
  padding: 14px 12px;
  vertical-align: top;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .pricing-table th, .pricing-table td { font-size: 0.97rem; padding: 7px 5px; }
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  min-width: 300px;
  max-width: 96vw;
  background: #202e4c;
  color: #f2f2f2;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 #05eaff44;
  padding: 22px 28px;
  font-size: 1.05rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s cubic-bezier(.92,.25,.26,.95);
}
.cookie-consent-banner.visible {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 650px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 14px;
    padding: 16px 10px;
    left: 2vw;
    right: 2vw;
    max-width: unset;
    transform: unset;
  }
}

.cookie-consent-banner button { margin-bottom: 0; }

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(19, 34, 56, 0.78);
  justify-content: center;
  align-items: center;
  transition: background 0.23s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #202e4c;
  color: #f2f2f2;
  border-radius: 20px;
  box-shadow: 0 6px 36px #05eaff66;
  padding: 34px 28px 28px 28px;
  width: 95vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-in .33s cubic-bezier(.67,-0.07,.23,1.13);
}
@keyframes modal-in {
  from { transform: scale(.89) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: #05eaff;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.cookie-category label {
  color: #f2f2f2;
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  accent-color: #05eaff;
  width: 20px;
  height: 20px;
}
.cookie-category .cookie-essential {
  color: #f8b500;
  font-weight: bold;
}
.cookie-modal .button-consent,
.cookie-modal .button-reject {
  margin-right: 0;
  margin-bottom: 0;
  width: 100%;
  margin-top: 12px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 8px; right: 22px;
  background: transparent;
  border: none;
  color: #05eaff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color .14s;
  z-index: 10;
}
.cookie-modal .modal-close:hover {
  color: #fff;
}

/* === FOOTER === */
footer {
  background: #202e4c;
  color: #b6c7db;
  padding: 38px 0 20px 0;
}
.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}
.footer-top nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.footer-top nav a {
  color: #b6c7db;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background .14s, color .16s;
}
.footer-top nav a:hover,
.footer-top nav a:focus {
  background: #05eaff;
  color: #202e4c;
}
.footer-bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 26px;
  margin-bottom: 18px;
  margin-top: 10px;
}
.footer-bottom address,
.footer-bottom .opening-hours {
  font-size: 1rem;
}
.footer-legal {
  font-size: 0.98rem;
  text-align: center;
  margin-top: 16px;
  color: #768cb3;
}
@media (max-width: 900px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-top nav {
    gap: 8px;
  }
}
@media (max-width: 600px) {
  footer { padding: 22px 0 10px 0; }
}

/* === FORM elements (if present) === */
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #223152;
  background: #f2f2f2;
  border: 2px solid #c7e6f8;
  border-radius: 8px;
  padding: 11px 12px;
  margin-bottom: 18px;
  outline: none;
  width: 100%;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #05eaff;
}
label {
  font-weight: 600;
  color: #05eaff;
  font-size: 1.03rem;
  margin-bottom: 5px;
  display: block;
}

/* === FAQ + DEFINITION LIST === */
dt {
  font-size: 1.18rem;
  font-family: 'Nunito', 'Roboto', sans-serif;
  color: #05eaff;
  font-weight: 700;
  margin-bottom: 6px;
}
dd {
  margin-left: 0;
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: #f2f2f2;
}

/* === ANIMATIONS AND MICRO-INTERACTIONS === */
a, .button-primary, .button-secondary, .testimonial-card, .card, .feature-grid li, .tips-grid li {
  transition: background 0.18s, color 0.16s, box-shadow 0.16s, transform 0.13s;
}
img, svg { transition: filter .16s; }
.card:hover img, .feature-grid li:hover img, .tips-grid li:hover img { filter: brightness(1.16) drop-shadow(0 0 7px #05eaff66); }

/* === VISUAL HIERARCHY & UI GLOW === */
.hero h1, .cta h2, .feature-grid li h3 {
  text-shadow: 0 0 18px #05eaff33, 0 2px 12px #202e4c44;
}
.cta {
  background: linear-gradient(90deg, #26547c 70%, #05eaff 120%);
  border-radius: 18px;
  padding: 40px 0 40px 0;
  color: #fff;
  box-shadow: 0 2px 26px #05eaff22;
}
.cta .button-primary { margin-top: 18px; font-size: 1.18rem; }
.cta p { margin-bottom: 14px; font-size: 1.12rem; color: #dbeefa; }
@media (max-width: 900px) {
  .cta { margin-bottom: 32px; padding: 24px 0; }
}

/* === CUSTOM SCROLLBAR (optional for desktop) === */
@media (min-width: 900px) {
  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-thumb {
    background: #223152;
    border-radius: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #18233b;
  }
}

/* === NOTICES, ALERTS, HINTS === */
.alert, .notice {
  padding: 15px 20px;
  background: #fffbe5;
  color: #8d112b;
  border-left: 6px solid #f01460;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 1rem;
}

/* === UTILITIES === */
.mt-0 { margin-top: 0 !important; }
.mt-32 { margin-top: 32px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-24 { margin-bottom: 24px !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.flex-row { display: flex; flex-direction: row; align-items: center; }
.flex-col { display: flex; flex-direction: column; }
.gap-24 { gap: 24px; }

/* === ACCESSIBILITY === */
:focus { outline: 2px solid #05eaff; outline-offset: 3px; }

/* Ensure clickable size on mobile nav/buttons */
.mobile-nav a, .mobile-menu-close, .mobile-menu-toggle, .button-primary, .button-secondary {
  min-height: 44px;
}

/* === ENSURE NO OVERLAP/PADDING FOR OUTER LAYOUT === */
body > header, body > main, body > footer {
  margin-bottom: 0;
}

/* === END OF CSS === */