/* speechhorizon style: scandinavian_clean 
   Modern, approachable, airy and functional */
/* ================================
   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;
  vertical-align: baseline;
  font: inherit;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  font-size: 16px;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  background: #FAFBFB;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  transition: background 0.2s linear;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #245B80;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2B233;
  outline: none;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}
li + li {
  margin-top: 0.3em;
}
strong {
  font-weight: 600;
}

/* ================================
   TYPOGRAPHY
   ================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1D252E;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.35rem;
  line-height: 1.3;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 600;
}
p {
  margin-bottom: 1.1em;
}

/* ================================
   CONTAINER & LAYOUT
   ================================ */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(36, 91, 128, 0.03);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===============
   HEADER & NAV
   =============== */
header {
  background: #F8F9FA;
  box-shadow: 0 2px 10px rgba(36, 91, 128, 0.04);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
header img {
  height: 38px;
  width: auto;
  margin-right: 14px;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #245B80;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F2B233;
  color: #fff;
}
.button.primary {
  background: #245B80;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  outline: none;
  border-radius: 7px;
  padding: 10px 24px;
  box-shadow: 0 2px 6px rgba(36,91,128,0.05);
  cursor: pointer;
  margin-left: 15px;
  transition: background 0.19s, color 0.19s, transform 0.16s;
  letter-spacing: 0.01em;
}
.button.primary:hover,
.button.primary:focus {
  background: #F2B233;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* Hamburger menu (mobile) */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #245B80;
  cursor: pointer;
  padding: 8px 12px;
  margin-left: 12px;
  border-radius: 6px;
  transition: background 0.16s;
  z-index: 27;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #EFF1F1;
}

/* =====================
   MOBILE MENU OVERLAY
   ===================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(250,251,251, 0.98);
  box-shadow: 0 2px 10px rgba(36, 91, 128, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px 0 0 0;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(.72,-0.01,0,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #245B80;
  margin-left: 18px;
  margin-bottom: 24px;
  cursor: pointer;
  align-self: flex-end;
  transition: background 0.17s;
  border-radius: 6px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #EDF0F2;
  color: #F2B233;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-left: 30px;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #245B80;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 6px;
  transition: background 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F2B233;
  color: #fff;
}

/* =============================
   HERO AND PAGE SECTIONS
   ============================= */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #F8F9FA;
  padding: 60px 0 60px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 2px 20px rgba(36,91,128,0.04);
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  color: #245B80;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.hero p {
  max-width: 600px;
  color: #222;
  font-size: 1.14rem;
}
.hero .button.primary {
  margin-top: 12px;
}

/* FEATURES SECTION GRIDS */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(36, 91, 128, 0.02);
}
.feature-grid, .service-highlights, .callouts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: space-between;
}
/* .feature-grid child cards */
.feature-grid > div, .service-highlights > div {
  background: #FAFBFB;
  flex: 1 1 230px;
  min-width: 230px;
  padding: 24px 18px 18px 18px;
  border-radius: 14px;
  box-shadow: 0 1px 7px rgba(36, 91, 128, .032);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.23s;
  border: 1px solid #F3F5F7;
  position: relative;
}
.feature-grid img, .service-highlights img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
}
.feature-grid h3, .service-highlights h3 {
  font-size: 1.19rem;
  margin-bottom: 6px;
  color: #245B80;
}
.feature-grid p, .service-highlights p {
  color: #444;
  font-size: 1rem;
}
.feature-grid > div:hover, .service-highlights > div:hover {
  box-shadow: 0 8px 18px rgba(36,91,128,0.08);
  transform: translateY(-3px) scale(1.025);
  border-color: #F2B23333;
}

/* == SERVICES GRIDS == */
.services .service-highlights > div {
  margin-bottom: 20px;
  flex: 1 1 250px;
}
.price {
  color: #245B80;
  font-weight: 600;
  font-size: 1.07rem;
  background: #F2B23310;
  padding: 4px 10px;
  border-radius: 7px;
  margin-top: 12px;
  display: inline-block;
}

/* ========================
   TESTIMONIALS (cards)
   ======================== */
