/* ============================== */
/*    CSS RESET & NORMALIZATION    */
/* ============================== */

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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #FFF9F0;
  color: #234256;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #234256;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #64A484;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 1.25em;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 18px;
}
th {
  background: #234256;
  color: #FFF9F0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
tr:nth-child(even) td {
  background: #f1eee8;
}

/* ============================== */
/*     BRAND/GEOMETRIC VARIABLES  */
/* ============================== */
:root {
  --color-primary: #234256;
  --color-secondary: #64A484;
  --color-accent: #FFF9F0;
  --color-bg-light: #FFF9F0;
  --color-bg-card: #fff;
  --color-grey: #E9E7E1;
  --color-text: #234256;
  --color-link-hover: #64A484;
  --shadow-card: 0 4px 18px rgba(35,66,86,0.07);
  --radius-geometric: 12px;
  --radius-circle: 50%;
}

/* ============================== */
/*        TYPOGRAPHY, FONTS       */
/* ============================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: var(--color-primary);
}
h1 {
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
}
h2 {
  font-size: 1.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
h3 {
  font-size: 1.125rem;
  line-height: 1.20;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  letter-spacing: 0.03em;
}
p,
ul,
ol {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 1em;
}
strong {
  font-weight: 700;
}

.subheadline {
  font-size: 1.125rem;
  color: var(--color-secondary);
  margin-bottom: 28px;
  letter-spacing: 0.025em;
  line-height: 1.5;
  font-weight: 600;
}

/* ============================== */
/*           CONTAINERS           */
/* ============================== */
.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.text-section {
  max-width: 700px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ================================ */
/*            NAVIGATION            */
/* ================================ */
header {
  box-shadow: 0 2px 10px rgba(35,66,86,0.05);
  background: #fff;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 30;
  border-bottom: 4px solid var(--color-secondary);
}
.container.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 80px;
  position: relative;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.desktop-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  text-transform: uppercase;
  padding: 5px 0;
  position: relative;
  transition: color 0.2s;
}
.desktop-nav a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-secondary);
  position: absolute;
  left: 0; bottom: -3px;
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.2s, transform 0.23s;
}
.desktop-nav a:hover,
.desktop-nav a:focus {
  color: var(--color-secondary);
}
.desktop-nav a:hover::after,
.desktop-nav a:focus::after {
  opacity: 1;
  transform: scaleX(1);
}

.cta.primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--color-secondary);
  border: none;
  padding: 11px 28px;
  border-radius: var(--radius-geometric);
  box-shadow: 0 2px 8px rgba(35,66,86,0.07);
  transition: background 0.18s, transform 0.12s, box-shadow 0.20s;
  cursor: pointer;
  margin-left: 12px;
  text-transform: uppercase;
  position: relative;
  z-index: 21;
  display: inline-block;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #234256;
  color: #fff;
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 4px 18px rgba(35,66,86,0.13);
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  border: none;
  outline: none;
  border-radius: var(--radius-geometric);
  color: #fff;
  font-size: 2rem;
  padding: 7px 19px 7px 12px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.22s;
  z-index: 32;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-primary);
}

@media (max-width: 1000px) {
  .container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .desktop-nav {
    gap: 16px;
  }
}

/* MOBILE NAV START */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  color: #fff;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.77,.2,.05,1.0);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 32px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #fff;
  background: transparent;
  font-size: 2.2rem;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  margin-bottom: 38px;
  align-self: flex-start;
  z-index: 120;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-left: 22px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 0;
  border-bottom: 1.5px solid rgba(255,255,255,0.12);
  max-width: 340px;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-secondary);
  background: rgba(255,249,240,0.04);
}

@media (max-width: 480px) {
  .mobile-nav a {
    font-size: 1.05rem;
  }
  .mobile-menu-close {font-size: 2rem;}
}

@media (max-width: 480px) {
  .container.nav-bar {
    min-height: 56px;
  }
}
/* MOBILE NAV END */

/* ============================== */
/*            HERO/HEADER         */
/* ============================== */
.hero,
.about-hero,
.thank-you-section {
  background: linear-gradient(110deg,#FFF9F0 70%, #d9eae0 110%);
  border-radius: 0 0 48px 48px;
  box-shadow:0 4px 48px 0 rgba(35,66,86,0.06);
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  position: relative;
}
.hero .content-wrapper, .about-hero .content-wrapper, .thank-you-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 0;
}

@media (max-width: 768px) {
  .hero, .about-hero, .thank-you-section {
    padding: 28px 0 28px 0;
    border-radius: 0 0 24px 24px;
  }
  .hero .content-wrapper, .about-hero .content-wrapper, .thank-you-section .content-wrapper {
    align-items: flex-start;
    text-align: left;
  }
}

