/* ================================================
   CSS RESET & BASELINE 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #28314A;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #EF7F1A;
}
img {
  max-width: 100%;
  vertical-align: middle;
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ================================================
   FONT IMPORTS (Google Fonts CDN)
================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;900&family=Open+Sans:wght@400;600&display=swap');

:root {
  --color-primary: #28314A;
  --color-secondary: #E6E6E6;
  --color-accent: #EF7F1A;
  --color-bg: #fff;
  --color-text: #28314A;
  --color-grey: #B0B6C4;
  --color-card-bg: #F8F8F8;
  --color-error: #C62828;
  --shadow-regular: 0 2px 12px 0 rgba(40, 49, 74, 0.08);
  --shadow-lg: 0 4px 32px 0 rgba(40, 49, 74, 0.12);
  --border-radius-main: 12px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --transition-ease: cubic-bezier(.4,0,.2,1);
}

/* ================================================
   GLOBAL CONTAINER & LAYOUT CLASSES
================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg);
  border-radius: var(--border-radius-main);
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
}

/* ================================================
   TYPOGRAPHY – GEOMETRIC/STRUCTURED
================================================== */
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-primary);
  margin-bottom: 0.4em;
  line-height: 1.2;
  text-rendering: geometricPrecision;
}
h1 {
  font-size: 2.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 24px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-top: 16px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 600;
}
p, blockquote, li, cite, td, th {
  font-family: var(--font-body);
  color: var(--color-text);
  font-size: 1rem;
  letter-spacing: 0.005em;
  line-height: 1.7;
}
blockquote {
  border-left: 4px solid var(--color-accent);
  padding-left: 16px;
  font-style: italic;
  font-weight: 600;
  background: var(--color-card-bg);
  margin-bottom: 8px;
  color: var(--color-primary);
}
cite {
  display: block;
  font-size: 0.94rem;
  color: var(--color-accent);
  margin-left: 6px;
  font-style: normal;
  font-weight: 700;
}
strong {
  font-weight: bold;
  color: var(--color-primary);
}
em {
  font-style: italic;
}

/* ================================================
   BUTTONS, CTAs, LINKS
================================================== */
.cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  background: var(--color-accent);
  color: #fff;
  padding: 13px 32px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-regular);
  transition: background 0.2s var(--transition-ease), box-shadow 0.2s var(--transition-ease), transform 0.17s var(--transition-ease);
  margin: 0 8px 8px 0;
  text-transform: uppercase;
}
.cta.primary, .btn.primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta.secondary, .btn.secondary {
  background: var(--color-accent);
  color: #fff;
}
.cta:hover, .cta:focus, .btn:hover, .btn:focus {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(239, 127, 26, 0.17);
  transform: translateY(-2px) scale(1.04) skew(-2deg, 0deg);
}

/* ================================================
   HEADER & NAVIGATION (desktop & mobile)
================================================== */
header {
  background: var(--color-bg);
  box-shadow: 0 2px 12px 0 rgba(40,49,74,0.05);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1003;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 84px;
  gap: 16px;
}
header a {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1rem;
  padding: 0 12px;
  letter-spacing: 0.01em;
  line-height: 84px;
  transition: color 0.12s var(--transition-ease);
  border-radius: 8px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
header nav a.cta {
  margin-left: 28px;
  line-height: normal;
  height: 44px;
  padding: 0 28px;
  font-size: 1rem;
}
header nav a:hover, header nav a:focus {
  background: var(--color-secondary);
  color: var(--color-accent);
}
header img {
  height: 44px;
  width: auto;
  margin-right: 20px;
  display: block;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: var(--color-secondary);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  color: var(--color-primary);
  border: none;
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.16s var(--transition-ease), box-shadow 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-accent);
  color: #fff;
}

/* Responsive nav: hidden on desktop */
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ================================================
   MOBILE MENU – FULLSCREEN SLIDEOVER
