/* ----- 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,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;
}
html {
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  background: #F2F5F7;
  color: #1B2E3C;
}
body {
  background: #F2F5F7;
  margin:0;
  min-height:100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #24506B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E77B2D;
  outline: none;
}
ul, ol {
  list-style: none;
}
main {
  flex: 1 0 auto;
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #24506B;
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
p, li, table, th, td, span, label {
  font-family: 'Roboto', Arial, sans-serif;
  color: #273947;
  line-height: 1.6;
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
  color: #24506B;
}

/* ----- REUSABLE LAYOUTS ----- */
.container {
  max-width: 1100px;
  padding: 0 18px;
  margin: 0 auto;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.section {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(36,80,107,0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
}

/* Flexbox layouts */
.card-container, .service-grid, .content-grid, .testimonial-list, .features, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card, .service-grid > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 10px 0 rgba(36,80,107,0.05);
  padding: 22px 18px;
  margin-bottom: 20px;
  min-width: 230px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.19s;
}
.card:hover, .service-grid > div:hover {
  box-shadow: 0 4px 18px 0 rgba(36,80,107,0.13);
}
@media (max-width: 800px) {
  .card-container, .service-grid {
    flex-direction: column;
    gap: 18px;
  }
}

.content-grid {
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 700px) {
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 22px 20px;
  background: #F9FBFC;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(36,80,107,0.07);
  min-width: 230px;
  max-width: 340px;
  flex: 1 1 230px;
  transition: box-shadow 0.2s;
  border: 1.5px solid #EAEDED;
}
.testimonial-card:hover {
  box-shadow: 0 4px 16px 0 rgba(36,80,107,0.13);
}
.testimonial-card p {
  color: #1B2E3C;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 0;
  margin-top: 0;
}
.testimonial-card .stars {
  color: #E77B2D;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #24506B;
  font-size: 0.96rem;
  font-weight: 500;
}

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

/* ----- HEADER & NAVIGATION ----- */
header {
  width: 100%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 16px 0;
  position: relative;
  box-shadow: 0 1px 8px 0 rgba(36,80,107,0.04);
  z-index: 40;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 24px;
}
header nav {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1rem;
  padding: 4px 4px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a.active {
  background: #F2F5F7;
  color: #E77B2D;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 25px;
  background: #24506B;
  color: #fff;
  text-align: center;
  letter-spacing: 0.03em;
  transition: background 0.16s, color 0.13s, box-shadow 0.17s;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(36,80,107,0.07);
  cursor: pointer;
  margin-left: 20px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #E77B2D;
  color: #fff;
}
.btn-secondary {
  background: #F2F5F7;
  color: #24506B;
  border: 1.5px solid #24506B;
  margin-left: 0;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #E77B2D;
  color: #fff;
  border-color: #E77B2D;
}

@media (max-width: 990px) {
  header nav {
    gap: 16px;
  }
  .btn-primary {
    padding: 10px 22px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: row;
    padding: 10px 0;
  }
  header nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    background: none;
    border: none;
    font-size: 2.15rem;
    color: #24506B;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 8px;
    margin-left: auto;
    transition: color 0.2s;
  }
  .mobile-menu-toggle:focus {
    color: #E77B2D;
  }
}
@media (min-width: 769px){
  .mobile-menu-toggle {
    display: none;
  }
}

/* ----- MOBILE BURGER MENU ----- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,80,107,0.85);
  z-index: 999;
  transform: translateX(-100vw);
  transition: transform 0.45s cubic-bezier(0.82, 0, 0.32, 1);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu .mobile-menu-close {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 2.4rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.2s;
  padding: 2px 8px;
}
.mobile-menu .mobile-menu-close:hover,
.mobile-menu .mobile-menu-close:focus {
  color: #E77B2D;
}
.mobile-nav {
  background: #fff;
  min-width: 270px;
  width: 80vw;
  max-width: 360px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px 32px 36px 24px;
  gap: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 2px 0 15px 0 rgba(36,80,107,0.07);
  z-index: 1000;
  outline: none;
}
.mobile-nav a {
  color: #24506B;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 8px 4px 8px 0;
  border-radius: 4px;
  width: 100%;
  transition: background 0.17s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2F5F7;
  color: #E77B2D;
}

@media (max-width: 480px) {
  .mobile-nav {
    min-width: 85vw;
    padding: 42px 10px 22px 16px;
  }
}

/* ----- HERO SECTIONS / GENERAL CARDS ----- */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service-grid > div {
  align-items: flex-start;
  min-width: 230px;
  max-width: 320px;
  flex: 1 1 240px;
  padding: 20px 16px 20px 16px;
}
.service-grid img {
  width: 36px;
  margin-bottom: 7px;
  filter: hue-rotate(3deg) brightness(1.1);
}
.service-grid h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
@media (max-width: 800px) {
  .service-grid {
    flex-direction: column;
    gap: 16px;
  }
  .service-grid > div {
    min-width: unset;
    max-width: none;
    width: 100%;
  }
}

/* ----- FOOTER ----- */
footer {
  background: #FFFFFF;
  border-top: 1.5px solid #EAEDED;
  padding: 44px 0 22px 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
footer nav a {
  color: #24506B;
  opacity: 0.85;
  font-size: 1rem;
  padding: 2px 0;
  border-radius: 3px;
}
footer nav a:hover, footer nav a:focus {
  background: #F2F5F7;
  color: #E77B2D;
}
.footer-contact {
  font-size: 0.98rem;
  color: #445B6B;
  max-width: 320px;
}
footer .copyright {
  width: 100%;
  text-align: right;
  color: #90A0AF;
  font-size: 0.92rem;
  margin-top: 18px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-contact {
    margin-top: 10px;
  }
  footer .copyright {
    text-align: left;
    margin-top: 14px;
  }
}

/* ----- TABLES (PRICING) ----- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px 0 rgba(36,80,107,0.06);
}
thead th {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F2F5F7;
  color: #24506B;
  font-size: 1.02rem;
  padding: 13px 10px;
  text-align: left;
  border-bottom: 1.5px solid #e0e5ea;
}
tbody td {
  padding: 11px 10px;
  font-size: 1rem;
  border-bottom: 1px solid #ecf1f5;
}
tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 770px) {
  table, thead, tbody, tr, th, td {
    display: block;
    width: 100%;
  }
  thead { display: none; }
  tbody td {
    padding: 12px 8px;
    border-bottom: 1px solid #e8eaed;
  }
  tbody tr {
    margin-bottom: 12px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 rgba(36,80,107,0.05);
  }
}

/* ----- LIST STYLES WITH ICONS ----- */
ul li, .feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
ul li img, .feature-list li img {
  height: 24px;
  width: 24px;
  margin-top: 3px;
  margin-right: 5px;
  flex-shrink: 0;
}

/* ----- SPECIAL BUTTONS (COOKIES ETC.) ----- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 12px 0 rgba(36,80,107,0.07);
  border-top: 2.5px solid #EAEDED;
  z-index: 1200;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 18px 32px;
  font-size: 1rem;
  justify-content: space-between;
  animation: cookie-banner-slidein 0.6s cubic-bezier(.36,1.54,.56,1.01);
}
@keyframes cookie-banner-slidein {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 320px;
  color: #24506B;
  margin: 0;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 19px;
  padding: 8px 22px;
  cursor: pointer;
  background: #F2F5F7;
  color: #24506B;
  font-weight: 600;
  transition: background 0.16s, color 0.13s;
}
.cookie-banner .cookie-accept {
  background: #24506B;
  color: #fff;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #E77B2D;
}
.cookie-banner .cookie-reject {
  background: #F2F5F7;
  color: #24506B;
  border: 1.3px solid #24506B;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #E77B2D;
  color: #fff;
  border: 1.3px solid #E77B2D;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #24506B;
  border: 1.3px solid #24506B;
  padding: 8px 14px;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #F9FBFC;
  color: #E77B2D;
  border: 1.3px solid #E77B2D;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 14px 6px;
    font-size: 0.97rem;
    align-items: stretch;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* ----- COOKIE PREFERENCES MODAL ----- */
.cookie-modal-backdrop {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(36,80,107,0.22);
  z-index: 1220;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 410px;
  width: 90vw;
  padding: 34px 26px 26px 26px;
  box-shadow: 0 8px 32px 0 rgba(36,80,107,0.19);
  z-index: 1230;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-modal-in 0.5s cubic-bezier(.36,1.54,.56,1.01);
}
@keyframes cookie-modal-in {
  0% { transform: scale(0.82); opacity: 0.1; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 10px;
  color: #24506B;
  font-size: 1.2rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  flex: 1 1 150px;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #F2F5F7;
  border-radius: 10px;
  position: relative;
  transition: background 0.18s;
  outline: none;
  cursor: pointer;
  border: 1.5px solid #EAEDED;
}
.cookie-toggle:checked {
  background: #E77B2D;
  border-color: #E77B2D;
}
.cookie-toggle::before {
  content: '';
  display: block;
  background: #fff;
  border-radius: 50%;
  height: 16px; width:16px;
  position: absolute;
  top: 2px;
  left: 2px;
  box-shadow: 0 .5px 2.5px rgba(36,80,107,0.05);
  transition: left 0.17s;
}
.cookie-toggle:checked::before { left: 20px; }
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.cookie-modal button {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 19px;
  padding: 8px 22px;
  cursor: pointer;
  background: #24506B;
  color: #fff;
  font-weight: 600;
  transition: background 0.16s, color 0.11s;
}
.cookie-modal button.secondary {
  background: #F2F5F7;
  color: #24506B;
}
.cookie-modal button.secondary:hover, .cookie-modal button.secondary:focus {
  background: #E77B2D;
  color: #fff;
}

/* ----- UTILITIES ----- */
.note {
  color: #9AA9B6;
  font-size: 0.96rem;
  margin-bottom: 20px;
  font-style: italic;
}
.text-section {
  margin-bottom: 22px;
}
.text-section h3 {
  font-size: 1.13rem;
  margin-bottom: 7px;
  color: #24506B;
}
.text-section p {
  margin-bottom: 10px;
}

/* ----- RESPONSIVE DESIGN ----- */
@media (max-width: 550px){
  .container {
    padding: 0 6px;
  }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.02rem; }
}

/* ----- ANIMATIONS ----- */
.btn-primary, .btn-secondary, .cookie-modal button, .cookie-banner button {
  transition: background 0.14s, color 0.14s, box-shadow 0.22s, transform 0.13s;
}
.btn-primary:active, .btn-secondary:active, .cookie-modal button:active, .cookie-banner button:active {
  transform: scale(0.97);
}

/* ----- SCANDINAVIAN CLEAN: MATERIALS & BEAUTY ----- */
.section, .card, .service-grid > div, .testimonial-card, table,
.cookie-modal, .cookie-banner {
  box-shadow: 0 2px 16px 0 rgba(36,80,107,0.06);
  border-radius: 12px;
}

/* ----- VISUAL TOUCHES ----- */
::-webkit-input-placeholder { color: #98AFC2; }
::-moz-placeholder { color: #98AFC2; }
:-ms-input-placeholder { color: #98AFC2; }
::placeholder { color: #98AFC2; }
input:focus, textarea:focus, select:focus {
  outline: 2.5px solid #E77B2D;
  border-radius: 4px;
}

/* ----- PRINT SUPPORT (OPTIONAL) ----- */
@media print {
  .cookie-banner, .mobile-menu { display: none !important; }
  header, footer { box-shadow: none; }
}
