/* ========= 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, 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, picture {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}
:focus {
  outline: 2px solid #459EBF;
  outline-offset: 2px;
}
body {
  min-height: 100vh;
  background: #F2F9FD;
  color: #205C7A;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* ========= BRAND TYPOGRAPHY & COLORS ========= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #205C7A;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 1.625rem;
  margin-bottom: 18px;
  letter-spacing: 0.025em;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  color: #205C7A;
}
strong {
  font-weight: 700;
  color: #205C7A;
}

/* ========= GEOMETRIC STRUCTURED COMPONENTS ========= */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 3px 24px rgba(32, 92, 122, 0.10);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 4px 30px rgba(32, 92, 122, 0.18);
  transform: translateY(-3px) scale(1.018);
}
.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 {
  background: #fff;
  border-left: 8px solid #459EBF;
  border-radius: 18px 6px 6px 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  box-shadow: 0 2px 20px rgba(32,92,122,0.11);
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.testimonial-card blockquote {
  color: #205C7A;
  font-style: italic;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.7;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.testimonial-card p {
  margin-left: 16px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========= NAVIGATION ========= */
header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(32,92,122,0.05);
  z-index: 40;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
  font-size: 1rem;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #205C7A;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 8px;
  letter-spacing: 0.045em;
  transition: background 0.14s, color 0.16s;
}
.main-nav a:not(.cta-primary):hover,
.main-nav a:not(.cta-primary):focus {
  background: #F2F9FD;
  color: #459EBF;
}
.cta-primary {
  background: #205C7A;
  color: #fff !important;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 8px 22px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 3px 16px rgba(32,92,122,0.09);
  border: 2px solid #205C7A;
  margin-left: 12px;
  transition: background 0.18s, color 0.16s, border 0.12s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #459EBF;
  border-color: #459EBF;
  color: #fff;
}
.cta-secondary {
  background: #fff;
  border: 2px solid #205C7A;
  color: #205C7A;
  padding: 8px 22px;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: background 0.16s, color 0.16s, border 0.12s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #F2F9FD;
  color: #459EBF;
  border-color: #459EBF;
}

.mobile-menu-toggle {
  display: none;
  background: #F2F9FD;
  border-radius: 8px;
  font-size: 2rem;
  color: #205C7A;
  padding: 4px 12px;
  margin-right: 8px;
  margin-left: auto;
  transition: background 0.16s, color 0.16s;
  z-index: 200;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #459EBF;
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #205C7A;
  color: #fff;
  z-index: 500;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.73, 0.12, 0.42, 1.02);
  display: flex;
  flex-direction: column;
  padding-top: 32px;
  padding-bottom: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: #205C7A;
  font-size: 2rem;
  padding: 2px 16px;
  border-radius: 8px;
  margin-left: auto;
  margin-right: 28px;
  margin-bottom: 24px;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #459EBF;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin-left: 32px;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.4rem;
  color: #fff;
  border-radius: 10px;
  padding: 8px 30px 8px 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  min-width: 160px;
  transition: background 0.14s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #459EBF;
  color: #F2F9FD;
}

/* ========= HERO/SECTIONS/FEATURES ========= */
.features-list li, .how-it-works-steps li, .services-preview li, .services-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  box-shadow: 0 2px 14px rgba(32,92,122,0.07);
  font-weight: 500;
  border-left: 6px solid #205C7A;
}
.features-list li img, .how-it-works-steps li img, .services-preview li img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.services-preview li strong, .services-list li h2 {
  color: #205C7A;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 4px;
}
.services-list li {
  flex-direction: column;
  align-items: flex-start;
  min-width: 260px;
  gap: 5px;
}
.services-list li span {
  font-size: 1rem;
  color: #459EBF;
  margin-top: 2px;
}
.services-list li h2 {
  font-size: 1.23rem;
}
.services-list li p {
  margin-bottom: 4px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.benefits-grid ul li {
  background: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 1px 8px rgba(32,92,122,0.06);
  margin-bottom: 12px;
  border-left: 3px solid #459EBF;
}

.comparison-chart ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.comparison-chart li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 9px;
  font-size: 1rem;
  color: #205C7A;
  font-family: 'Montserrat', Arial, sans-serif;
}
.best-value-badge {
  display: inline-block;
  background: #205C7A;
  color: #fff;
  border-radius: 8px;
  padding: 3px 12px;
  font-size: 0.85rem;
  font-weight: 650;
  margin-left: 10px;
}

.opening-hours, .map, .contact-block {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 2px 14px rgba(32,92,122,0.08);
  margin-bottom: 20px;
  color: #205C7A;
}
.contact-block {
  margin-bottom: 30px;
}

/* ================= FAQ/ACCORDION ================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 18px;
  padding: 22px 28px;
  box-shadow: 0 1px 12px rgba(32,92,122,0.09);
  transition: box-shadow 0.18s;
}
.faq-item:hover {
  box-shadow: 0 4px 36px rgba(32,92,122,0.16);
}
.faq-item h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #205C7A;
  margin-bottom: 10px;
  cursor: pointer;
}
.accordion {
  font-size: 1rem;
  padding-left: 6px;
  color: #205C7A;
}

/* ================= PRICING TABLE ================= */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(32,92,122,0.07);
  overflow: hidden;
  margin-bottom: 20px;
}
.pricing-table thead tr {
  background: #205C7A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 12px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #F2F9FD;
}
.pricing-table tbody tr:nth-child(even) {
  background: #F2F9FD;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.pricing-table td strong {
  color: #205C7A;
}

.service-inclusions ul li {
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-left: 4px solid #459EBF;
  box-shadow: 0 1px 8px rgba(32,92,122,0.06);
}