================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1100;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.36s var(--transition-ease);
  box-shadow: 0 0 36px 0 rgba(40,49,74,0.27);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 22px 0 16px 24px;
  background: transparent;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  border: none;
  border-radius: 8px;
  align-self: flex-start;
  cursor: pointer;
  width: 48px;
  height: 48px;
  transition: background 0.16s, color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-accent);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  padding: 12px 32px 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.34rem;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 19px 0;
  border-radius: 8px;
  margin: 0;
  background: none;
  transition: background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:active {
  background: var(--color-accent);
  color: #fff;
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ================================================
   MAIN HERO HEADER STYLES
================================================== */
.hero {
  background: var(--color-primary);
  color: #fff;
  border-radius: 0 0 60px 60px;
  box-shadow: 0 6px 32px 0 rgba(40,49,74,0.11);
  padding: 48px 0 44px 0;
  margin-bottom: 56px;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 600px;
  gap: 20px;
}
.hero h1, .hero h2 {
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 0.035em;
  text-shadow: 0 2px 18px rgba(40,49,74,0.11);
  margin-top: 0;
}
.hero p {
  color: #fff;
  font-size: 1.14rem;
  margin-bottom: 18px;
}
.hero .cta {
  background: var(--color-accent);
  color: #fff !important;
  margin-top: 16px;
  box-shadow: 0 4px 22px 0 rgba(239,127,26,0.16);
}
.hero .cta:hover, .hero .cta:focus {
  background: #fff;
  color: var(--color-accent) !important;
  box-shadow: 0 4px 12px 0 rgba(40,49,74,0.16);
}

@media (max-width: 768px) {
  .hero {
    padding: 34px 0 28px 0;
    margin-bottom: 32px;
    border-radius: 0 0 36px 36px;
  }
  .hero .content-wrapper {
    max-width: 100%;
    gap: 15px;
  }
  .hero h1, .hero h2 {
    font-size: 1.4rem;
  }
  .hero .cta { font-size: 1rem; }
}

/* ================================================
   FLEX LAYOUT UTILITIES (MANDATORY)
================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: var(--border-radius-main);
  box-shadow: var(--shadow-regular);
  padding: 28px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 260px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 20px 32px;
  border-radius: var(--border-radius-main);
  box-shadow: var(--shadow-regular);
  margin-bottom: 20px;
  min-height: 100px;
  max-width: 650px;
  border-left: 8px solid var(--color-accent);
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 16px 10px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================================================
   LISTS FOR FEATURES, VALUES, USPs
================================================== */
.feature_grid, .value_icons, .usp_icons, .trust-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 10px;
}
.feature_grid li, .value_icons li, .usp_icons li, .trust-icons li {
  background: var(--color-card-bg);
  border-radius: var(--border-radius-main);
  padding: 20px 24px;
  box-shadow: var(--shadow-regular);
  min-width: 210px;
  font-family: var(--font-body);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}
.feature_grid img, .value_icons img, .usp_icons img, .trust-icons img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--color-secondary);
  padding: 6px;
  margin-right: 6px;
  box-shadow: 0 2px 8px 0 rgba(40,49,74,0.07);
}
@media (max-width: 768px) {
  .feature_grid, .value_icons, .usp_icons, .trust-icons {
    flex-direction: column;
    gap: 12px;
  }
}

/* ================================================
   SERVICE CARDS & LISTS
================================================== */
.service_overview_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service_card {
  background: var(--color-card-bg);
  border-radius: var(--border-radius-main);
  box-shadow: var(--shadow-regular);
  padding: 20px 22px;
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service_card h3 {
  color: var(--color-primary);
  font-size: 1.14rem;
}
.service_card span {
  color: var(--color-accent);
  font-weight: 700;
}
@media (max-width: 900px) {
  .service_overview_cards {
    flex-direction: column;
    gap: 16px;
  }
  .service_card {
    min-width: 100%;
  }
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 16px 0 12px 0;
}
.service-list li {
  background: var(--color-card-bg);
  border-radius: var(--border-radius-main);
  box-shadow: var(--shadow-regular);
  padding: 24px 24px 20px 24px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-list span {
  color: var(--color-accent);
  font-weight: 700;
}
@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    gap: 14px;
  }
}