/* ============================== */
/*        GRID & CARD SYSTEM      */
/* ============================== */
.feature-grid, .service-summary-cards, .benefits-grid, .step-timeline,.post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 8px;
  justify-content: flex-start;
}

@media (max-width: 990px){
  .feature-grid, .service-summary-cards, .benefits-grid, .step-timeline, .post-grid {
    gap:20px;
  }
}
@media (max-width: 700px){
  .feature-grid, .service-summary-cards, .benefits-grid, .step-timeline, .post-grid {
    flex-direction: column;
    gap: 18px;
    margin-top:16px;
  }
}

.feature-card, .service-card, .benefit-box, .blog-post, .process-step {
  background: var(--color-bg-card);
  border-radius: var(--radius-geometric);
  box-shadow: var(--shadow-card);
  padding: 32px 20px 24px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 260px;
  gap: 14px;
  border: 2.5px solid transparent;
  transition: box-shadow 0.22s, border 0.23s, transform 0.18s;
}

.feature-card:hover,
.service-card:hover,
.benefit-box:hover,
.process-step:hover,
.blog-post:hover {
  box-shadow: 0 8px 32px rgba(35,66,86,0.12);
  border: 2.5px solid var(--color-secondary);
  transform: translateY(-3px) scale(1.03);
}
.feature-card img, .service-card img, .benefit-box img, .process-step img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-circle);
  margin-bottom: 8px;
  background: var(--color-bg-light);
  box-shadow: 0 2px 9px 0 rgba(35,66,86,0.04);
  object-fit: contain;
}
.price {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.07rem;
  margin-top:4px;
  align-self: flex-end;
}

.benefit-box h3 {
  font-size: 1.02rem;
  margin-bottom: 0.4em;
}

.blog-post h3 {
  color: var(--color-primary);
  font-size: 1.08rem;
}

.post-grid {
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 8px;
}

/***** FEATURED SECTIONS & TEXT-IMAGE LAYOUTS *****/
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/***** SECTION SPACING *****/
.section, .about-hero, .thank-you-section, .services-list-section, .services-benefits, .pricing-table-section, .pricing-cta, .blog-intro, .blog-recent-posts, .privacy-policy-section, .gdpr-section, .cookie-policy-section, .terms-section, .contact-section, .contact-cta, .process-section, .faq-section, .values {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ============================== */
/*           TESTIMONIALS         */
/* ============================== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px 20px 24px;
  margin-bottom: 20px;
  min-width: 260px;
  background: #FFF;
  color: var(--color-primary);
  box-shadow: 0 6px 28px rgba(35,66,86,0.13);
  border-radius: var(--radius-geometric);
  border-left: 8px solid var(--color-secondary);
  position: relative;
  font-size: 1.04rem;
  transition: box-shadow 0.21s, border 0.21s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 36px rgba(35,66,86,0.18);
  border-left: 8px solid var(--color-primary);
}
.client-name {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  color: var(--color-secondary);
  font-weight: 700;
  align-self: flex-end;
}

/* ============================== */
/*             FAQ                */
/* ============================== */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 800px)
{ .faq-list {flex-direction: column;gap:16px;}}

.faq-item {
  background: var(--color-bg-card);
  border-radius: var(--radius-geometric);
  box-shadow: var(--shadow-card);
  padding: 20px 22px 20px 22px;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-secondary);
  min-width: 260px;
  max-width: 520px;
  flex: 1 1 250px;
}
.faq-item h3 {
  font-size: 1.07rem;
  color: var(--color-primary);
  margin-bottom: 9px;
}

/* ============================== */
/*             PRICING            */
/* ============================== */
.pricing-table-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.pricing-table {
  margin: 32px auto 32px auto;
  width: 100%;
  box-shadow: 0 4px 24px 0 rgba(35,66,86,0.04);
  border-radius: var(--radius-geometric);
  overflow: hidden;
  background: #fff;
  font-size: 1.06rem;
}

.pricing-features ul {
  margin-top: 20px;
  margin-bottom: 8px;
  list-style: disc inside;
}
.pricing-note {
  color: var(--color-secondary);
  font-size: 1.06rem !important;
  font-weight: 600;
  margin-top: 6px;
}

@media (max-width: 600px){
  .pricing-table thead, .pricing-table tbody, .pricing-table tr, .pricing-table th, .pricing-table td {
    display: block;
    width: 100%;
  }
  .pricing-table tr {margin-bottom: 18px;}
}

