/*-------------
CSS RESET & BASELINE
-------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background: #F3F6FA;
  min-height: 100vh;
  color: #1B2330;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --primary: #18468F;
  --primary-dark: #143d79;
  --secondary: #F3F6FA;
  --secondary-true: #FFFFFF;
  --accent: #C6841C;
  --accent-bright: #E6A324;
  --contrast: #1B2330;
  --gray: #52576A;
  --shadow: 0 4px 20px rgba(24,70,143,0.07), 0 1.5px 6px rgba(24,70,143,0.03);
  --radius-lg: 2rem;
  --radius-md: 1rem;
  --radius-sm: 0.5rem;
}

/*-------------
TYPOGRAPHY
-------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  color: var(--primary);
}
h2 {
  font-size: 2rem;
  color: var(--primary);
}
h3 {
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 600;
}
p, ul, ol {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 12px;
}
a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  transition: color .15s;
}
a:hover, a:focus {
  color: var(--accent);
  text-decoration: underline;
}
strong {
  font-weight: 800;
  color: var(--primary);
}

/* Visual hierarchy */
.cta-btn, .cta-link {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  border-radius: var(--radius-md);
  padding: 14px 32px;
  background: var(--primary);
  color: var(--secondary-true);
  border: none;
  box-shadow: 0 4px 16px rgba(24,70,143,0.10);
  cursor: pointer;
  display: inline-block;
  transition: background 0.26s, color 0.2s, box-shadow 0.22s, transform 0.1s;
  margin-top: 10px;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent);
  color: var(--contrast);
  box-shadow: 0 6px 22px rgba(24,70,143,0.14);
  transform: translateY(-2px) scale(1.03);
}
.cta-link {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--accent);
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  transition: background 0.22s, color 0.18s, border-color 0.18s, transform 0.10s;
}
.cta-link:hover, .cta-link:focus {
  background: var(--accent-bright);
  color: var(--secondary-true);
  border-color: var(--primary);
  transform: scale(1.02);
  text-decoration: none;
}

/*-------------
LAYOUT & CONTAINERS
-------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary-true);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/*-------------
HEADER & NAVIGATION
-------------*/
header {
  background: var(--secondary-true);
  box-shadow: 0 2px 14px rgba(24,70,143,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 80px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand-logo {
  display: flex;
  align-items: center;
  margin-right: 32px;
  height: 48px;
}
.brand-logo img {
  height: 44px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.03em;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: color 0.18s, border-color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
  border-bottom: 3px solid var(--accent);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: var(--primary);
  color: var(--secondary-true);
  border: none;
  border-radius: 0.4em;
  padding: 6px 18px;
  margin-left: 14px;
  cursor: pointer;
  transition: background 0.16s, color 0.12s, box-shadow 0.16s;
  z-index: 60;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px var(--primary) inset;
}

/*-------------
MOBILE MENU
-------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--secondary-true);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 26px 40px 26px;
  transform: translateX(-100vw);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.36s cubic-bezier(0.77,0,0.18,1), opacity 0.28s linear, visibility 0.04s;
  box-shadow: 0 0 42px 8px rgba(24,70,143,.12);
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--primary);
  background: transparent;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 10px;
  padding: 2px 10px;
  border-radius: 4px;
  transition: background 0.12s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent-bright);
  color: var(--secondary-true);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  padding: 15px 8px;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid transparent;
  transition: color 0.18s, background 0.18s, border-color 0.18s;
  border-radius: var(--radius-md);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--primary);
  color: var(--secondary-true);
  border-bottom: 2px solid var(--accent);
  text-decoration: none;
}

@media (max-width: 1020px){
  .main-nav {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
  .container {
    max-width: 95vw;
  }
}

@media (max-width: 768px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    min-height: 60px;
    padding-top: 9px;
    padding-bottom: 9px;
  }
}

/*-------------
FOOTER
-------------*/
footer {
  background: var(--primary);
  padding: 56px 0 32px 0;
  color: var(--secondary-true);
  margin-top: 54px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.footer-nav a, .footer-legal a {
  color: var(--secondary-true);
  text-decoration: underline dotted; /* bold look */
  font-weight: 600;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-legal a:hover, .footer-nav a:focus, .footer-legal a:focus {
  color: var(--accent);
}
.brand-info {
  font-size: 0.95rem;
  color: #bdcfff;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/*-------------
SECTION & LAYOUT PRESETS
-------------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary-true);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.card-container, .features-grid, .testimonials-preview, .testimonials-list, .services-preview,
.guides-list, .services-list, .benefits-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 8px;
  width: 100%;
  align-items: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section, .contact-section, .about-section, .errors-section, .usp-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--secondary);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(24,70,143,0.08);
  border-left: 6px solid var(--accent);
  margin-bottom: 20px;
  max-width: 450px;
  min-width: 244px;
}
.feature-item, .service-card, .benefit-card, .guide-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--secondary-true);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  min-width: 230px;
  flex: 1 1 210px;
  padding: 28px 24px 18px 24px;
  margin-bottom: 20px;
  border: 2px solid var(--secondary);
  transition: box-shadow 0.19s, border 0.18s, transform 0.12s;
}
.feature-item img {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 50%;
  padding: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 4px 0 rgba(24,70,143,0.09);
}
.feature-item:hover, .service-card:hover, .benefit-card:hover, .guide-card:hover {
  box-shadow: 0 10px 28px -2px rgba(24,70,143,0.13);
  border: 2px solid var(--accent);
  transform: translateY(-2px) scale(1.02);
}
.service-card .service-price,
.guide-card .guide-category {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 4px;
}
.guide-highlight {
  background: var(--accent-bright);
  color: var(--secondary-true);
  padding: 34px 36px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(198,132,28,0.09);
  margin-bottom: 20px;
}
.guides-list {
  gap: 24px;
}
.guide-card {
  background: #FFFBF2;
  border-left: 6px solid var(--primary);
}
.about-section, .cta-section, .errors-section, .rules-section, .privacy-policy-section, .cookies-section, .rodo-section {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 8px;
}