/* ================================================
   PRICING TABLE
================================================== */
.pricing_table {
  width: 100%;
  background: var(--color-card-bg);
  border-radius: var(--border-radius-main);
  box-shadow: var(--shadow-regular);
  border: none;
  font-size: 1rem;
  margin-bottom: 18px;
}
.pricing_table th, .pricing_table td {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 18px 18px;
  border-bottom: 1px solid var(--color-secondary);
  text-align: left;
}
.pricing_table th {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.pricing_table tbody tr:last-child td {
  border-bottom: none;
}
.pricing_table td:last-child {
  color: var(--color-accent);
  font-weight: bold;
}
.pricing_notes ul {
  margin: 0 0 0 1.2em;
  color: var(--color-grey);
  font-size: 0.97rem;
  line-height: 1.6;
}

/* ================================================
   FOOTER
================================================== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 36px 0 14px 0;
  border-radius: 48px 48px 0 0;
}
footer .container {
  flex-direction: column;
  gap: 8px;
}
footer .content-wrapper {
  align-items: flex-start;
  gap: 6px;
}
footer nav {
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #fff;
  opacity: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
footer nav a {
  color: #fff;
  padding: 0 4px;
  border-radius: 6px;
  font-size: 1em;
  transition: background 0.2s, color 0.12s;
  font-weight: 400;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-accent);
  color: #fff;
}
.contact-short {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  font-size: 0.96em;
  font-family: var(--font-body);
}
.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 38px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 9px 0 rgba(40,49,74,0.09);
  transition: background 0.16s, box-shadow 0.14s;
}
.social-links a:hover, .social-links a:focus {
  background: var(--color-accent);
}
.social-links img {
  width: 22px;
  height: 22px;
  display: block;
}

@media (max-width: 620px) {
  footer .contact-short {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
}

/* ================================================
   RATING SUMMARY / BADGE
================================================== */
.rating_summary {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 rgba(40,49,74,0.07);
  margin: 14px 0 0 0;
  display: inline-block;
}

/* ================================================
   OL/UL/FAQ FORMATTING
================================================== */
.text-section ul,
.content-wrapper ul:not(.feature_grid):not(.value_icons):not(.usp_icons):not(.trust-icons), .text-section ol {
  margin-left: 1.3em;
  margin-bottom: 12px;
  line-height: 1.6;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 8px;
  color: var(--color-primary);
  position: relative;
}
.text-section ul li strong { color: var(--color-accent); font-weight: bold; }
.text-section ul > li:before {
  content: "■";
  color: var(--color-accent);
  font-size: 0.8em;
  position: absolute;
  left: -1.3em;
  top: 0.1em;
}
.text-section ol > li:before {
  display: none;
}

/* ================================================
   FORMS (contact, modals)
================================================== */
input, textarea, select {
  background: #fff;
  border: 1.5px solid var(--color-secondary);
  border-radius: 8px;
  padding: 11px 15px;
  margin-bottom: 13px;
  font-size: 1rem;
  color: var(--color-primary);
  box-shadow: 0 2px 8px 0 rgba(40,49,74,0.04);
  width: 100%;
  transition: border 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  outline: none;
}

/* ================================================
   RESPONSIVE ADAPTIVE LAYOUT
================================================== */
@media (max-width: 992px) {
  .container {
    padding: 0 9px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 19px;
  }
  .section {
    border-radius: 22px;
    margin-bottom: 28px;
    padding: 19px 2px;
  }
}

/* ================================================
   ANIMATION & VISUAL INTERACTIONS
================================================== */
.card, .service_card, .testimonial-card, .feature_grid li, .usp_icons li, .value_icons li, .trust-icons li {
  transition: box-shadow 0.19s var(--transition-ease), transform 0.15s var(--transition-ease);
}
.card:hover, .service_card:hover, .testimonial-card:hover, .feature_grid li:hover, .usp_icons li:hover, .value_icons li:hover, .trust-icons li:hover {
  box-shadow: 0 8px 20px 0 rgba(40,49,74,0.17);
  transform: translateY(-3px) scale(1.03) skew(-1deg, 0deg);
  z-index: 2;
}

/* ================================================
   COOKIE CONSENT BANNER & MODAL
================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 -4px 24px 0 rgba(40,49,74,0.20);
  padding: 28px 20px;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1201;
  flex-wrap: wrap;
  gap: 18px;
  animation: fadeInUp 0.5s var(--transition-ease);
  border-top: 4px solid var(--color-accent);
}
.cookie-banner p {
  margin-right: 32px;
  font-size: 1.01rem;
}
.cookie-banner .cookie-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 10px 18px;
  border-radius: 7px;
  border: none;
  margin: 0 9px 0 0;
  background: var(--color-accent);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(239,127,26,0.09);
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .cookie-btn.settings {
  background: var(--color-primary);
}
.cookie-banner .cookie-btn.reject {
  background: var(--color-grey);
  color: #fff;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--color-primary);
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 8px;
    gap: 10px;
  }
  .cookie-banner p {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1202;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(40,49,74, 0.53);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease-out;
}
.cookie-modal {
  background: var(--color-bg);
  border-radius: 18px;
  box-shadow: 0 8px 36px 0 rgba(40,49,74,0.18);
  padding: 32px 24px 22px 24px;
  min-width: 330px;
  max-width: 96vw;
  z-index: 1203;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  animation: fadeInUp 0.33s var(--transition-ease);
}
.cookie-modal h2 {
  margin-bottom: 12px;
  font-size: 1.6rem;
  color: var(--color-accent);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 13px 0 11px 0;
}
.cookie-modal label {
  font-weight: 700; font-size: 1.07rem;
  color: var(--color-primary);
  margin-right: 10px;
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--color-accent);
  width: 22px; height: 22px;
  margin: 0 8px 0 0;
}
.cookie-modal .cookie-btn {
  margin-top: 11px;
  min-width: 128px;
}
.cookie-modal .cookie-btn.close {
  background: var(--color-grey);
  position: absolute;
  top: 16px; right: 16px;
  padding: 0 10px;
  height: 33px; width: 33px;
  border-radius: 9px;
  color: #fff;
  font-size: 1.42rem;
}
.cookie-modal .cookie-btn.close:hover {
  background: var(--color-accent);
}

@media (max-width: 520px) {
  .cookie-modal { min-width: 95vw; padding: 17px 6px 13px 8px; }
}

@keyframes fadeInUp {
  from { opacity:0; transform: translateY(50px); }
  to { opacity:1; transform: translateY(0); }
}
@keyframes fadeIn {
  from {opacity:0;}
  to {opacity:1;}
}

/* ================================================
   MISCELLANEOUS & UTILITY
================================================== */
::-webkit-scrollbar {
  width: 10px;
  background: var(--color-secondary);
  border-radius: 15px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 15px;
}

/* Utility classes */
.text-center { text-align: center; }
.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 24px; }

