/* --- CSS RESET & BASE STYLES --- */
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 {
  font-size: 16px;
  background-color: #F7FAFC;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #263340;
  background: #F7FAFC;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

a {
  color: #2162A6;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
a:focus, a:hover {
  color: #15527C;
  outline: none;
}

strong {
  font-weight: bold;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #15527C;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.25rem; line-height: 1.2; }
h2 { font-size: 1.5rem; line-height: 1.25; }
h3 { font-size: 1.17rem; line-height: 1.3; }
h4 { font-size: 1rem; line-height: 1.3; }

p, li, td {
  font-size: 1rem;
  color: #263340;
  font-family: 'Roboto', Arial, sans-serif;
}

.table th, table th { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; color: #2162A6; }

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

/* --- CONTAINER & SECTION SPACING --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section, 
.hero, 
.features, 
.services, 
.testimonials, 
.contact, 
.about-mission, 
.about-benefits, 
.about-team, 
.services-list, 
.services-benefits, 
.faq-brief, 
.pricing-table, 
.cta-offer, 
.contact-section, 
.map-section, 
.cta-contact, 
.privacy-section, 
.gdpr-section, 
.cookie-policy-section, 
.terms-section, 
.thankyou-section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(33,98,166,0.06);
}

@media (max-width: 768px){
  .section, .hero, .features, .services, .testimonials, .contact,
  .about-mission, .about-benefits, .about-team, .services-list, .services-benefits,
  .faq-brief, .pricing-table, .cta-offer, .contact-section, .map-section,
  .cta-contact, .privacy-section, .gdpr-section, .cookie-policy-section,
  .terms-section, .thankyou-section {
    margin-bottom: 40px;
    padding: 24px 0 24px 0;
    border-radius: 10px;
  }
}

.content-wrapper {
  margin: 0 auto;
  padding: 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 1px solid #E5F6FF;
  box-shadow: 0 2px 8px rgba(33,98,166,0.03);
  position: relative;
  z-index: 110;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #2162A6;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E5F6FF;
  color: #15527C;
}
.main-nav a.cta {
  font-weight: 700;
  background: #2162A6;
  color: #fff;
  border-radius: 8px;
  padding: 10px 22px;
  margin-left: 8px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(33,98,166,0.13);
}
.main-nav a.cta.primary:hover, .main-nav a.cta.primary:focus {
  background: #15527C;
  color: #fff;
}
.main-nav img {
  margin-right: 16px;
  height: 32px;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #2162A6;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 120;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #15527C;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 15px;
  }
  .main-nav a {
    font-size: 0.97rem;
  }
}
@media (max-width: 850px) {
  .main-nav a {
    font-size: 0.95rem;
    padding: 7px 8px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE FULLSCREEN BURGER MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245, 250, 255, 0.98);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.61,.18,.84,.37);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: #2162A6;
  cursor: pointer;
  z-index: 10010;
  transition: color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #15527C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  margin-top: 40px;
  margin-left: 30px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #15527C;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  background: none;
  min-width: 160px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E5F6FF;
  color: #2162A6;
}

@media (max-width: 480px){
  .mobile-nav {
    gap: 16px;
    margin-left: 16px;
  }
  .mobile-menu-close {
    margin-right: 12px;
    margin-top: 12px;
  }
}

/* --- HERO & PROMINENT SECTIONS --- */
.hero {
  background: #E5F6FF;
  margin-bottom: 60px;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 24px rgba(38,51,64,0.04);
}
.hero .content-wrapper {
  min-height: 320px;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero h1 {
  color: #2162A6;
  font-size: 2.3rem;
  letter-spacing: -1px;
  margin-bottom: 0;
}
.hero p {
  font-size: 1.15rem;
  color: #263340;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .hero {
    margin-bottom: 32px;
    border-radius: 0 0 10px 10px;
  }
  .hero .content-wrapper {
    padding-top: 24px;
    padding-bottom: 24px;
    min-height: 200px;
  }
}

/* --- CARDS & FLEX CONTAINERS --- */
.card-container, .card-grid, .features, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(33,98,166,0.06);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 290px;
  min-width: 240px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(33,98,166,0.10);
  transform: translateY(-4px) scale(1.01);
}

.service-card {
  background: #f8fcff;
  border-radius: 13px;
  box-shadow: 0 1px 8px rgba(33,98,166,0.04);
  padding: 22px 18px 14px 18px;
  margin-bottom: 20px;
  margin-right: 18px;
  margin-left: 0;
  margin-top: 0;
  flex: 1 1 270px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1.5px solid #E5F6FF;
  transition: box-shadow 0.16s, border-color 0.13s;
}
.service-card img {
  height: 40px;
  width: 40px;
  margin-bottom: 10px;
}
.service-card h2, .service-card h3 {
  color: #2162A6;
  font-size: 1.19rem;
}
.service-card:hover, .service-card:focus-within {
  border-color: #b5e2fa;
  box-shadow: 0 8px 30px rgba(33,98,166,0.10);
  background: #e9f7ff;
}

@media (max-width: 880px){
  .card-container, .service-cards {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .card, .service-card {
    min-width: 96%;
    margin-right: 0;
  }
}

/* --- FEATURES SECTION/ITEMS --- */
.features ul, .about-benefits ul, .about-team ul, .services-benefits ul, .contact-info ul, .price-notes ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 8px;
  padding-bottom: 6px;
}
.features li, .about-benefits li, .about-team li, .services-benefits li, .contact-info li, .price-notes li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  background: none;
  color: #263340;
  padding: 2px 0 2px 0;
}
.features li img, .about-benefits li img, .contact-info li img {
  height: 26px;
  width: 26px;
  flex-shrink: 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 160px;
}

/* --- FLEX LAYOUTS --- */
.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) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* --- TESTIMONIALS --- */
.testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #E5F6FF;
  color: #263340;
  padding: 20px;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(33,98,166,0.06);
  margin-bottom: 20px;
  min-width: 210px;
  max-width: 576px;
  border-left: 4px solid #2162A6;
  font-size: 1.04rem;
}
.testimonial-card strong {
  color: #15527C;
  font-size: 1.02rem;
  font-weight: 700;
}
.testimonial-card span {
  color: #2162A6;
  font-size: 1.09rem;
}
@media (max-width: 576px){
  .testimonial-card {
    font-size: 0.98rem;
    padding: 14px;
  }
}

