/* --- CSS RESET & BASE --- */
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F2F6F9;
  color: #234871;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #234871;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #44A08D;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 0.7em;
  color: #234871;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
}
h2 {
  font-size: 1.5rem;
  line-height: 1.25;
}
h3 {
  font-size: 1.125rem;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(34,72,113,0.06);
}
.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* --- HEADER --- */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(34,72,113,0.05);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 12px;
  padding: 14px 0;
}
header .container {
  padding: 0 16px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #234871;
  opacity: 0.82;
  padding: 6px 0;
  transition: color 0.18s, opacity 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #44A08D;
  opacity: 1;
}
.cta-button {
  background: #44A08D;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 28px;
  padding: 10px 28px;
  margin-left: 18px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(68,160,141,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  outline: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #234871;
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 16px rgba(34,72,113,0.14);
}
button.cta-button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

.mobile-menu-toggle {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  color: #234871;
  cursor: pointer;
  margin-left: 14px;
  border-radius: 6px;
  padding: 8px 10px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #44A08D22;
  color: #44A08D;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1);
  box-shadow: -2px 0 20px rgba(34,72,113,0.15);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  overscroll-behavior: contain;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #234871;
  font-size: 32px;
  align-self: flex-end;
  margin: 20px 24px 8px 0;
  cursor: pointer;
  z-index: 1001;
  border-radius: 6px;
  padding: 8px 9px;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #44A08D22;
  color: #44A08D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 28px 0 0 0;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  color: #234871;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 5px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #44A08D15;
  color: #44A08D;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none;
  }
}

/* --- HERO / BANNERS --- */
.hero {
  padding: 42px 0 32px 0;
  background: #F2F6F9;
  margin-bottom: 0;
  box-shadow: none;
}
.hero h1 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #234871;
  margin-bottom: 15px;
}
.hero p {
  font-size: 1.18rem;
  color: #234871cc;
  margin-bottom: 24px;
}
.hero .cta-button {
  margin-top: 10px;
}