.testimonials {
  background: #F8F9FA;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(36,91,128,0.07);
  padding: 22px 24px;
  margin-bottom: 20px;
  gap: 20px;
  border-left: 6px solid #F2B233;
  min-width: 220px;
  max-width: 620px;
  transition: box-shadow 0.23s, transform 0.23s;
}
.testimonial-card p {
  font-size: 1.17rem;
  color: #263340;
  margin-bottom: 4px;
}
.testimonial-card span {
  color: #68798A;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-top: 5px;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 8px 18px rgba(36,91,128,0.13);
  transform: translateY(-2px) scale(1.016);
}

/* =============================
   CARDS, LISTS, TEXT-PICTURE
   ============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(36,91,128,0.07);
  padding: 22px 17px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  position: relative;
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 8px 18px rgba(36,91,128,0.13);
  transform: translateY(-1.5px) scale(1.016);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  padding: 8px 0 0 0;
  color: #1A212B;
}
.text-section strong,
.text-section h3 {
  color: #245B80;
  font-size: 1.15rem;
}
ul, ol {
  margin-bottom: 20px;
}

/* ==============
   TABLES
   ============== */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin: 22px 0 16px 0;
  border-radius: 9px;
  box-shadow: 0 1px 8px rgba(36,91,128,0.05);
  overflow: hidden;
}
thead {
  background: #245B80;
}
th, td {
  padding: 12px 10px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #F3F5F7;
}
th {
  background: #245B80;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
tbody tr:nth-child(even) {
  background: #F8F9FA;
}

/* =====================
   CALLOUTS/SPECIALS
   ===================== */
.callouts {
  background: #F8F9FA;
  border-radius: 9px;
  padding: 18px 16px;
  font-size: 1.09rem;
  color: #1A212B;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(36,91,128,0.03);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* Contact Details */
.contact .text-section {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(36,91,128,0.04);
  padding: 20px 14px;
  color: #222;
}
.contact a {
  color: #245B80;
  text-decoration: underline;
  transition: color .15s;
}
.contact a:hover {
  color: #F2B233;
}

/* ===============
   FOOTER
   =============== */
footer {
  background: #245B80;
  color: #fff;
  padding: 35px 0 20px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-logo img {
  height: 35px;
  margin-bottom: 7px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 24px;
  margin-bottom: 5px;
  justify-content: center;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 5px 10px;
  opacity: 0.9;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #F2B233;
  color: #245B80;
}
.footer-info {
  font-size: 0.97rem;
  opacity: 0.92;
  letter-spacing: 0.09em;
}


/* ===========================
   BUTTONS & INTERACTIONS
   =========================== */
.button,
button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s, box-shadow 0.18s, transform 0.14s;
}
.button.secondary {
  background: #F2B233;
  color: #fff;
}
.button.secondary:hover,
.button.secondary:focus {
  background: #245B80;
  color: #fff;
}
.button:active {
  transform: scale(0.98);
}
:focus-visible {
  outline: 2px solid #F2B233;
  outline-offset: 2px;
}

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  border-top: 1.5px solid #F2B233;
  box-shadow: 0 -2px 24px rgba(36,91,128,0.07);
  padding: 22px 18px 22px 26px;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 1rem;
  transition: transform 0.35s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookies-buttons {
  display: flex;
  gap: 15px;
}
.cookie-banner button {
  background: #245B80;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 500;
  border: none;
  padding: 8px 19px;
  border-radius: 7px;
  transition: background 0.18s, color 0.16s;
  cursor: pointer;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #245B80;
  border: 1.5px solid #A5B3C2;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: #F2B233;
  color: #fff;
}
.cookie-banner .cookie-accept-btn {
  background: #F2B233;
  color: #fff;
}
.cookie-banner .cookie-accept-btn:hover,
.cookie-banner .cookie-accept-btn:focus {
  background: #245B80;
}
.cookie-banner .cookie-reject-btn {
  background: #EDF0F2;
  color: #222;
  border: 1.5px solid #9AACB7;
}
.cookie-banner .cookie-reject-btn:hover,
.cookie-banner .cookie-reject-btn:focus {
  background: #F8F9FA;
  color: #245B80;
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 97vw;
  max-width: 390px;
  background: #fff;
  box-shadow: 0 8px 48px rgba(36,91,128,0.20);
  border-radius: 13px;
  transform: translate(-50%,-50%) scale(1);
  z-index: 3500;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px 18px 22px 22px;
  opacity: 1;
  transition: opacity 0.24s, transform 0.25s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-50%) scale(0.93);
}
.cookie-modal h2 {
  font-size: 1.29rem;
  color: #245B80;
  margin-bottom: 8px;
}
.cookie-modal .cookie-toggle-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 16px 0 16px 0;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F8F9FA;
  padding: 8px 12px;
  border-radius: 7px;
}
.cookie-modal .cookie-category strong {
  font-size: 1rem;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 23px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  border-radius: 22px;
  transition: background 0.24s;
}
.cookie-modal .switch input:checked + .slider {
  background: #F2B233;
}
.cookie-modal .slider:before {
  content: "";
  position: absolute;
  left: 4px; top: 4px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.24s;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(20px);
}
.cookie-modal .modal-buttons {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: #245B80;
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.15s;
}
.cookie-modal button.secondary {
  background: #F2B233;
  color: #fff;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 18px;
  background: none;
  color: #245B80;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 6px;
  padding: 0 2px;
  transition: background 0.13s;
}
.cookie-modal-close:hover {
  background: #F8F9FA;
}