/* --- CTA BUTTONS --- */
.cta {
  display: inline-block;
  background: #2162A6;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.08rem;
  margin-top: 12px;
  margin-bottom: 8px;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(33,98,166, 0.10);
  transition: background 0.18s, transform 0.15s, box-shadow 0.13s;
  text-align: center;
}
.cta.primary {
  background: #2162A6;
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #15527C;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 22px rgba(33,98,166,0.14);
}
.cta:active { transform: scale(0.97); }

@media (max-width: 500px){
  .cta {
    width: 100%;
    font-size: 1.01rem;
    padding: 11px 0;
  }
}

/* --- TABLES (PRICING) --- */
.pricing-table table, table {
  border-collapse: collapse;
  width: 100%;
  margin: 30px 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(33,98,166,0.07);
}
table th, table td {
  text-align: left;
  padding: 14px 14px;
  border-bottom: 1px solid #E5F6FF;
  font-family: 'Roboto', Arial, sans-serif;
}
table tbody tr:hover {
  background: #E5F6FF;
}
table th {
  background: #E5F6FF;
  color: #15527C;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
table td {
  color: #263340;
  font-size: 1rem;
}
@media (max-width: 768px){
  .pricing-table table, table {
    font-size: 0.95rem;
    margin: 14px 0;
  }
  .pricing-table table th, .pricing-table table td {
    padding: 10px 6px;
  }
}

/* --- FAQ ACCORDION/STYLES --- */
.faq-item {
  background: #F7FAFC;
  border-radius: 9px;
  margin-bottom: 16px;
  box-shadow: 0 1px 5px rgba(33,98,166,0.03);
  padding: 20px 18px;
  color: #263340;
  transition: background 0.14s;
}
.faq-item h2 {
  color: #2162A6;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.faq-item h3 {
  color: #15527C;
  font-size: 1.07rem;
  margin-bottom: 6px;
}
.faq-brief .faq-snippet {
  background: #e0eef8;
  border-radius: 8px;
  margin-bottom: 14px;
  padding: 15px 14px;
}

/* --- MAP & LOCATION --- */
.map-location {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f2fafd;
  border-radius: 10px;
  padding: 18px 12px;
  margin-top: 12px;
  margin-bottom: 12px;
  min-width: 180px;
}
.map-location img {
  height: 30px; width: 30px;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  border-top: 1px solid #E5F6FF;
  padding: 38px 0 26px 0;
  text-align: center;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 26px;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #15527C;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.14s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #E5F6FF;
  color: #2162A6;
}
footer p {
  font-size: 0.98rem;
  color: #263340;
  padding: 0 10px;
}
@media (max-width: 600px){
  .footer-nav {
    gap: 12px;
    flex-wrap: wrap;
  }
  footer {
    padding: 26px 0 18px 0;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 20px;
  z-index: 9990;
  background: #fff;
  border: 1.5px solid #E5F6FF;
  border-radius: 14px;
  box-shadow: 0 2px 24px rgba(33,98,166,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 22px 18px;
  max-width: 410px;
  margin: 0 auto;
  transition: opacity 0.27s, transform 0.27s;
  opacity: 1;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.cookie-banner p {
  color: #263340;
  font-size: 1rem;
  text-align: center;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 6px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 7px;
  padding: 9px 16px;
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0 2px;
  cursor: pointer;
  background: #E5F6FF;
  color: #2162A6;
  transition: background 0.14s, color 0.14s;
}
.cookie-banner button.accept {
  background: #2162A6;
  color: #fff;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #15527C;
}
.cookie-banner button.settings {
  background: #fff;
  color: #2162A6;
  border: 1.2px solid #e0eef8;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #E5F6FF;
  color: #15527C;
}

@media (max-width: 520px){
  .cookie-banner {
    max-width: 97vw;
    padding: 14px 3vw;
    left: 2vw;
    right: 2vw;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 9px;
  }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0; right: 0; bottom: 0;
  z-index: 10005;
  background: rgba(38,61,79,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 8px 40px rgba(33,98,166,0.18);
  max-width: 430px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h2 {
  margin-bottom: 5px;
  color: #2162A6;
  font-size: 1.18rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-category label {
  flex: 1 1 auto;
  font-size: 1.05rem;
  color: #263340;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #2162A6;
  border-radius: 5px;
}
.cookie-category.essential label {
  color: #15527C;
  font-weight: bold;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 10px;
  background: none;
  font-size: 2rem;
  color: #2162A6;
  border: none;
  cursor: pointer;
  z-index: 10010;
  transition: color 0.18s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  color: #15527C;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal-footer button {
  padding: 10px 20px;
  border-radius: 7px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  background: #E5F6FF;
  color: #2162A6;
  margin-left: 2px;
  transition: background 0.14s, color 0.14s;
  cursor: pointer;
}
.cookie-modal-footer button.accept {
  background: #2162A6;
  color: #fff;
}
.cookie-modal-footer button.accept:hover, .cookie-modal-footer button.accept:focus {
  background: #15527C;
}
.cookie-modal-footer button.reject {
  background: #fff;
  color: #2162A6;
  border: 1.2px solid #e0eef8;
}
.cookie-modal-footer button.reject:hover, .cookie-modal-footer button.reject:focus {
  background: #E5F6FF;
  color: #15527C;
}
@media (max-width: 480px){
  .cookie-modal-content {
    padding: 16px 8px;
    max-width: 95vw;
  }
  .cookie-modal-footer {
    flex-direction: column;
    gap: 9px;
  }
}

/* --- THANK YOU PAGE --- */
.thankyou-section ul {
  margin-top: 18px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.thankyou-section a {
  margin-top: 14px;
}

/* --- UTILITIES --- */
.text-center { text-align: center; }
.hide { display: none !important; }

/* --- SCANDINAVIAN MICROINTERACTIONS --- */
button, a.cta, .cta {
  transition: background 0.18s, color 0.18s, box-shadow 0.20s, transform 0.18s;
}
button:active, .cta:active { transform: scale(0.97); }

input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border: 1.5px solid #E5F6FF;
  border-radius: 7px;
  padding: 10px 12px;
  font-size: 1rem;
  background: #FBFCFD;
  margin-bottom: 18px;
  outline: none;
  transition: border 0.14s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus{
  border-color: #2162A6;
  box-shadow: 0 2px 10px rgba(33,98,166,0.07);
}

/* --- ACCESSIBILITY HIDE DEFAULT OUTLINE, USE SHADOW --- */
a, button, .cta { outline: none; }
a:focus, button:focus, .cta:focus {
  box-shadow: 0 0 0 3px #b5e2fa;
}

/* --- RESPONSIVE FLEX COLUMN ON MOBILE --- */
@media (max-width: 768px) {
  .section, .hero, .features, .services, .testimonials, .contact, .about-mission, .about-benefits,
  .about-team, .services-list, .services-benefits, .pricing-table, .cta-offer, .privacy-section,
  .gdpr-section, .cookie-policy-section, .terms-section, .thankyou-section {
    padding: 18px 0;
  }
  .content-grid, .card-container, .features, .service-cards {
    flex-direction: column;
    gap: 15px;
  }
  .main-nav, .footer-nav {
    flex-direction: column;
    gap: 13px;
  }
}

/* --- SCROLLBAR (Modern, Clean) --- */
::-webkit-scrollbar {
  width: 9px;
  background: #E5F6FF;
}
::-webkit-scrollbar-thumb {
  background: #b5e2fa;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover { background: #2162A6; }

/* --- END --- */