/* ========= FOOTER ========= */
footer {
  background: #205C7A;
  color: #fff;
  padding-top: 32px;
  padding-bottom: 32px;
  margin-top: 50px;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #F2F9FD;
  text-decoration: underline;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 4px 12px;
  border-radius: 8px;
  transition: background 0.14s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #459EBF;
  color: #fff;
}
.brand-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  text-align: center;
}
.brand-info img {
  width: 70px;
  margin-bottom: 10px;
}
.brand-info address {
  color: #F2F9FD;
  font-size: 0.98rem;
  font-style: normal;
  line-height: 1.7;
}
.brand-info address img {
  width: 22px;
  vertical-align: middle;
}

/* ===== COLORED BADGES (for e.g. Express, Popolare) ===== */
span.best-value-badge {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  background: #459EBF;
  color: #fff;
  border-radius: 8px;
  padding: 3px 11px;
  margin-left: 9px;
  letter-spacing: 0.02em;
}

/* ================= COOKIE CONSENT BANNER ================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #205C7A;
  color: #fff;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px 24px 22px 24px;
  box-shadow: 0 -2px 42px rgba(32,92,122,0.17);
  font-size: 1rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  animation: cb-slide-in 0.6s cubic-bezier(0.62,0.16,0.32,1.02);
}
@keyframes cb-slide-in {
  from { transform: translateY(80%); opacity:0; }
  to   { transform: none; opacity:1; }
}
.cookie-banner p {
  color: #fff;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}
.cookie-banner button {
  background: #fff;
  color: #205C7A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 9px 23px;
  border-radius: 11px;
  border: 2px solid #fff;
  margin-bottom: 2px;
  transition: background 0.16s, color 0.13s, border 0.11s;
}
.cookie-banner button.cookie-settings {
  background: #459EBF;
  color: #fff;
  border-color: #459EBF;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #459EBF;
  color: #fff;
  border-color: #205C7A;
}

/* ====== COOKIE CONSENT MODAL ====== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1201;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,92,122,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cb-modal-fadein 0.32s;
}
@keyframes cb-modal-fadein {
  from { opacity:0; }
  to   { opacity:1; }
}
.cookie-modal {
  background: #fff;
  color: #205C7A;
  border-radius: 18px;
  box-shadow: 0 7px 48px rgba(69,158,191,0.15);
  padding: 28px 24px 22px 24px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  animation: cb-modal-slidein 0.35s cubic-bezier(0.68,0.12,0.32,1.01);
}
@keyframes cb-modal-slidein {
  from { transform:scale(0.85) translateY(52px); opacity:0; }
  to   { transform:none; opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category span {
  flex-grow: 1;
  font-weight: 600;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-toggle {
  width: 42px;
  height: 24px;
  border-radius: 16px;
  background: #F2F9FD;
  border: 2px solid #205C7A;
  position: relative;
  transition: background 0.16s, border 0.13s;
}
.cookie-modal .cookie-toggle[aria-checked="true"],
.cookie-modal .cookie-toggle.active {
  background: #459EBF;
  border-color: #459EBF;
}
.cookie-modal .cookie-toggle::after {
  content: '';
  display: block;
  position: absolute;
  top: 2px; left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-modal .cookie-toggle[aria-checked="true"]::after, .cookie-modal .cookie-toggle.active::after {
  left: 20px;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}
.cookie-modal button {
  background: #205C7A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 23px;
  border-radius: 10px;
  border: 2px solid #205C7A;
  font-weight: 700;
  transition: background 0.16s, color 0.13s;
}
.cookie-modal button.cookie-cancel {
  background: #fff;
  color: #205C7A;
  border-color: #459EBF;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #459EBF;
  color: #fff;
}

/* ========= UTILITY CLASSES ========= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.06rem;
}
.process-diagram {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 30px 0;
}
.process-diagram p {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reasons-to-choose {
  background: #fff;
  border-radius: 12px;
  padding: 15px 17px;
  box-shadow: 0 1px 8px rgba(32,92,122,0.08);
  margin-bottom: 14px;
  font-size: 1rem;
}

/* ========= SPACING ON MAIN & CARDS/SECTIONS ========= */
main section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
main section:last-child {
  margin-bottom: 0;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* ========= RESPONSIVENESS (Mobile First) ========= */
@media (max-width: 1024px) {
  .container { max-width: 92vw; }
  .main-nav { gap: 18px; }
}
@media (max-width: 900px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.15rem; }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    gap: 16px;
  }
  main section, .section {
    padding: 28px 5px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .benefits-grid {
    flex-direction: column;
    gap: 10px;
  }
  .faq-item {
    padding: 17px 8px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1rem; }
  .content-wrapper { gap: 10px; }
  main section, .section {
    padding: 18px 0px;
  }
  .testimonial-card {
    padding: 14px;
    border-radius: 13px 5px 5px 13px;
  }
}

/* ========= TRANSITIONS & MICRO-INTERACTIONS ========= */
a, button, .card, .cta-primary, .cta-secondary, .faq-item, .main-nav a, .mobile-menu-close,
.mobile-menu-toggle, .mobile-nav a, .service-list li, .features-list li {
  transition: all 0.17s cubic-bezier(0.65,0.45,0.31,1.01);
}

/* ====== Z-INDEXING ====== */
header { z-index: 40; position: relative; }
footer { z-index: 10; position: relative; }

/* ====== NO GRID, NO COLUMNS, FLEX ONLY ====== */
/* Verified: All layouts above use only flexbox for multi-item alignment, no display: grid or CSS columns. */