/* ================================================
   PRINT & ACCESSIBILITY
================================================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .section, .container { box-shadow: none !important; background: #fff !important; }
}

/* ================================================
   GEOMETRIC STRUCTURED DECORATIVE ELEMENTS
================================================== */
.section {
  position: relative;
  overflow: visible;
  box-shadow: 0 2px 14px 0 rgba(40,49,74,0.07);
}
.section:before {
  content: "";
  position: absolute;
  top: -22px;
  left: -18px;
  width: 40px; height: 40px;
  background: var(--color-accent);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  opacity: 0.10;
  z-index: 1;
}
.section:after {
  content: "";
  position: absolute;
  bottom: -30px; right: -30px;
  width: 52px; height: 52px;
  background: var(--color-secondary);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  opacity: 0.12;
  z-index: 1;
}
@media (max-width: 992px) {
  .section:before, .section:after { display: none; }
}

/* ================================================
   CLEANUP
================================================== */
/* Make sure all sections, cards etc. have proper spacing and no overlap */
.section, .card-container, .card, .content-grid, .testimonial-card, .service_card, .service-list li, .feature_grid li, .value_icons li, .usp_icons li, .trust-icons li { margin-bottom: 20px; }

/* Force minimum margin between all major blocks & cards */
.section > *,
.content-wrapper > * {
  margin-bottom: 20px;
}
.section > *:last-child,
.content-wrapper > *:last-child {
  margin-bottom: 0;
}

/* Ensure form fields and cta are not sticking together */
form .cta, .text-section .cta, .content-wrapper .cta {
  margin-top: 14px;
}

/* Ensures that image and icons are never too large */
img, svg {
  max-width: 100%;
  height: auto;
}
section {
  padding: 15px;
}
/****************** END OF STYLE.CSS *****************/