/***** Responsive Section Layouts *****/
@media (max-width: 1020px) {
  .features-grid, .testimonials-preview, .testimonials-list, .services-preview,
  .guides-list, .services-list, .benefits-grid, .content-grid {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .section {
    padding: 32px 10px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    margin-bottom: 36px;
    padding: 21px 6px;
    border-radius: var(--radius-md);
  }
  .content-wrapper, .about-section, .usp-section, .errors-section, .rules-section, .privacy-policy-section, .cookies-section, .rodo-section {
    flex-direction: column !important;
    gap: 10px;
    width: 100%;
    align-items: flex-start;
  }
  .content-grid, .text-image-section, .contact-section, .about-section {
    flex-direction: column;
    gap: 18px;
  }
  .features-grid, .testimonials-preview, .services-preview, .guides-list, .services-list, .benefits-grid {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card, .service-card, .feature-item, .benefit-card, .guide-card {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
    padding: 18px 14px 15px 14px;
  }
  .brand-logo img {
    height: 34px;
  }
  .guide-highlight {
    padding: 16px 5px;
  }
}

/*****
--- HERO STYLES
*****/
.guide-hero, .thank-you-section, .contact-cta, .cta-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--primary);
  color: var(--secondary-true);
  padding: 38px 36px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 18px 1px rgba(24,70,143,0.13);
  margin-bottom: 30px;
}
.guide-hero h1, .thank-you-section h1, .contact-cta h2, .cta-section h2 {
  color: var(--secondary-true);
  margin-bottom: 12px;
}
.guide-hero p, .thank-you-section p, .contact-cta p, .cta-section p {
  color: #e0e9fa;
  font-size: 1.1rem;
}
@media (max-width: 600px) {
  .guide-hero, .thank-you-section, .contact-cta, .cta-section, .guide-highlight {
    border-radius: var(--radius-md);
    padding: 12px 4px;
  }
}

/*****
---- TABLES, LISTS & MISC
*****/
ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
ul li, ol li {
  margin-bottom: 6px;
  font-size: 1rem;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}
th, td {
  border: 1px solid #d9e1f2;
  padding: 12px 8px;
  text-align: left;
}

/*****
---- FORMS & FILTERS
*****/
.search-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 10px;
}
.search-filter label {
  font-weight: 700;
  color: var(--primary);
  margin-right: 5px;
}
.search-filter select {
  font-size: 1rem;
  padding: 7px 12px;
  border-radius: 7px;
  border: 1.5px solid var(--primary);
  outline: none;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  background: var(--secondary-true);
  font-weight: 700;
  transition: border-color 0.19s;
}
.search-filter select:focus {
  border-color: var(--accent);
}