.cta-banner,
.cta,
.cta-deal-alert,
.cta-write-review {
  background: #44A08D10;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-banner .content-wrapper,
.cta .content-wrapper,
.cta-deal-alert .content-wrapper,
.cta-write-review .content-wrapper {
  align-items: center;
}

/* --- FLEXBOX SECTION PATTERNS --- */
.features,
.services,
.reviews-list,
.testimonials,
.team,
.deals-list,
.process,
.switch-process,
.services-overview,
.faq,
.comparison-table,
.legal-section,
.about-section,
.thankyou-section,
.contact,
.contact-info {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(34,72,113,0.07);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  list-style: none;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid li {
  flex: 1 1 215px;
  min-width: 200px;
  background: #F2F6F9;
  border-radius: 13px;
  padding: 28px 18px 23px 18px;
  box-shadow: 0 2px 8px rgba(68,160,141,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.2s, transform 0.14s;
  margin-bottom: 0;
}
.feature-grid li img {
  height: 40px;
  width: 40px;
}
.feature-grid li h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-grid li p {
  font-size: 1rem;
  color: #234871bb;
  margin-bottom: 0;
}
.feature-grid li:hover {
  box-shadow: 0 8px 24px rgba(34,72,113,0.11);
  transform: translateY(-3px);
}

.services ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.services ul li {
  flex: 1 1 250px;
  min-width: 220px;
  background: #F2F6F9;
  border-radius: 13px;
  padding: 26px 18px 22px 18px;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(68,160,141,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.15s, transform 0.12s;
}
.services ul li h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  margin-bottom: 5px;
}
.services ul li span {
  font-weight: 500;
  font-size: 0.98rem;
  color: #44A08D;
  margin-left: 6px;
}
.services ul li p {
  font-size: 0.99rem;
  color: #234871bb;
  margin-bottom: 0;
}
.services ul li:hover {
  box-shadow: 0 8px 24px rgba(68,160,141,0.10);
  transform: translateY(-2px);
}

.contact-details,
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-menu {
  flex-direction: row;
  gap: 32px;
  margin-bottom: 14px;
}
.footer-menu a {
  font-size: 15px;
  opacity: 0.75;
  color: #234871;
  transition: opacity 0.16s, color 0.16s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-menu a:hover, .footer-menu a:focus {
  opacity: 1;
  color: #44A08D;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
.footer-brand img {
  width: 50px;
  height: 50px;
}
.footer-brand .address-info {
  font-size: 0.97rem;
  color: #234871b5;
}
footer {
  background: #fff;
  box-shadow: 0 -1px 12px rgba(34,72,113,0.05);
  padding: 26px 0 14px 0;
  margin-top: 90px;
}

/* --- LAYOUT PATTERNS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(34,72,113,0.08);
  padding: 28px 18px;
}
.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;
    gap: 22px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(68,160,141,0.08);
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  color: #234871;
  min-width: 0;
}
.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  font-style: italic;
  color: #234871;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- LEGAL PAGES/TEXT SECTIONS --- */
.legal-section, .about-section, .services-overview, .thankyou-section, .contact-info {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(34,72,113,0.06);
  padding: 40px 20px;
  margin-bottom: 52px;
}
.text-section {
  margin-bottom: 12px;
  font-size: 1.09rem;
  color: #223554;
}
.text-section h2 {
  margin-top: 32px;
  margin-bottom: 10px;
}
.text-section ul {
  margin-bottom: 24px;
}

/* --- FAQ --- */
.faq ul {
  list-style: none;
  margin-top: 9px;
}
.faq ul li {
  background: #F2F6F9;
  border-radius: 11px;
  padding: 15px 16px;
  margin-bottom: 18px;
  color: #234871;
}
.faq ul li strong {
  display: block;
  margin-bottom: 7px;
  color: #234871;
}

/* --- COMPARISON TABLE (placeholder) --- */
.comparison-table ul {
  margin-top: 12px;
  margin-bottom: 10px;
}

/* --- PROCESS/STEPS --- */
.process ol, .switch-process ol {
  margin: 0 0 1em 18px;
  padding-left: 22px;
  font-size: 1.07rem;

}
.process ul, .switch-process ul {
  margin: 0 0 1em 12px;
}

/* --- MEDIA QUERIES (RESPONSIVE) --- */
@media (max-width: 1100px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .services ul {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li, .services ul li {
    min-width: 0;
    width: 100%;
  }
  .footer-menu {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.24rem; }
  .hero { padding: 34px 0 19px 0; }
  .services, .features, .testimonials, .reviews-list, .deals-list, .about-section, .legal-section, .thankyou-section, .team, .services-overview, .contact-info, .contact {
    padding: 20px 8px;
  }
}
@media (max-width: 480px) {
  .header-flex {
    min-height: 48px;
    padding: 7px 0;
  }
  .footer-brand img {
    width: 38px;
    height: 38px;
  }
  .feature-grid li, .services ul li {
    padding: 18px 10px;
  }
  .testimonial-card {
    padding: 13px 9px;
  }
}

/* --- SCANDINAVIAN CLEAN EFFECTS --- */
.section, .feature-grid li, .services ul li, .testimonial-card, .card {
  box-shadow: 0 3px 12px rgba(34,72,113,0.07), 0 1.5px 4px rgba(68,160,141,0.10);
}
.section, .card, .feature-grid li, .services ul li {
  border-radius: 16px;
}


/* --- BUTTONS & INTERACTIVE --- */
button {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 9px;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
  outline: none;
}
button:focus {
  box-shadow: 0 0 0 3px #44A08D33;
}

.card a,
.services ul li a,
.feature-grid li a {
  color: #44A08D;
  font-weight: 600;
  transition: color 0.18s;
}
.card a:hover, .card a:focus {
  color: #234871;
  text-decoration: underline;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #234871;
  z-index: 9999;
  border-top: 2px solid #23487111;
  box-shadow: 0 -2px 22px rgba(34,72,113,0.09);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 21px 14px 16px 14px;
  min-height: 60px;
  flex-direction: row;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
  transition: opacity 0.33s, transform 0.33s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner-message {
  font-size: 0.98rem;
  flex: 1 1 0;
  line-height: 1.7;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  border: none;
  border-radius: 18px;
  padding: 9px 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-right: 2px;
  background: #44A08D;
  color: #fff;
  transition: background 0.18s, color 0.16s;
  box-shadow: 0 1.5px 7px rgba(34,72,113,0.07);
}
.cookie-btn.reject {
  background: #234871;
  color: #fff;
}
.cookie-btn.settings {
  background: #F2F6F9;
  color: #234871;
  border: 1.5px solid #44A08D;
  margin-right: 0;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #234871;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #44A08D;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #44A08D11;
  color: #44A08D;
}

/* Cookie modal popup */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,72,113, 0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  padding: 32px 22px 22px 22px;
  border-radius: 16px;
  min-width: 330px;
  max-width: 95vw;
  box-shadow: 0 8px 32px rgba(34,72,113,0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h3 {
  margin-bottom: 0.5em;
  font-size: 1.15rem;
}
.cookie-modal-category {
  margin-bottom: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-modal-category label {
  font-weight: 500;
  color: #234871;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #44A08D;
  width: 19px;
  height: 19px;
  margin-right: 2px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-close {
  background: none;
  color: #234871;
  border: none;
  font-size: 1.4rem;
  align-self: flex-end;
  margin-bottom: -8px;
  cursor: pointer;
  padding: 8px 14px;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #44A08D;
  background: #44A08D13;
  border-radius: 4px;
}

/* --- MISC --- */
blockquote {
  border-left: 3px solid #44A08D44;
  padding-left: 17px;
  color: #234871;
}

hr {
  border: none;
  border-top: 1px solid #23487115;
  margin: 32px 0;
}

/* Highlighted pricing */
h3 span, .services ul li span {
  color: #44A08D;
  font-size: 0.98em;
  font-weight: 500;
}

/* Scrollbar for webkit */
::-webkit-scrollbar {
  width: 10px;
  background: #F2F6F9;
}
::-webkit-scrollbar-thumb {
  background: #44A08D30;
  border-radius: 14px;
}
::-webkit-scrollbar-thumb:hover {
  background: #44A08D55;
}

/* --- PRINT TWEAKS --- */
@media print {
  header, .main-nav, .footer, .footer-menu, .footer-brand, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
}
