/* RESET & NORMALIZATION */
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; }
*, *::before, *::after { box-sizing: inherit; }
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7FAFC;
  color: #19395C;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  background: none;
  border: none;
  outline: none;
}
ul, ol { list-style: none; padding-left: 0; }
hr { border: 0; border-top: 1px solid #e5e7eb; }

/* SCANDINAVIAN CLEAN – COLORS & BRAND */
:root {
  --primary: #19395C;
  --secondary: #E2ECF7;
  --accent: #F4AD47;
  --bg: #F7FAFC;
  --white: #fff;
  --grey-light: #EFF4F8;
  --text-main: #19395C;
  --text-light: #45678b;
  --shadow: 0 2px 16px 0 rgba(25,57,92, 0.10);
  --radius: 16px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

body {
  background: var(--bg);
  color: var(--text-main);
  font-family: 'Roboto', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }
h4 { font-size: 1.125rem; margin-bottom: 12px; }
p, ul li, ol li { font-size: 1rem; margin-bottom: 12px; color: var(--text-main); }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
}

/* CONTAINER & SHARED LAYOUTS */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .section { padding: 28px 6px; margin-bottom: 36px; }
}

/* HEADER & NAVIGATION */
header {
  background: var(--white);
  box-shadow: 0 1px 12px rgba(25,57,92,0.05);
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0;
  color: var(--text-main);
  transition: color var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 11px 32px;
  border-radius: 40px;
  box-shadow: 0 6px 32px 0 rgba(244,173,71,0.08);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  border: none;
  outline: none;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: #f0a21c;
  color: var(--white);
  box-shadow: 0 8px 32px 0 rgba(244,173,71,0.16);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  font-size: 2.2rem;
  color: var(--primary);
  border: none;
  cursor: pointer;
  z-index: 1003;
}
@media (max-width: 992px) {
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle { display: block; }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(236,241,245, 0.98);
  z-index: 1004;
  transform: translateX(-100vw);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 0 0 0;
  box-shadow: 0 10px 32px rgba(25,57,92,0.10);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 32px 32px 0 0;
  background: transparent;
  color: var(--primary);
  font-size: 2rem;
  border: none;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  padding: 18px 0;
  color: var(--primary);
  width: 100%;
  text-align: center;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: var(--secondary);
  color: var(--accent);
}
@media (min-width: 993px) {
  .mobile-menu { display: none!important; }
}

/* HERO SECTION */
.hero-section {
  display: flex;
  align-items: center;
  min-height: 340px;
  background: linear-gradient(90deg, var(--secondary) 45%, var(--bg) 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 5px 22px rgba(25,57,92,0.04);
  margin-bottom: 64px;
  padding: 60px 0 40px 0;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero-section h1 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero-section .subheadline {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 36px 0 18px 0;
    min-height: unset;
  }
  .hero-section h1 { font-size: 2rem; }
}

/* FEATURES GRID / USP LIST */
.features-section {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 0px 32px 0px;
  margin-bottom: 60px;
}
.features-section .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 26px 0 14px 0;
  justify-content: flex-start;
}
.feature {
  background: var(--grey-light);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px;
  min-width: 230px;
  flex: 1 1 220px;
  box-shadow: 0 1px 6px rgba(25,57,92,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
  margin-bottom: 20px;
}
.feature:hover {
  box-shadow: 0 6px 24px 0 rgba(25,57,92,0.15);
  transform: translateY(-2px) scale(1.025);
}
.feature img {
  height: 44px; width: 44px; margin-bottom: 6px;
}
.feature h3 {
  font-size: 1.14rem;
  margin-bottom: 8px;
}
.feature p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0;
}
.usp-list {
  margin: 24px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  color: var(--primary);
}
.usp-list li {
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
}
.usp-list li::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0; top: 7px;
}

