/* ===== CSS RESET & BASES: Scandinavian Clean Style ===== */
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, main, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F7FA;
  color: #1A3D6B;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1A3D6B;
  text-decoration: none;
  transition: color 0.2s;
}
*:focus {
  outline: 2px dashed #EB7100;
  outline-offset: 2px;
}

/* ===== BRAND FONTS ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1A3D6B;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

p, ul, ol, li, label, input, textarea, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #1A3D6B;
}
strong, b {
  font-weight: bold;
  color: #1A3D6B;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* --- Section spacing (MANDATORY) --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(26, 61, 107, 0.04);
}

@media (max-width: 600px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 22px;
  }
}

/* ===== FLEXBOX PATTERNS (NO GRID!) ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(26, 61, 107, 0.05);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
}
.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;
  padding: 20px;
  background: #F5F7FA;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(26, 61, 107, 0.06);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 22px 18px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(26,61,107,0.03);
  transition: box-shadow .2s;
}
.feature-item:hover, .card:hover {
  box-shadow: 0 6px 24px rgba(235,113,0,0.09);
}

@media (max-width: 768px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/* ===== HEADER / NAVIGATION ===== */
header {
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid #E4E8EF;
  box-shadow: 0 1px 8px rgba(26,61,107,0.03);
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
  position: relative;
}
.logo img {
  height: 36px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #1A3D6B;
  padding: 8px 2px;
  border-radius: 7px;
  font-weight: 500;
  letter-spacing: 0.025em;
  transition: background .18s, color .18s;
}
.main-nav a:hover, .main-nav a.active {
  background: #EB7100;
  color: #fff;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: #EB7100;
  color: #FFF;
  border: none;
  border-radius: 99px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(235, 113, 0, 0.11);
  cursor: pointer;
  transition: background .18s, box-shadow .2s, transform .07s;
  margin-left: 20px;
  margin-right: 0;
}
.cta-button:hover, .cta-button:focus {
  background: #C05200;
  box-shadow: 0 2px 24px rgba(235, 113, 0, 0.18);
  transform: translateY(-2px) scale(1.04);
  color: #FFF;
}

.mobile-menu-toggle {
  display: none;
  background: #EB7100;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  padding: 6px 16px;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.16s;
  z-index: 22;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #C05200;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .cta-button {
    margin-left: 8px;
    font-size: 0.96rem;
    padding: 10px 20px;
  }
  .main-nav a {
    font-size: 0.97rem;
    padding: 8px 2px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}


