/* ====================== CSS RESET and NORMALIZE ======================= */
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FAFAFA;
  color: #1F2D3D;
  font-family: "Georgia", 'Times New Roman', Times, serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #215174;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #26753d;
  text-decoration: underline;
}
ul, ol {
  padding-left: 2em;
  margin-bottom: 1.5em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font: inherit;
}
h1, h2, h3, h4, h5, h6 {
  color: #215174;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; } 
p, li, span, label {
  font-family: 'Open Sans', Georgia, serif;
  font-size: 1rem;
  color: #353535;
}
strong, b { color: #215174; font-weight: bold; }
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
}
::-webkit-input-placeholder { color: #ADB6C2; }
::-moz-placeholder { color: #ADB6C2; }
:-ms-input-placeholder { color: #ADB6C2; }
::placeholder { color: #ADB6C2; }

/* ==================== LAYOUT CONTAINERS ==================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(33, 81, 116, 0.07);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 10px;
    margin-bottom: 34px;
  }
  .container {
    padding: 0 8px;
  }
}

/* ==================== HEADER & NAVIGATION ==================== */
header {
  background: #E9F0F8;
  border-bottom: 1px solid #d5dde7;
  box-shadow: 0 2px 10px rgba(33, 81, 116, 0.04);
  position: sticky;
  top: 0;
  z-index: 50;
}
header > .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 20px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
header nav a {
  color: #215174;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #31A35411;
  color: #26753d;
}
.cta-btn {
  background: #31A354;
  color: #fff;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 10px 36px;
  border-radius: 32px;
  border: none;
  box-shadow: 0 2px 18px rgba(49,163,84,0.09);
  cursor: pointer;
  transition: background .18s, transform .18s, box-shadow .18s;
  text-align: center;
  outline: none;
  letter-spacing: .02em;
  margin-left: 12px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #26753d;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 20px rgba(49,163,84,0.16);
}
header img {
  height: 42px;
}

/* ==================== MOBILE BURGER MENU ==================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #215174;
  cursor: pointer;
  z-index: 120;
  margin-left: 10px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #26753d;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(33,81,116,0.96);
  z-index: 1200;
  transform: translateX(130%);
  transition: transform 0.4s cubic-bezier(.72,0,.55,1.16);
  box-shadow: -4px 0 20px rgba(33,81,116,0.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 30px 10px 0;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: color 0.22s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #31A354;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0 0 38px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.34rem;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 500;
  line-height: 1.65;
  padding: 8px 3px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
  margin-bottom: 7px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #31A354;
  color: #eaf8ef;
}
@media (max-width: 990px) {
  header > .container nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ================ HERO SECTIONS ================ */
.hero {
  background: #E9F0F8;
  padding: 56px 0 40px 0;
  border-bottom: 1px solid #D7E4F2;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
.hero h1 {
  color: #215174;
  font-size: 2.6rem;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.hero p {
  font-size: 1.15rem;
  max-width: 680px;
  color: #364047;
  margin-bottom: 14px;
}
.hero .cta-btn {
  margin-top: 4px;
}
@media (max-width: 600px) {
  .hero {
    padding: 28px 0 24px 0;
  }
  .hero .container {
    padding: 0 5px;
  }
  .hero h1 { font-size: 1.32rem; }
}

/* ================ CARD CONTAINERS & CARDS ================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid #E6E7E9;
  border-radius: 11px;
  box-shadow: 0 3px 11px rgba(33,81,116,0.10);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .20s, transform .18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 13px 30px rgba(33,81,116,0.15);
  transform: translateY(-2px) scale(1.015);
  z-index: 1;
}

/* =================== FLEX LAYOUTS ENFORCED =================== */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* =================== FEATURES & VALUE CARDS =================== */
.feature-grid, .core-values {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.feature-item, .value-item {
  background: #fff;
  border: 1px solid #E9F0F8;
  border-radius: 12px;
  padding: 32px 22px 24px 22px;
  box-shadow: 0 2px 10px rgba(33,81,116,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 220px;
  min-width: 210px;
  transition: box-shadow .18s, transform .18s;
}
.feature-item img, .value-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 9px;
}
.feature-item h3, .value-item h3 {
  font-size: 1.1rem;
  color: #215174;
}
.feature-item:hover, .value-item:hover {
  box-shadow: 0 7px 24px rgba(33,81,116,0.14);
  transform: translateY(-1.5px) scale(1.027);
}
@media (max-width: 900px) {
  .feature-grid, .core-values {
    gap: 18px;
    flex-wrap: wrap;
  }
}
@media (max-width: 590px) {
  .feature-grid, .core-values {
    flex-direction: column;
    gap: 14px;
  }
  .feature-item, .value-item {
    width: 100%;
    min-width: 0;
    padding: 19px 10px 12px 10px;
  }
}

/* =================== COMPARISON & DATA TABLES =================== */
.comparison-table {
  width: 100%;
  overflow-x: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(33, 81,116, 0.07);
  margin-bottom: 18px;
}
.comparison-table table, table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}
.comparison-table th, table th {
  background: #215174;
  color: #fff;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 600;
  text-align: left;
  padding: 14px 16px;
  border-radius: 3px 3px 0 0;
  font-size: 1rem;
  border-bottom: 0;
}
.comparison-table td, table td {
  padding: 13px 16px;
  background: #F8FBFD;
  color: #23374C;
  font-size: 1rem;
  border-bottom: 1px solid #E9F0F8;
}
.comparison-table tr:last-child td, table tr:last-child td {
  border-bottom: none;
}
table tbody tr {
  transition: background .14s;
}
table tbody tr:hover {
  background: #E9F0F8;
}
@media (max-width: 640px) {
  .comparison-table, table {
    font-size: 0.98rem;
  }
  .comparison-table th, .comparison-table td, table th, table td {
    padding: 8px 7px;
    font-size: 0.97rem;
  }
}

/* =================== TESTIMONIALS & REVIEWS CARDS =================== */
.testimonials {
  background: #FFF;
  border-radius: 14px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 24px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(33,81,116,0.13);
  background: #f6f9fb;
  border-left: 4px solid #31A354;
  font-size: 1.13rem;
  color: #1f2d3d;
  max-width: 700px;
  position: relative;
  transition: box-shadow .22s;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 7px 36px rgba(49,163,84,0.17);
}
.testimonial-name {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  color: #215174;
  margin-left: 10px;
  font-style: italic;
  font-weight: 500;
}
@media (max-width: 800px) {
  .testimonial-card {
    flex-direction: column;
    gap: 6px;
    padding: 17px 11px;
  }
}

/* =================== REVIEW & GUIDE LISTS =================== */
.review-list, .guide-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.review-item, .guide-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(33,81,116,0.07);
  border: 1px solid #E9F0F8;
  padding: 24px 18px 18px 18px;
  flex: 1 1 300px;
  min-width: 260px;
  margin-bottom: 20px;
  transition: box-shadow .15s, transform .14s;
  position: relative;
}
.review-item h3, .guide-item h3 {
  font-family: 'Montserrat', serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #215174;
}
.review-item:hover, .guide-item:hover {
  box-shadow: 0 7px 24px rgba(33,81,116,0.14);
  transform: translateY(-1.5px) scale(1.023);
}
@media (max-width: 700px) {
  .review-list, .guide-list {
    flex-direction: column;
    gap: 16px;
  }
  .review-item, .guide-item {
    width: 100%;
    min-width: 0;
    padding: 13px 6px 12px 7px;
  }
}

/* ============== CTA & CONFIRMATION SECTIONS ============== */
.cta {
  background: #215174;
  color: #fff;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 38px 0;
}
.cta .content-wrapper {
  align-items: center;
  gap: 12px;
}
.cta h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 7px;
}
.cta p {
  color: #E9F0F8;
  font-size: 1.15rem;
}
.cta .cta-btn {
  margin-top: 8px;
  background: #31A354;
  color: #E9F0F8;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #26753d;
  color: #fff;
}
.confirmation .content-wrapper {
  align-items: center;
  gap: 12px;
}
.confirmation h1 {
  font-size: 2.4rem;
  color: #215174;
}
.confirmation p {
  font-size: 1.07rem;
  color: #215174;
}

/* ============== ABOUT, MISSION, VALUES (Om oss) ============== */
.about-story, .mission-vision, .team-overview {
  margin-bottom: 22px;
}
.core-values {
  margin-top: 14px;
  margin-bottom: 20px;
}

/* ============== FAQ LAYOUTS ============== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item h3 {
  font-size: 1.1rem;
  font-family: 'Montserrat', serif;
  font-weight: 700;
  margin-bottom: 8px;
  color: #215174;
}
.faq-search {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-search input[type=text] {
  padding: 7px 14px;
  border-radius: 7px;
  border: 1px solid #C0C7D1;
  font-size: 1rem;
  background: #F7F9FB;
  color: #215174;
  outline: none;
  transition: border .16s;
}
.faq-search input[type=text]:focus {
  border: 1.5px solid #215174;
}

/* ============== FOOTER ============== */
footer {
  background: #215174;
  color: #DFE8EF;
  padding: 38px 0 18px 0;
  border-top: 6px solid #31A35411;
  font-size: 0.99rem;
  margin-top: 50px;
}
footer span {
  color: white !important;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 34px;
}
.footer-brand {
  margin-right: 20px;
}
.footer-brand img {
  height: 36px;
  filter: brightness(110%) contrast(1.09);
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-right: 16px;
}
.footer-navigation a {
  color: #e6f4ff;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  transition: color .16s;
  margin-bottom: 3px;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #31A354;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #ced9e5;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-contact img {
  width: 17px;
  height: 17px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  filter: grayscale(0.2) brightness(1.06);
}
.footer-legal {
  margin-top: 20px;
  font-family: 'Open Sans', Georgia, serif;
  font-size: 0.97rem;
  color: #E9F0F8;
  width: 100%;
  text-align: center;
}
@media (max-width: 990px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-brand { margin-bottom: 6px; }
  .footer-legal { margin-bottom: 6px; }
}

/* ============== COOKIE CONSENT BANNER ============== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  color: #215174;
  box-shadow: 0 -2px 22px rgba(33,81,116,0.13);
  border-top: 2px solid #31A35422;
  z-index: 2500;
  padding: 18px 6vw 16px 6vw;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
  transition: opacity .38s, transform .32s;
  font-size: 1rem;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-text {
  flex: 1 1 auto;
  font-size: 1.01rem;
  color: #1F2D3D;
}
.cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-cookie {
  font-family: 'Montserrat', serif;
  font-weight: 700;
  border-radius: 20px;
  font-size: 1rem;
  padding: 8px 26px;
  margin-left: 2px;
  border: none;
  cursor: pointer;
  background: #E9F0F8;
  color: #215174;
  box-shadow: 0 1px 6px rgba(49,163,84,0.08);
  transition: background .15s, color .15s;
}
.btn-cookie.accept {
  background: #31A354;
  color: #fff;
}
.btn-cookie.reject {
  background: #B5B8BA;
  color: #fff;
}
.btn-cookie.accept:hover, .btn-cookie.accept:focus {
  background: #26753d;
}
.btn-cookie.reject:hover, .btn-cookie.reject:focus {
  background: #9CA3AF;
}
.btn-cookie.settings {
  background: none;
  color: #215174;
  border: 1.5px solid #215174;
}
.btn-cookie.settings:hover, .btn-cookie.settings:focus {
  background: #e7f7ec;
  color: #26753d;
}
@media (max-width: 580px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 13px 2vw 14px 2vw;
    gap: 10px;
    font-size: 0.99rem;
  }
}

/* ============== COOKIE PREFERENCES MODAL ============== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(33,81,116,0.43);
  z-index: 3000;
  opacity: 0; pointer-events: none;
  transition: opacity .26s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  padding: 34px 32px 28px 32px;
  border-radius: 18px;
  box-shadow: 0 8px 34px rgba(33,81,116,0.21);
  width: 100%;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  font-size: 1.04rem;
  animation: modalIn .35s cubic-bezier(.25,.8,.25,1);
}
@keyframes modalIn {
  0% { opacity: 0; transform: translateY(60px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: #215174;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
  padding-bottom: 4px;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none; width: 34px; height: 20px;
  background: #B5B8BA;
  position: relative;
  outline: none; border-radius: 12px; border: none;
  transition: background .18s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #31A354;
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px; left: 2px;
  transition: left 0.18s;
}
.cookie-toggle:checked::before {
  left: 16px;
}
.cookie-modal .essential-label {
  color: #26753d; font-weight: 700;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #215174;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #31A354;
}
.cookie-modal .cookie-actions {
  margin-top: 7px;
}
@media (max-width: 450px) {
  .cookie-modal {
    padding: 13px 6px 13px 6px;
    max-width: 96vw;
  }
}

/* ============== MISCELLANEOUS & GLOBAL UTILS ============== */
section, main > section {
  margin-bottom: 60px;
  padding: 0;
  border: none;
  background: none;
}
ul, ol {
  margin-bottom: 18px;
}
input, textarea, select {
  background: #f7fafc;
  border: 1px solid #cddbe7;
  border-radius: 5px;
  padding: 7px 9px;
  font-size: 1rem;
  color: #215174;
  margin-bottom: 6px;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #215174;
  outline: none;
}
::-webkit-scrollbar {
  width: 9px; background: #f4f7fa;
}
::-webkit-scrollbar-thumb {
  background: #dbe7f2;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #bad0e2;
}

/* Typography utility */
.muted {
  color: #7e8b99;
  font-size: .99em;
  font-style: italic;
}
.text-success {
  color: #31A354;
}
.text-danger {
  color: #ba2525;
}

/* ========================== RESPONSIVE ADJUSTMENTS ========================== */
@media (max-width: 768px) {
  section, main > section {
    margin-bottom: 38px;
    padding: 0;
  }
  .cta, .testimonials {
    padding: 18px 0 19px 0;
  }
}
@media (max-width: 480px) {
  .cta h2 { font-size: 1.11rem; margin-bottom: 4px; }
  .cta .cta-btn {
    font-size: 0.94rem;
    padding: 8px 13px;
  }
}

/**************** FLEXBOX SPACING ==============================*/
.card-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 22px; }
.features { display: flex; flex-wrap: wrap; gap: 20px; }
/***************** END FLEXBOX ENFORCEMENT *******************/