/*****
---- TESTIMONIALS & RATINGS
*****/
.testimonials-list, .testimonials-preview {
  gap: 24px;
}
.testimonial-card {
  min-height: 120px;
  background: var(--secondary);
  color: var(--primary);
  border-left: 6px solid var(--accent);
  box-shadow: 0 2px 8px rgba(24,70,143,0.08);
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
}
.testimonial-card strong {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
  margin-top: 0;
}
.testimonial-card .rating {
  color: var(--primary);
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.rating-summary {
  background: var(--primary);
  color: var(--secondary-true);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  margin-top: 28px;
  box-shadow: 0 3px 12px -2px rgba(24,70,143,.09);
  font-weight: 700;
}
.rating-summary h2 {
  font-size: 1.5rem;
  color: var(--secondary-true);
  display: flex;
  align-items: center;
  gap: 10px;
}
.rating-summary span {
  color: var(--accent);
}
.rating-summary p {
  color: #d1e1f3;
  font-size: 1rem;
}

/*****
---- TIPS/CALLOUTS/WARNINGS
*****/
.tips-callout {
  background: #FFFBF2;
  border-left: 6px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  margin-top: 18px;
  margin-bottom: 12px;
  font-size: 1.07rem;
  box-shadow: 0 2px 7px 0 rgba(198,132,28,0.06);
}
.tips-callout h3 {
  margin-bottom: 9px;
}

/*****
---- BUTTONS & MICRO-INTERACTIONS
*****/
button, .cta-btn, .cta-link, .search-filter select {
  outline: none;
}
button:active, .cta-btn:active, .cta-link:active, .mobile-nav a:active {
  transform: scale(0.98);
}

::-webkit-input-placeholder { color: var(--gray); }
::-moz-placeholder { color: var(--gray); }
:-ms-input-placeholder { color: var(--gray); }
::placeholder { color: var(--gray); }

/* Focus highlights */
a:focus, button:focus, .cta-btn:focus, .cta-link:focus, select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/*****
-- COOKIE CONSENT BANNER
*****/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--secondary-true);
  z-index: 9999;
  padding: 32px 30px 20px 30px;
  box-shadow: 0 -2px 16px 2px rgba(24,70,143,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  animation: fadeinCookie 0.5s;
}
@keyframes fadeinCookie {
  0%{transform: translateY(100%); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  font-size: 1.03rem;
  color: #e9eeff;
  margin: 0 15px 0 0;
  flex: 1 1 220px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  padding: 11px 23px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
  background: var(--accent-bright);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.18s, transform 0.09s, color 0.14s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--secondary-true);
  color: var(--accent);
  outline: none;
}
.cookie-settings-btn {
  padding: 11px 19px;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--secondary-true);
  border: 2px solid var(--accent-bright);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s, color 0.18s;
}
.cookie-settings-btn:focus, .cookie-settings-btn:hover {
  background: var(--accent-bright);
  color: var(--primary);
}

/*****
COOKIE MODAL
*****/
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: var(--secondary-true);
  color: var(--primary);
  z-index: 10010;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px 8px rgba(24,70,143,0.23);
  padding: 42px 36px 32px 36px;
  min-width: 340px;
  max-width: 95vw;
  max-height: 98vh;
  overflow-y: auto;
  opacity: 1;
  animation: modalIn .41s cubic-bezier(0.79,0,.18,1);
}
@keyframes modalIn {
  from {opacity: 0; transform: translate(-50%, 40%) scale(0.95);}
  to   {opacity: 1; transform: translate(-50%, -50%) scale(1);}
}
.cookie-modal h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
  font-size: 1.09rem;
  font-weight: 700;
}
.cookie-category input[type="checkbox"] {
  width: 21px;
  height: 21px;
  margin-right: 7px;
  accent-color: var(--accent);
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: var(--primary);
}
.cookie-category.essential {
  color: var(--primary);
  font-weight: 800;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 26px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  background: var(--accent);
  color: var(--secondary-true);
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: var(--primary);
  color: var(--accent);
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 23px;
  font-size: 1.6rem;
  background: transparent;
  color: var(--accent);
  border: none;
  cursor: pointer;
  border-radius: 4px;
  padding: 4px 8px;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: var(--accent-bright);
  color: var(--secondary-true);
  outline: none;
}

/* Overlay for modal */
.cookie-modal-overlay {
  content: '';
  display: block;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 46, 112, 0.25);
  z-index: 10000;
  animation: fadeinCookie 0.3s;
}

/*****
---- UTILITIES
*****/
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.text-center { text-align: center !important; }
.flex-center { justify-content: center !important; align-items: center !important; }

/*****
-- DARK MODE PREVIEW (for testimonials)
*****/
@media (prefers-color-scheme: dark) {
  body {
    background: #212b41;
    color: #f7fafc;
  }
  .section, .feature-item, .service-card, .benefit-card, .about-section,
  .guide-card, .guide-highlight, .contact-cta, .tips-callout, .testimonial-card {
    background: #222c42 !important;
    color: #e0e9fe !important;
  }
  .testimonial-card p, .testimonial-card strong { color: #f8dcaa !important; }
  .testimonial-card .rating { color: var(--accent-bright) !important; }
  .rating-summary { background: #202846; color: var(--accent-bright); }
}

/* Emphasize geometric feel with bold separators */
hr {
  border: none;
  border-top: 5px solid var(--primary);
  margin: 32px 0;
  border-radius: 7px;
  width: 56px;
}

/*-------------
FONTS
-------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600;700&display=swap');

/*-------------
END
-------------*/
