/* --- CSS RESET & NORMALIZE --- */
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, menu, 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;
}

html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background-color: #F9F6F2;
  color: #305264;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  border: none;
  background: none;
  color: inherit;
  outline: none;
}

/* Hide outline on mouse, but keep it for keyboard navigation */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #305264;
  outline-offset: 2px;
}

/***************** BRAND TYPE SCALE *****************/
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #18303b;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #305264;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 18px;
}
h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p, li, address, dd {
  font-size: 1rem;
  line-height: 1.75;
  color: #305264;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}

.text-section > a:not(.btn-primary):not(.btn-secondary) {
  color: #305264;
  border-bottom: 1px solid #B7D8C3;
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.text-section > a:hover {
  color: #B7D8C3;
  border-color: #305264;
}

/***************** LAYOUTS & SPACING *****************/
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(48,82,100,0.08);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 6px 36px rgba(48,82,100,0.14);
  transform: translateY(-2px) scale(1.01);
}
.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 ITEMS *****************/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  padding: 24px 18px;
  box-shadow: 0 2px 16px rgba(48,82,100,0.06);
  min-width: 200px;
  max-width: 360px;
}

/***************** TESTIMONIAL CARDS *****************/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-left: 6px solid #B7D8C3;
  margin-bottom: 24px;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(48,82,100,0.08);
  color: #18303b;
  transition: box-shadow 0.2s, border-color 0.15s;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #305264;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: #305264d0;
  font-style: italic;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(48,82,100,0.14);
  border-color: #305264;
}

/***************** BUTTONS & LINKS *****************/
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  border-radius: 26px;
  padding: 0.85em 2.1em;
  cursor: pointer;
  text-align: center;
  margin-right: 12px;
  margin-bottom: 12px;
  transition: box-shadow 0.18s, background 0.2s, color 0.18s, transform 0.12s;
  border: none;
  box-shadow: 0 1px 4px rgba(48,82,100,0.10);
}
.btn-primary {
  background-color: #305264;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #18303b;
  color: #fff;
  box-shadow: 0 6px 24px rgba(48,82,100,0.16);
  transform: translateY(-2px) scale(1.02);
}
.btn-secondary {
  background-color: #B7D8C3;
  color: #305264;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: #305264;
  color: #fff;
  box-shadow: 0 4px 18px rgba(48,82,100,0.12);
  transform: translateY(-1.5px) scale(1.01);
}

/***************** NAVIGATION *****************/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 10px rgba(48,82,100,0.05);
  position: relative;
  z-index: 100;
  padding: 0 0 0 0;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 32px;
  padding: 18px 20px 18px 0;
}
header nav img {
  width: 42px;
  margin-right: 16px;
  vertical-align: middle;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #305264;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.14s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: #B7D8C3;
  color: #18303b;
}

/* Hide regular nav on mobile */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
}