/* ===============
   MEDIA QUERIES
   =============== */
@media (max-width: 1080px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .main-nav, .footer-nav {
    gap: 9px 12px;
    font-size: 0.99rem;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container {
    padding: 0 8px;
  }

  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .button.primary {
    font-size: 1rem;
    padding: 10px 16px;
  }
  .footer-logo img {
    height: 28px;
  }

  .hero {
    padding: 36px 0 35px 0;
    border-radius: 0 0 24px 24px;
    margin-bottom: 38px;
  }
  .features, .services, .testimonials, .about, .contact-teaser, .legal {
    padding: 26px 4px;
    border-radius: 11px;
    margin-bottom: 38px;
  }
  .feature-grid, .service-highlights, .callouts, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div, .service-highlights > div {
    min-width: 0;
    width: 100%;
  }
  .testimonial-card {
    max-width: 98vw;
  }
  .testimonials .content-wrapper,
  .section .content-wrapper {
    gap: 16px;
    align-items: stretch;
  }
  .about .content-wrapper {
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav {
    gap: 4px 8px;
  }
}
@media (max-width: 540px) {
  html { font-size: 14px; }
  .hero {
    padding: 19px 0;
  }
  .features, .services, .testimonials, .about, .contact-teaser, .legal {
    padding: 12px 2px;
    border-radius: 6px;
    margin-bottom: 26px;
  }
  .testimonial-card {
    padding: 16px 6px;
    min-width: 0;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 13px 6px 13px 10px;
    font-size: 0.97rem;
  }
}
/* Ensure all sections have at least 20px margin between them */
.section, .features, .about, .testimonials, .services, .contact-teaser, .legal {
  margin-bottom: 60px;
}

/* ===============
   UTILITY CLASSES
   =============== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-20 { margin-top: 20px !important; }
/* Hide scrollbars on mobile-navigation overlay for a clean look */
.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/* ===============
   SCANDINAVIAN MICRO-INTERACTIONS
   =============== */
a, .button, button {
  transition: background 0.18s, color 0.18s, box-shadow 0.17s, transform 0.15s;
}
.card, .feature-grid > div, .service-highlights > div, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.14s;
}
.button:focus, button:focus {
  outline: 2px solid #F2B233;
  outline-offset: 2px;
}

/* Selection highlight */
::selection {
  background: #F2B23344;
}

/* Montserrat & Open Sans Fallbacks */
@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), local('Arial'), local('sans-serif');
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans'), local('Arial'), local('sans-serif');
  font-display: swap;
}

/* END OF STYLE.CSS */
