/* ========================================================
   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,
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, 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #EEF4F8;
  color: #235576;
  min-height: 100vh;
  font-weight: 400;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  text-decoration: none;
  color: #235576;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #1B8556;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
table {
  border-collapse: collapse;
  width: 100%;
}

/* ========================================================
   SCANDINAVIAN CLEAN BRAND THEME
   ======================================================== */
:root {
  --color-primary: #235576;
  --color-secondary: #FFFFFF;
  --color-bg: #EEF4F8;
  --color-accent: #1B8556;
  --color-accent-light: #3CAF85;
  --color-grey: #E3E9ED;
  --color-shadow: rgba(44, 77, 108, 0.07);
  --color-dark: #133545;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body {
  background: var(--color-bg);
  color: var(--color-primary);
}

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

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-dark);
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 12px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.22rem;
  margin-bottom: 4px;
}
h4 {
  font-size: 1rem;
}

p, li, .subheadline {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #235576;
}
.subheadline {
  font-size: 1.13rem;
  color: #235576;
  font-weight: 400;
}

strong {
  font-weight: 700;
}

/* ========================================================
   HEADER + NAVIGATION
   ======================================================== */
header {
  width: 100%;
  background: var(--color-secondary);
  box-shadow: 0 2px 18px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 0;
}
header img {
  height: 38px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary);
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-accent-light);
  color: #fff;
}

/* CTA Button in nav & elsewhere */
.cta-button {
  background: var(--color-accent);
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 32px;
  font-size: 1.1rem;
  box-shadow: 0 2px 10px var(--color-shadow);
  transition: background 0.20s, transform 0.14s;
  border: none;
  display: inline-block;
  cursor: pointer;
  outline: none;
}
.cta-button.mini {
  padding: 10px 20px;
  font-size: 1rem;
}
.cta-button:hover, .cta-button:focus {
  background: #31956b;
  transform: translateY(-1px) scale(1.04);
  color: #fff;
}

/* Mobile Burger */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  transition: background 0.18s;
  position: relative;
  z-index: 1101;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-accent-light);
  background: var(--color-primary);
}