/* =============================== */
/*    CONTACT, ADDRESS, HOURS      */
/* =============================== */
.address-block, .contact-info, .opening-hours {
  margin-bottom: 20px;
}
.address-block h2, .contact-info h2, .opening-hours h2 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-secondary);
  text-transform: uppercase;
}
address {
  font-style: normal;
  color: var(--color-text);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  font-size: 1rem;
}
.contact-info a {
  color: var(--color-secondary);
  font-weight: 600;
  text-decoration: underline;
}

/* =============================== */
/*           FOOTER                */
/* =============================== */
footer {
  background: #fff;
  border-top: 4px solid var(--color-secondary);
  margin-top: 50px;
  padding-top: 34px;
  box-shadow: 0 -2px 16px rgba(35,66,86,0.04);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.footer-nav a {
  color: var(--color-primary);
  transition: color 0.18s;
  font-weight: 500;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-secondary);
}
.footer-contact, .footer-hours, .footer-copyright {
  text-align: center;
  font-size: 1rem;
  color: #34596f;
  margin-bottom:6px;
}
.footer-contact span {
  color: #34596f;
  font-weight: 600;
}
.footer-copyright {
  font-size: 0.97rem;
  color: #466178;
  margin-top: 8px;
}

@media (max-width: 600px) {
  footer {padding-top: 18px;}
  .footer-nav {gap:10px;font-size:0.98rem;}
}