/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.62,.02,.44,1.03);
  z-index: 40;
  box-shadow: 0 0 0 9000px rgba(26,61,107,0.17);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 28px 8px 0;
  background: #EB7100;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 3px 17px 0 17px;
  z-index: 41;
  transition: background .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #C05200;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 0 38px;
  margin-top: 60px;
}
.mobile-nav a {
  padding: 9px 0;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A3D6B;
  letter-spacing: 0.04em;
  border-radius: 0;
  border-bottom: 1px solid #E0E8F2;
  width: 100%;
  transition: color 0.17s, background 0.23s;
  font-weight: 500;
  touch-action: manipulation;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5F7FA;
  color: #EB7100;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===== HERO, FEATURES, SERVICE LISTS, SECTIONS ===== */
.service-list, .feature-list, .steps-list, .guides-list, .categories ul, .next-steps-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-list li, .feature-list li, .steps-list li {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 6px rgba(26,61,107,0.04);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-list li img, .feature-list li img {
  height: 42px;
  width: 42px;
  margin-bottom: 8px;
  opacity: 0.92;
}
.steps-list li strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A3D6B;
  font-size: 1.1rem;
}
.steps-list p {
  font-size: 1rem;
  color: #38587C;
  margin-top: 2px;
}
@media (max-width: 800px) {
  .service-list li, .feature-list li, .steps-list li {
    padding: 16px 11px;
  }
}

/* ===== GUIDES LIST ===== */
.guides-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.guides-list article {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 6px rgba(26,61,107,.04);
  padding: 18px 18px 10px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.18s;
}
.guides-list article:hover {
  box-shadow: 0 4px 16px rgba(26,61,107,0.11);
}
.guides-list article h2 {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

/* ===== SEARCH FORM GUIDES ===== */
.search-guides {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.search-guides label {
  font-size: 1rem;
  color: #6285B1;
}
.search-guides input[type="text"] {
  padding: 8px 14px;
  font-size: 1rem;
  border: 1px solid #E4E8EF;
  border-radius: 6px;
  background: #F5F7FA;
  color: #38587C;
  width: 210px;
  transition: border 0.15s;
}
.search-guides input[type="text"]:focus {
  border-color: #1A3D6B;
}
.search-guides button {
  background: #EB7100;
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.21s;
}
.search-guides button:hover, .search-guides button:focus {
  background: #C05200;
}
@media (max-width: 600px) {
  .search-guides {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .search-guides input {
    width: 100%;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonial-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 20px;
}
.testimonial-card {
  flex: 1 1 300px;
  max-width: 480px;
  min-width: 250px;
  min-height: 170px;
  background: #FFFFFF;
  color: #1A3D6B;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(26,61,107,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 26px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.11s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(235,113,0,0.13);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #1A3D6B;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #38587C;
  font-size: 1rem;
  font-weight: 400;
}
.testimonial-card .star-rating {
  color: #EB7100;
  font-size: 1.2rem;
}
.add-testimonial-info {
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 24px 16px 10px 16px;
  background: #F5F7FA;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

/* ====== CTA Bottom Section ====== */
.confirmation-message {
  background: #F5F7FA;
  border-left: 4px solid #EB7100;
  color: #1A3D6B;
  border-radius: 8px;
  font-weight: 500;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.next-steps-info ul {
  margin-left: 0;
  gap: 10px;
}

/* ====== FOOTER ======= */
footer {
  background: #F5F7FA;
  color: #38587C;
  position: relative;
  margin-top: 60px;
  border-top: 1px solid #E4E8EF;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding: 38px 16px 22px 16px;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 16px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  color: #38587C;
  font-size: 1rem;
  border-radius: 5px;
  transition: color 0.2s, background 0.16s;
  padding: 4px 0 4px 0;
}
.footer-menu a:hover {
  color: #EB7100;
  background: #FFFFFF;
}
.brand-social {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.brand-social a img {
  width: 26px;
  height: 26px;
  opacity: 0.75;
  transition: opacity 0.12s;
}
.brand-social a:hover img {
  opacity: 1;
}
.copyright {
  margin-top: 12px;
  font-size: 0.92rem;
  color: #7A8EA1;
  flex-basis: 100%;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 6px 18px 6px;
    gap: 11px;
  }
  .footer-logo img {
    margin-bottom: 6px;
  }
}

/* ===== MAP PLACEHOLDER (Contact) ===== */
.map-placeholder {
  margin: 9px 0 0 0;
  padding: 12px 0;
  background: #F5F7FA;
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(26,61,107,0.01);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  min-height: 52px;
}
.map-placeholder img {
  height: 52px;
  width: auto;
  opacity: 0.95;
}

/* ===== TEXT SECTIONS ===== */
.text-section {
  background: #FAFBFC;
  border-radius: 8px;
  padding: 18px 16px 10px 16px;
  margin-bottom: 18px;
  box-shadow: 0 1px 6px rgba(26, 61, 107, 0.03);
}
@media (max-width: 700px) {
  .text-section {
    padding: 12px 4px 8px 4px;
  }
}

/* ===== CATEGORIES ===== */
.categories {
  margin-top: 14px;
}
.categories strong {
  display: block;
  margin-bottom: 7px;
}
.categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.categories li {
  background: #F5F7FA;
  color: #38587C;
  font-size: 1rem;
  border-radius: 6px;
  padding: 4px 14px;
}

/* ===== BUTTONS & INTERACTIVE STATES ===== */
button, input[type=button], input[type=submit] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #EB7100;
  color: #fff;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  transition: background 0.16s, box-shadow 0.14s, transform 0.1s;
  cursor: pointer;
}
button:hover, button:focus, input[type=button]:hover, input[type=submit]:hover {
  background: #C05200;
  box-shadow: 0 4px 18px rgba(235,113,0,0.11);
  transform: translateY(-1px) scale(1.03);
}

/* ====== MODAL & COOKIE BANNER ====== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #1A3D6B;
  box-shadow: 0 -4px 22px rgba(0,0,0,0.09);
  padding: 22px 16px 18px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 9999;
  font-size: 1rem;
  transition: transform .28s cubic-bezier(.65,.05,.36,1.03), opacity .28s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner-text {
  flex: 1 1 auto;
  max-width: 700px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-left: 20px;
}
.cookie-banner button {
  font-size: 1rem;
  padding: 9px 18px;
  font-weight: 700;
  background: #EB7100;
  color: #fff;
  border-radius: 7px;
  border: none;
  transition: background 0.17s, box-shadow 0.14s, transform 0.09s;
}
.cookie-banner .btn-settings {
  background: #1A3D6B;
}
.cookie-banner .btn-settings:hover {
  background: #38587C;
}
.cookie-banner .btn-accept {
  background: #EB7100;
}
.cookie-banner .btn-accept:hover {
  background: #C05200;
}
.cookie-banner .btn-reject {
  background: #F5F7FA;
  color: #1A3D6B;
  border: 1px solid #BDD0E9;
}
.cookie-banner .btn-reject:hover {
  background: #e6e7e9;
}
@media (max-width: 700px){
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 8px 12px 8px;
  }
  .cookie-banner-actions {
    margin-left: 0;
    flex-direction: column;
    gap: 9px;
  }
  .cookie-banner-text {
    max-width: 100%;
  }
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 340px;
  max-width: 95vw;
  width: 410px;
  transform: translate(-50%, -52%) scale(1);
  background: #fff;
  color: #1A3D6B;
  border-radius: 16px;
  padding: 28px 30px 16px 30px;
  box-shadow: 0 10px 40px rgba(26,61,107,0.19);
  z-index: 10001;
  opacity: 1;
  transition: opacity 0.24s, transform 0.24s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -40%) scale(.97);
}
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.cookie-modal-header h2 {
  font-size: 1.4rem;
}
.cookie-modal-close {
  background: transparent;
  border: none;
  color: #1A3D6B;
  font-size: 2.2rem;
  cursor: pointer;
}
.cookie-modal-content {
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.cookie-category strong {
  min-width: 120px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-toggle {
  margin-left: auto;
}
.cookie-toggle input[type="checkbox"] {
  accent-color: #EB7100;
  width: 22px;
  height: 22px;
  border-radius: 8px;
}
.cookie-category.essential strong {
  color: #EB7100;
}
.cookie-category.essential .cookie-toggle {
  color: #38587C;
  font-size: 0.97rem;
  margin-left: 10px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 4px;
}
.cookie-modal-actions button {
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 7px;
}
.cookie-modal-actions .btn-cancel {
  background: #F5F7FA;
  color: #38587C;
  border: 1px solid #E4E8EF;
}
.cookie-modal-actions .btn-cancel:hover {
  background: #E4E8EF;
  color: #1A3D6B;
}
@media (max-width: 500px) {
  .cookie-modal {
    min-width: 0;
    width: 90vw;
    padding: 18px 10px 11px 10px;
  }
  .cookie-modal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* ===== FORM ELEMENTS (CONSULT, CONTACT FORMS ETC.) ===== */
input, textarea {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1A3D6B;
  background: #F5F7FA;
  border: 1px solid #E4E8EF;
  border-radius: 6px;
  padding: 10px 14px;
  margin-top: 6px;
  margin-bottom: 16px;
  transition: border 0.15s;
  box-sizing: border-box;
}
input:focus, textarea:focus {
  border-color: #EB7100;
}

label {
  font-weight: 600;
  color: #1A3D6B;
  margin-bottom: 2px;
  font-size: 1rem;
}

/* ===== MISC/UTILITY ===== */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .card, .testimonial-card, .feature-item {
    padding: 16px 10px;
  }
}
::selection {
  background: #EB7100;
  color: #fff;
}

/* ===== SPACING UTILITIES ===== */
.mb-20 { margin-bottom: 20px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-32 { margin-top: 32px !important; }
.gap-24 { gap: 24px !important; }
.gap-16 { gap: 16px !important; }

/**************************************************************
 COMPLIANCE: No display:grid or CSS columns, only flexbox used.
 LAYOUT SPACING & ALIGNMENT matches provided rules & class names.
 ==============================================================*/