@media (max-width: 900px) {
  .features-section .features-grid {
    gap: 16px;
  }
  .feature { min-width: 150px; gap: 10px; padding: 16px; }
}
@media (max-width: 650px) {
  .features-section .features-grid {
    flex-direction: column;
    gap: 12px;
  }
  .feature { width: 100%; min-width: unset; }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 0px 32px 0px;
  margin-bottom: 60px;
}
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px 0 rgba(25,57,92, 0.07);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 250px;
  flex: 1 1 270px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(25,57,92, 0.13);
  transform: scale(1.02);
}
.testimonial-card p {
  color: var(--text-main);
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 8px;
}
.testimonial-client {
  color: var(--text-light);
  font-size: 0.98rem;
  font-style: normal;
  font-weight: 500;
  margin-top: 8px;
}

@media (max-width: 700px) {
  .testimonials-grid {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card { width: 100%; min-width: unset; }
}

/* CARDS LAYOUTS & FLEX CONTAINERS */
.card-container, .pricing-tables, .services-list, .guide-articles, .process-steps, .faq-list, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card, .pricing-table, .service-block, .step, .faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .pricing-table:hover, .service-block:hover, .step:hover, .faq-item:hover {
  box-shadow: 0 8px 36px 0 rgba(25,57,92,0.20);
  transform: translateY(-1px) scale(1.017);
}
@media (max-width: 800px) {
  .card-container, .pricing-tables, .services-list, .guide-articles, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card, .pricing-table, .service-block, .step, .faq-item { width: 100%; }
}

/* PRICING TABLES */
.pricing-tables {
  margin: 28px 0 18px 0;
}
.pricing-table h2 {
  font-size: 1.22rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.pricing-table ul { margin-left: 0; gap: 7px; }
.pricing-table li {
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 5px;
}
.pricing-table p { color: var(--text-light); margin-top: 8px; }
.pricing-notes p { margin-top: 12px; color: var(--accent); font-size: 1.05rem; }

/* PROCESS STEPS / FAQ */
.process-steps, .faq-list {
  margin-top: 18px;
  gap: 20px;
}
.step {
  min-width: 230px;
  flex: 1 1 240px;
  align-items: center;
  gap: 12px;
}
.step img { height: 40px; width: 40px; margin-bottom: 6px; }
.step h3 { font-size: 1.09rem; margin-bottom: 3px; }
.faq-item h3 {
  color: var(--accent);
  font-size: 1.11rem;
  margin-bottom: 7px;
}
.faq-item p { color: var(--text-light); }

/* CTA SECTION */
.cta-section {
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 0;
  margin-bottom: 48px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section .content-wrapper {
  align-items: center;
  gap: 16px;
}
.cta-section .cta-button {
  margin: 16px 0 6px 0;
}

/* THANK YOU SECTION */
.thankyou-section {
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 60px 16px 64px;
}
.thankyou-section h1 {
  color: var(--primary);
  margin-bottom: 18px;
  font-size: 2.25rem;
}
.thankyou-section p {
  margin-bottom: 28px;
  color: var(--text-main);
  font-size: 1.16rem;
}

/* GUIDE ARTICLES */
.guide-articles {
  gap: 24px;
}
.guide-articles h2 {
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: var(--accent);
}
.quick-tips {
  margin: 26px 0 0 0;
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 18px 14px;
}
.quick-tips h3 {
  font-size: 1.12rem;
  margin-bottom: 7px;
}
.quick-tips ul li {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* CONTACT SECTION */
.contact-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 8px;
  flex-wrap: wrap;
}
.contact-details, .contact-cta {
  min-width: 240px;
  max-width: 370px;
  flex: 1 1 240px;
}
.contact-details p, .contact-cta p {
  color: var(--text-main);
  margin-bottom: 8px;
  font-size: 1rem;
}
.contact-cta h2 { margin-bottom: 6px; font-size: 1.2rem; }
@media (max-width: 700px) {
  .contact-section {
    flex-direction: column;
    gap: 22px;
  }
}

/* TEXT-IMAGE SECTIONS (as required) */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 15px; }
}

.text-section { margin-bottom: 0; }
.text-section h2 {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 9px;
}
.text-section p {
  color: var(--text-main);
  margin-bottom: 11px;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--white);
  width: 100%;
  padding: 0;
  box-shadow: 0 -3px 12px rgba(25,57,92,0.06);
}
footer .container {
  padding: 26px 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo img {
  height: 44px; width: auto;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: var(--white);
  font-size: 0.96rem;
  opacity: 0.88;
  transition: color var(--transition), opacity var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  opacity: 1;
}
.footer-contact {
  font-size: 0.96rem;
  color: var(--secondary);
  line-height: 1.6;
}
.footer-contact img {
  vertical-align: sub; height: 15px; width: auto;
  margin-right: 5px;
}
@media (max-width: 900px) {
  footer .content-wrapper { flex-direction: column; gap: 20px; align-items: flex-start; }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  color: var(--primary);
  border-top: 1px solid var(--secondary);
  box-shadow: 0 -2px 20px rgba(25,57,92,0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  z-index: 1100;
  animation: fadeInUp 0.55s cubic-bezier(.42,0,.58,1);
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: none; }
}
.cookie-banner p {
  margin: 0; color: var(--primary); font-size: 1rem;
}
.cookie-buttons {
  display: flex; gap: 16px;
}
.cookie-buttons button {
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 22px;
  border-radius: 24px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.cookie-buttons button:hover, .cookie-buttons button:focus {
  background: #e79c1a;
  color: var(--white);
}
.cookie-buttons .reject {
  background: var(--secondary);
  color: var(--primary);
  border: 1.5px solid var(--secondary);
}
.cookie-buttons .reject:hover { background: #c8dff5; }
.cookie-buttons .settings {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-buttons .settings:hover {
  background: var(--primary);
  color: var(--white);
}

/* Cookie Consent Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(25, 57, 92, 0.22);
  z-index: 1110;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s cubic-bezier(.45,0,.55,1);
}
@keyframes fadeIn {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 6px 48px rgba(25,57,92,0.18);
  padding: 40px 28px 26px 28px;
  max-width: 430px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  animation: popIn 0.15s cubic-bezier(.48,0,.52,1) 1;
}
@keyframes popIn {
  0% { transform: scale(0.96); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  background: var(--grey-light);
  padding: 13px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.cookie-category label {
  font-size: 1.03rem; color: var(--primary); font-weight: 500;
}
.cookie-category .cookie-toggle {
  display: flex; align-items: center; gap: 8px;
}
.cookie-toggle input[type="checkbox"] {
  accent-color: var(--accent);
  width: 22px; height: 22px;
}
.cookie-category.essential label {
  opacity: 0.67;
}
.cookie-category.essential input {
  pointer-events: none;
  opacity: 0.5;
}
.cookie-modal-footer {
  display: flex; gap: 16px; justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-footer button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 24px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.cookie-modal-footer button:hover, .cookie-modal-footer button:focus {
  background: #e2a443; color: var(--white);
}

/* Responsive adjustments for Cookie Banner & Modal */
@media (max-width: 650px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 14px 8px; font-size: 0.99rem; }
  .cookie-modal { padding: 16px 8px 12px 8px; }
}

/* ANIMATIONS */
.cta-button, .card, .feature, .testimonial-card, .step, .main-nav a, .mobile-nav a {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}

/* MISCELLANEOUS UTILS */
@media (max-width: 480px) {
  .container { padding: 0 5px; }
  .section { padding-left: 1vw; padding-right: 1vw; }
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
  background: var(--secondary);
}
::-webkit-scrollbar-thumb {
  background: #d4e3f3;
  border-radius: 6px;
}

/* Selection */
::selection {
  background: var(--accent);
  color: var(--primary);
}

/* Hide elements only visually */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* END OF STYLE.CSS */