/* =============================== */
/*           BLOG                  */
/* =============================== */
.blog-categories {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0 6px 0;
  flex-wrap: wrap;
}
.blog-categories ul {
  display: flex;
  gap: 12px;
  list-style: none inside;
  margin: 0;
  padding: 0;
}
.blog-categories li {
  background: var(--color-secondary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
@media (max-width: 650px){
  .blog-categories ul {flex-direction:column;gap:6px;}
}

/* ============================== */
/*     COOKIES CONSENT BANNER     */
/* ============================== */
.cookie-banner {
  position: fixed;
  left: 0; right:0; bottom: 0;
  z-index: 2000;
  background: #234256;
  color: #fff;
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px 18px 28px;
  box-shadow: 0 -3px 16px rgba(35,66,86,0.09);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  border-radius: 18px 18px 0 0;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(.59,-0.13,.47,1.24), opacity 0.28s;
}

.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner-message {
  flex: 2 1 200px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.02rem;
  text-align: left;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex: 1 1 120px;
  align-items:center;
  justify-content: flex-end;
}
.cookie-banner-actions button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 7px 18px;
  border: none;
  border-radius: var(--radius-geometric);
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(35,66,86,0.05);
  cursor: pointer;
  outline: none;
  transition: background 0.19s, color 0.19s;
  margin-bottom:2px;
}
.cookie-banner-actions .cookie-accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner-actions .cookie-accept:hover,
.cookie-banner-actions .cookie-accept:focus {
  background: #fff;
  color: var(--color-secondary);
  border: 1.7px solid var(--color-secondary);
}
.cookie-banner-actions .cookie-reject {
  background: #fff;
  color: var(--color-primary);
  border: 1.7px solid var(--color-primary);
}
.cookie-banner-actions .cookie-reject:hover,
.cookie-banner-actions .cookie-reject:focus {
  background: var(--color-grey);
}
.cookie-banner-actions .cookie-settings {
  background: none;
  color: #fff;
  border: 1.7px solid #fff;
}
.cookie-banner-actions .cookie-settings:hover,
.cookie-banner-actions .cookie-settings:focus {
  background: #fff;
  color: var(--color-primary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 12px 12px 12px;
    gap: 7px;
    font-size: 0.98rem;
    border-radius: 10px 10px 0 0;
  }
}

/* =============================== */
/*        COOKIE MODAL POPUP       */
/* =============================== */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  width: 100vw;
  height: 100vh;
  z-index: 2002;
  background: rgba(35,66,86,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.23s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: var(--color-primary);
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(35,66,86,0.18);
  width: 96%;
  max-width: 390px;
  padding: 36px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookie-modal-in 0.4s cubic-bezier(.77,.03,.44,1.24);
}
@keyframes cookie-modal-in {
  0% { opacity: 0; transform: translateY(60px) scale(0.93);}
  100% { opacity: 1; transform: translateY(0) scale(1);}
}

.cookie-modal-close {
  position: absolute;
  top: 9px;
  right: 13px;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 2010;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--color-secondary);
}
.cookie-modal-content h3 {
  font-size: 1.24rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category input[type=checkbox]:focus {
  outline: 2px solid var(--color-secondary);
}
.cookie-category label {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #234256;
  font-size: 1rem;
  font-weight: 600;
  user-select: none;
  cursor: pointer;
}

.cookie-category.essential label {
  color: var(--color-secondary);
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 9px 21px;
  font-size:1rem;
  font-weight: 700;
  border-radius: var(--radius-geometric);
  border: 1.7px solid var(--color-secondary);
  background: var(--color-secondary);
  color: #fff;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal-actions .cookie-save {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-modal-actions .cookie-save:hover,
.cookie-modal-actions .cookie-save:focus {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.cookie-modal-actions .cookie-cancel {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.cookie-modal-actions .cookie-cancel:hover,
.cookie-modal-actions .cookie-cancel:focus {
  background: var(--color-grey);
}

/***** MODAL CHECKBOX CUSTOM STYLE *****/
.cookie-category input[type=checkbox] {
  accent-color: var(--color-secondary);
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}

/* ============================== */
/*  GEOMETRIC ADDITIONS/ACCENTS   */
/* ============================== */
/* geometric corners or polygons as BG */
.section::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 6px; left: -18px;
  width: 96px; height: 80px;
  background: linear-gradient(120deg, #DCF5E8 60%, transparent);
  opacity: 0.18;
  border-radius: 28% 72% 47% 53%/54% 33% 67% 46%;
  pointer-events: none;
}
.section {
  position: relative;
  z-index: 1;
}

@media (max-width:800px){
  .section::before {
    left: -10px; width: 54px; height: 40px;
  }
}
/* Add more geometric shape accents if desired */

/* ============================== */
/*      FLEXBOX LAYOUTS ONLY      */
/* ============================== */
.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; }

/***** Critical Spacing & Responsiveness *****/
.card, .feature-card, .service-card, .benefit-box, .blog-post, .process-step, .faq-item, .testimonial-card {
  margin-bottom: 20px;
}
@media (max-width: 480px){
  .feature-card, .service-card, .benefit-box, .blog-post, .process-step, .faq-item, .testimonial-card {padding:14px 10px;}
}

/* Guarantee minimum 20px margins by card and between flex children */
.feature-grid>*:not(:last-child), .service-summary-cards>*:not(:last-child), .benefits-grid>*:not(:last-child), .step-timeline>*:not(:last-child), .post-grid>*:not(:last-child), .testimonial-list>*:not(:last-child), .faq-list>*:not(:last-child) {
  margin-right: 0;
}

/***** Visual hierarchy and whitespace *****/
.content-wrapper {
  gap: 16px;
}

/* Responsive fix for content-wrapper grid */
@media (max-width: 900px) {
  .content-wrapper{
    gap: 16px;
  }
}
@media (max-width:600px){
  h1 {font-size: 1.43rem;}
  h2 {font-size: 1.10rem;}
  .section, .about-hero, .thank-you-section, .services-list-section, .services-benefits, .pricing-table-section, .pricing-cta, .blog-intro, .blog-recent-posts, .privacy-policy-section, .gdpr-section, .cookie-policy-section, .terms-section, .contact-section, .contact-cta, .process-section, .faq-section, .values {
    padding: 20px 2vw;
  }
}

/* ============================== */
/*       BUTTON EFFECTS/UI        */
/* ============================== */
button, .cta, .cookie-banner-actions button, .cookie-modal-actions button {
  transition: background 0.19s, color 0.19s, border 0.17s, box-shadow 0.19s, transform 0.17s;
}
button:active, .cta:active {
  transform: scale(0.96);
}

/* ============================== */
/*    ANIMATIONS/MICROINTERACT    */
/* ============================== */
.card, .feature-card, .service-card, .benefit-box, .blog-post, .testimonial-card, .faq-item, .process-step {
  transition: box-shadow 0.18s, border 0.18s, transform 0.13s;
}

/* ============================== */
/*     MISC MEDIA QUERIES         */
/* ============================== */
@media (max-width: 1100px) {
  .feature-card, .service-card, .benefit-box, .blog-post, .process-step {
    min-width: 200px;
    max-width: 100%;
    flex-basis: 45%;
  }
}
@media (max-width: 768px) {
  .feature-card, .service-card, .benefit-box, .blog-post, .process-step {
    flex-basis: 100%;
  }
}

/* =================================== */
/*       A11Y & FOCUS STATES           */
/* =================================== */
a:focus-visible, button:focus-visible {
  outline: 2px solid #64A484;
  outline-offset: 3px;
  z-index: 21;
}

/***** Hide visually but remain accessible *****/
.sr-hidden { position: absolute !important; width: 1px!important; height: 1px!important; padding:0; margin:-1px;overflow:hidden;clip:rect(1px,1px,1px,1px);border:0;}