/***** MOBILE MENU (overlay) *****/
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #305264;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  color: #305264;
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 202;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, border-color 0.16s;
}
.mobile-menu-toggle:hover {
  background: #B7D8C3;
  color: #18303b;
  border-color: #B7D8C3;
}
/* Hide toggle on desktop */
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 60px rgba(0,0,0,0.10);
  z-index: 999;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(.5,1.4,.7,1), opacity 0.22s;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: #fff;
  color: #305264;
  border: 2px solid #305264;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 22px 27px 10px 0;
  cursor: pointer;
  transition: background 0.15s, color 0.18s, border-color 0.14s;
}
.mobile-menu-close:hover {
  background: #B7D8C3;
  color: #18303b;
  border-color: #B7D8C3;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 32px 0 32px;
  gap: 22px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 500;
  color: #305264;
  padding: 12px 0;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #B7D8C3;
  color: #18303b;
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/***************** MAIN & SECTION STYLES *****************/
main {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: transparent;
  min-height: 70vh;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: transparent;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/***************** HERO SECTION *****************/
section .container .text-section > h1 {
  color: #305264;
}
section .container .text-section > p {
  color: #4a6f7b;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

/***************** TABLE STYLES (PLANNING & TARIFS) *****************/
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px rgba(48,82,100,0.06);
}
table caption {
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #305264;
  margin-bottom: 12px;
  padding-top: 8px;
}
thead {
  background: #B7D8C3;
}
thead th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #18303b;
  border-bottom: 2px solid #B7D8C3;
  padding: 12px 8px;
  text-align: left;
}
tbody td {
  color: #18303b;
  font-size: 1rem;
  padding: 10px 8px;
  border-bottom: 1px solid #EFF3F2;
}
tbody tr:last-child td {
  border-bottom: none;
}

/***************** FAQ & DL *****************/
dl {
  margin-bottom: 18px;
  padding-left: 4px;
}
dl dt {
  font-weight: 700;
  color: #305264;
  margin-top: 10px;
  margin-bottom: 3px;
  font-size: 1.05rem;
}
dl dd {
  font-size: 1rem;
  color: #4a6f7b;
  margin-bottom: 10px;
  margin-left: 0;
}

/***************** FOOTER *****************/
footer {
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 20px rgba(48,82,100,0.03);
  padding: 28px 0 12px 0;
  position: relative;
  min-height: 110px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-bottom: 4px;
}
footer nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #305264;
  opacity: 0.95;
  padding: 2px 4px;
  border-radius: 4px;
  transition: background 0.13s, color 0.15s;
}
footer nav a:hover {
  background: #B7D8C3;
  color: #305264;
}
footer address {
  font-size: 0.98rem;
  color: #305264;
  font-style: normal;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
footer address img {
  height: 17px;
  width: auto;
  margin-right: 4px;
  vertical-align: sub;
}
footer p {
  font-size: 0.92rem;
  color: #748995;
  margin-top: 3px;
}

/***************** COOKIE CONSENT BANNER *****************/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1099;
  background: #fff;
  box-shadow: 0 -8px 36px rgba(48,82,100,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5vw 22px 5vw;
  gap: 30px;
  min-height: 52px;
  border-radius: 20px 20px 0 0;
  animation: slideUpBanner 0.55s ease;
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  color: #305264;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 21px;
  padding: 0.5em 1.5em;
  cursor: pointer;
  border: none;
  background: #B7D8C3;
  color: #305264;
  box-shadow: 0 2px 8px rgba(48,82,100,0.09);
  transition: background 0.15s, color 0.13s, transform 0.14s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #305264;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cookie-btn.accept {
  background: #305264;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #18303b;
}
.cookie-btn.settings {
  background: #fff;
  color: #305264;
  border: 1.5px solid #B7D8C3;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #B7D8C3;
  color: #18303b;
}

/***** COOKIE MODAL POPUP *****/
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 90vw;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 60px rgba(48,82,100,0.22);
  z-index: 2002;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  padding: 36px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: popupIn 0.35s cubic-bezier(.6,1.5,.7,1);
}
@keyframes popupIn {
  from { opacity: 0; transform: translate(-50%,-35%) scale(0.92); }
  to   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: #305264;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  width: 40px;
  height: 24px;
  background: #B7D8C3;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-modal .cookie-toggle span {
  position: absolute;
  left: 3px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(48,82,100,0.08);
  transition: left 0.20s;
}
.cookie-modal .cookie-toggle input:checked + span {
  left: 21px;
}
.cookie-modal .cookie-category.essential .cookie-toggle {
  background: #305264;
  pointer-events: none;
}
.cookie-modal .cookie-category.essential .cookie-toggle span {
  left: 21px;
}
.cookie-modal .cookie-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal .cookie-btn {
  min-width: 90px;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  color: #305264;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.14s;
}
.cookie-modal .close-btn:hover {
  background: #B7D8C3;
  color: #18303b;
}

/***************** FORMS, LISTS & OTHER *****************/
ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
li {
  padding-left: 0;
  color: #305264;
  font-size: 1rem;
  word-break: break-word;
}
ul > li > img {
  height: 22px;
  width: auto;
  vertical-align: sub;
  margin-right: 6px;
}

/***************** UTILITIES *****************/
.gap-lg {
  gap: 36px !important;
}
.mb-lg {
  margin-bottom: 44px!important;
}
.mt-lg {
  margin-top: 44px!important;
}

/***************** RESPONSIVE & MEDIA QUERIES *****************/
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  section, .section {
    padding: 24px 0;
    margin-bottom: 36px;
  }
  .testimonial-card {
    padding: 14px 10px;
  }
  .feature-item, .card {
    padding: 16px 10px;
    min-width: unset;
    max-width: 100%;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
  footer .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .mobile-menu {
    min-width: 100vw;
    padding: 0;
  }
  .mobile-nav {
    padding: 30px 14px 0 24px;
    gap: 14px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 12px 17px 14px;
    gap: 16px;
    font-size: 0.97rem;
  }
  .cookie-modal {
    padding: 24px 8px 19px 8px;
    min-width: 94vw;
  }
}
@media (max-width: 480px) {
  .container { padding: 4px; }
  .btn-primary, .btn-secondary { padding: 0.7em 1.1em; font-size: 0.97rem; }
  footer .container { gap: 14px; }
  .testimonial-card { padding: 10px 4px; }
  .cookie-consent-banner { border-radius: 8px 8px 0 0; }
  .cookie-modal { max-width: 97vw; }
}

/************* MICRO-INTERACTIONS ***************/
a, button, .btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.16s, color 0.16s, box-shadow 0.18s, border 0.13s, transform 0.13s;
}

/********** PREVENT OVERLAPPING, ENSURE SPACING *********/
section, .section, .container, .card, .testimonial-card, .card-container, .content-grid, .text-image-section, .feature-item {
  margin-bottom: 20px;
}
.card-container, .content-grid, .text-image-section, .feature-item {
  gap: 20px;
}

/********* MODIFIERS FOR CLASSES DECLARED IN MANDATORY PATTERNS *******/
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { 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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Hide absolute positioning except for decorative/overlays */
.card, .testimonial-card, .feature-item, .text-section, .card-container, .content-grid, .text-image-section {
  position: static;
}

/***** Z-INDEX FOR LAYERING: cookie-modal > mobile-menu > header > rest *****/
header { z-index: 100; }
.mobile-menu { z-index: 999; }
.cookie-modal { z-index: 2002; }
.cookie-consent-banner { z-index: 1099; }

/* [END OF STYLE.CSS] */