/* Mobile Nav Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 32px rgba(35, 85, 118, 0.23);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.77,0,0.175,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 0 0 0;
  z-index: 2002;
  gap: 0;
  overscroll-behavior: contain;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-grey);
  color: var(--color-primary);
  font-size: 1.7rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin: 0 32px 12px 0;
  transition: background 0.14s, color 0.14s;
  border: none;
  outline: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-accent);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  width: 90vw;
  max-width: 340px;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding: 18px 18px 18px 14px;
  border-radius: 12px;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-bg);
  transition: background 0.17s, color 0.18s;
  text-align: left;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent-light);
  color: #fff;
}

/* Hide nav, show burger on mobile */
@media (max-width: 992px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* Hide burger on desktop */
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========================================================
   HERO, SECTIONS, SPACING
   ======================================================== */
.section,
.hero,
.features,
.services-overview,
.about-snippet,
.cta-banner,
.services-hero,
.service-benefits,
.testimonials-preview,
.cta-section,
.cta-simple,
.pricing,
.privacy-policy,
.gdpr,
.cookies-policy,
.terms-utilizzo,
.confirmation,
.faq,
.contact-section,
.about-company,
.team,
.why-choose-us,
.testimonials-main {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-secondary);
  border-radius: 18px;
  box-shadow: 0 4px 36px var(--color-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero {
  background: var(--color-accent-light);
  color: #fff;
  text-align: center;
  border-radius: 0 0 28px 28px;
}
.hero .container {
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero h1, .hero .subheadline {
  color: #fff;
}
.hero .cta-button {
  margin-top: 22px;
}

.content-grid, .feature-grid, .service-grid, .testimonial-list, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
}
.card-container {
  gap: 24px;
}
.card {
  background: var(--color-secondary);
  border-radius: 14px;
  box-shadow: 0 2px 18px var(--color-shadow);
  margin-bottom: 20px;
  flex: 1 1 300px;
  padding: 24px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.service-grid > div {
  background: var(--color-grey);
  border-radius: 12px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 240px;
  min-width: 220px;
  box-shadow: 0 2px 12px var(--color-shadow);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid li {
  background: var(--color-grey);
  padding: 28px 20px 24px 20px;
  border-radius: 14px;
  flex: 1 1 220px;
  min-width: 200px;
  box-shadow: 0 2px 12px var(--color-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.feature-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
}

.service-list, .benefit-list, .reasons-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}
.service-list li, .benefit-list li, .reasons-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.service-list img, .benefit-list img {
  width: 30px;
  height: 30px;
}

.area-coverage {
  background: var(--color-grey);
  border-radius: 10px;
  padding: 16px 18px;
  margin-top: 24px;
  box-shadow: 0 2px 10px var(--color-shadow);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 7px;
  font-size: 1rem;
  line-height: 1.6;
}
.text-section ul {
  margin-left: 19px;
  gap: 9px;
}
.text-section ul li {
  list-style-type: disc;
  margin-bottom: 5px;
  color: var(--color-primary);
}
.text-section a {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: underline;
}
.text-section a:hover {
  color: var(--color-primary);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonials-preview, .testimonials-main {
  background: var(--color-bg);
  box-shadow: none;
  border-radius: 18px;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 13px rgba(35,85,118,0.08);
  padding: 20px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  min-width: 230px;
  max-width: 350px;
  flex: 1 1 270px;
  color: #213447;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(27,133,86,0.17);
  transform: translateY(-2px) scale(1.04);
}
.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1rem;
}
.star-rating {
  color: #FFD600;
  font-size: 1.19em;
  letter-spacing: 1px;
  user-select: none;
}
.star-rating-average {
  margin-top: 22px;
  font-family: var(--font-display);
  color: var(--color-accent);
  font-size: 1.08rem;
}

/***** Pricing Table *****/
.pricing-table {
  width: 100%;
  margin: 18px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  background: var(--color-grey);
  padding: 24px 22px;
  border-radius: 13px;
  box-shadow: 0 2px 10px var(--color-shadow);
}
.pricing-table table {
  width: 100%;
  font-size: 1rem;
  color: var(--color-primary);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-bottom: 12px;
}
.pricing-table th,
.pricing-table td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid #e9edf1;
}
.pricing-table th {
  background: var(--color-accent-light);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.06em;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.service-extras, .custom-quotes-note {
  background: var(--color-accent-light);
  border-radius: 10px;
  color: #fff;
  padding: 10px 15px;
  font-size: 1rem;
}

/* ========================================================
   FAQ
   ======================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 22px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: box-shadow 0.19s;
}
.faq-item h3 {
  font-size: 1.08rem;
  color: var(--color-primary);
  margin: 0 0 6px 0;
  cursor: pointer;
  position: relative;
}
.faq-item h3::after {
  content: '+';
  float: right;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1em;
  margin-left: 12px;
  transition: transform 0.18s;
}
.faq-item.active h3::after {
  content: '-';
  color: var(--color-accent-light);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  color: var(--color-dark);
}
.faq-item.active .faq-answer {
  display: block;
  animation: faqFade .22s ease-in;
}
@keyframes faqFade {
  from {opacity: 0;transform: translateY(-5px);}
  to   {opacity: 1;transform: translateY(0);}
}

/* ========================================================
   CONTACT SECTION
   ======================================================== */
.company-contacts {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.company-contacts .text-section,
.company-contacts .map-snippet {
  flex: 1 1 300px;
  min-width: 220px;
  background: var(--color-grey);
  border-radius: 10px;
  padding: 18px 18px 12px 18px;
  box-shadow: 0 2px 10px var(--color-shadow);
  color: var(--color-dark);
}
.company-contacts ul {
  margin-top: 9px;
  gap: 8px;
  display: flex;
  flex-direction: column;
}
.company-contacts li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-dark);
  font-size: 1rem;
}
.company-contacts img {
  width: 24px;
  height: 24px;
  margin-right: 6px;
}

/
.cta-contact {
  margin-top: 25px;
}

/***** Confirmation Thank You Page *****/
.confirmation .thank-you-message {
  font-size: 1.15rem;
  color: var(--color-accent);
  margin-bottom: 18px;
  margin-top: 6px;
}
.confirmation .next-steps {
  background: var(--color-grey);
  border-radius: 11px;
  padding: 13px 15px;
  margin-bottom: 19px;
}
.confirmation .next-steps ul li {
  padding-bottom: 5px;
  color: var(--color-primary);
}

/* ========================================================
   FOOTER
   ======================================================== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 40px 0 18px 0;
  width: 100%;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
footer a, .footer-contact span, .footer-hours span, .footer-copy {
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
}
footer a:hover {
  color: var(--color-accent-light);
}
footer img {
  height: 36px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10px 0 12px 0;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin: 12px 0 0 0;
}
.footer-contact img {
  height: 20px;
  width: 20px;
  margin-bottom: -4px;
  margin-right: 4px;
}
.footer-hours {
  margin: 8px 0 6px 0;
}
.footer-copy {
  width: 100%;
  font-size: 0.97rem;
  margin-top: 16px;
  opacity: 0.81;
}

/* ========================================================
   COOKIE BANNER & MODAL
   ======================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: var(--color-primary);
  border-top: 2px solid var(--color-accent);
  box-shadow: 0 -2px 18px var(--color-shadow);
  padding: 22px 10px 22px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3020;
  gap: 16px;
  animation: cookieSlideIn .5s cubic-bezier(0.75,0,0.17,1);
}
@keyframes cookieSlideIn {
  from {transform: translateY(120%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-text {
  font-size: 1.09rem;
  font-family: var(--font-body);
  text-align: center;
  color: var(--color-primary);
  max-width: 640px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--color-accent);
  color: #fff;
  border-radius: 24px;
  border: none;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-right: 2px;
  margin-bottom: 2px;
  transition: background 0.16s, color 0.16s;
  cursor: pointer;
}
.cookie-btn.reject {
  background: #DF4444;
  color: #fff !important;
}
.cookie-btn.settings {
  background: var(--color-accent-light);
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(0.94);
}

/* Cookie MODAL overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4010;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(35,85,118,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn .28s cubic-bezier(0.36,1.13,0.48,1) both;
}
@keyframes modalFadeIn {
  from {opacity: 0;}
  to   {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 52px rgba(35,85,118,0.19);
  padding: 36px 28px 30px 28px;
  width: 95vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.33rem;
  color: var(--color-primary);
  margin-bottom: 1px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
  justify-content: space-between;
}
.cookie-category label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
}
.cookie-toggle {
  width: 40px;
  height: 24px;
  border-radius: 16px;
  background: var(--color-grey);
  display: flex;
  align-items: center;
  transition: background .2s;
  position: relative;
  margin-left: 0.6em;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 40px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}
.cookie-toggle span {
  display: block;
  width: 20px;
  height: 20px;
  background: #c9d5dd;
  border-radius: 50%;
  transition: transform .2s, background .24s;
  position: absolute;
  left: 2px;
  top: 2px;
}
.cookie-toggle input[type="checkbox"]:checked + span {
  background: var(--color-accent-light);
  transform: translateX(16px);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 20px;
  right: 18px;
  background: var(--color-grey);
  border: none;
  color: var(--color-primary);
  font-size: 1.35rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal .modal-close:hover, 
.cookie-modal .modal-close:focus {
  background: var(--color-accent);
  color: #fff;
}

.cookie-category .essential {
  opacity: 1;
}
.cookie-category .cookie-toggle[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}

/* ========================================================
   RESPONSIVENESS
   ======================================================== */
@media (max-width: 1200px) {
  .container {
    max-width: 991px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 730px;
  }
  .feature-grid, .service-grid, .testimonial-slider, .testimonial-list, .card-container, .company-contacts {
    flex-wrap: wrap;
    gap: 18px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
  .section,
  .hero,
  .features,
  .services-overview,
  .about-snippet,
  .cta-banner,
  .services-hero,
  .service-benefits,
  .testimonials-preview,
  .cta-section,
  .cta-simple,
  .pricing,
  .privacy-policy,
  .gdpr,
  .cookies-policy,
  .terms-utilizzo,
  .confirmation,
  .faq,
  .contact-section,
  .about-company,
  .team,
  .why-choose-us,
  .testimonials-main {
    padding: 26px 8px;
    border-radius: 10px;
    margin-bottom: 32px;
  }
  .feature-grid, .service-grid, .testimonial-slider, .testimonial-list, .card-container, .company-contacts {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li,
  .service-grid > div {
    border-radius: 8px;
    padding: 16px 11px;
    min-width: 0;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  .company-contacts .text-section,
  .company-contacts .map-snippet {
    padding: 11px 8px 7px 8px;
    border-radius: 7px;
  }
  .footer-contact, .footer-nav {
    gap: 12px;
    font-size: 0.97rem;
    flex-wrap: wrap;
  }
  .footer-hours, .footer-copy {
    font-size: 0.93rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}
@media (max-width: 620px) {
  .container {
    padding: 0 6px;
  }
  .service-list, .benefit-list, .reasons-list {
    font-size: 0.98rem;
    gap: 10px;
  }
  .star-rating-average {
    font-size: 1rem;
  }
}

/***** Accessibility focus-visible states *****/
a:focus-visible, .cta-button:focus-visible, .cookie-btn:focus-visible {
  outline: 2px dashed var(--color-accent-light);
  outline-offset: 2px;
}

/* ========================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ======================================================== */
.cta-button, .card, .feature-grid li, .service-grid > div, .testimonial-card, .faq-item, .cookie-btn {
  transition: box-shadow 0.16s, transform 0.16s, background 0.18s, color 0.18s;
}
.card:hover, .feature-grid li:hover, .service-grid > div:hover {
  box-shadow: 0 6px 24px rgba(35, 85, 118, 0.17), 0 1px 1px rgba(27,133,86,0.04);
  transform: translateY(-2px) scale(1.02);
}

/***** Hide scrollbars for overlays *****/
.mobile-menu, .cookie-modal-overlay {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ========================================================
   UTILITIES
   ======================================================== */
.gap-10  { gap: 10px; }
.gap-20  { gap: 20px; }
.gap-24  { gap: 24px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom:20px; }

/***** Prevent Overlapping *****/
.card, .feature-grid li, .service-grid > div, .testimonial-card, .faq-item {
  margin-bottom: 20px;
}
.section > *, .hero > *, .container > * {
  margin-bottom: 20px;
}

/***** Remove last margin-/gap on column flex layouts *****/
.section > *:last-child, .container > *:last-child {
  margin-bottom: 0 !important;
}

