/* ---- 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, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ---- VARIABLES ---- */
:root {
  --color-primary: #1B2330;
  --color-secondary: #18A0FB;
  --color-accent: #F6F8FA;
  --color-bg: #fff;
  --color-bg-alt: #F6F8FA;
  --color-dark: #10131a;
  --color-mid: #313846;
  --color-light: #F6F8FA;
  --color-border: #d2d7df;
  --color-shadow: rgba(27,35,48,0.08);
  --color-text: #10131a;
  --color-grey: #A0A6B0;
  --color-error: #d11a2a;
  --shadow-lg: 0 10px 40px rgba(27, 35, 48, 0.14);
  --shadow-sm: 0 2px 8px rgba(27,35,48,0.08);

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ---- BASE TYPOGRAPHY ---- */
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: background 0.4s;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.16;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 22px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 18px;
}
h4, h5, h6 {
  font-size: 1.125rem;
}
p, ul, ol, li, blockquote, table {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
}
strong {
  font-weight: 600;
  color: var(--color-primary);
}

blockquote {
  border-left: 4px solid var(--color-grey);
  padding-left: 24px;
  margin: 12px 0;
  color: var(--color-mid);
  font-style: italic;
  background: var(--color-bg-alt);
}

/* ---- GENERAL SPACING ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section {
  margin-bottom: 32px;
  color: var(--color-mid);
}
.section, 
.hero-section, .features-section, .services-section, .testimonials-section, .contact-section,
.about-section, .team-section, .brands-section, .services-overview-section,
.service-details-section, .cta-section, .gadgets-intro-section, .gadget-comparison-section, .gadgets-cta-section, .blog-intro-section, .blog-posts-section, .newsletter-section,
.contact-details-section, .faq-section, .legal-section, .thank-you-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(27,35,48,0.13);
  z-index: 1;
}
.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;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(27,35,48,0.07);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---- MAIN NAVIGATION ---- */
header {
  width: 100%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 12px 20px 8px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.main-nav li {
  list-style: none;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
}
.main-nav .cta-button {
  margin-left: 28px;
}

/* ---- CTA BUTTON ---- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .05em;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 2px 12px rgba(24,160,251,0.08);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  outline: none;
  cursor: pointer;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: #136caa;
  color: #fff;
  box-shadow: 0 4px 16px rgba(24,160,251,0.18);
}

/* ---- MOBILE MENU (BURGER MENU) ---- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 22px;
  z-index: 1001;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-secondary);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,35,48,0.82);
  z-index: 2000;
  flex-direction: column;
  align-items: flex-end;
  transition: transform 0.35s cubic-bezier(.5,.1,.4,1), opacity 0.3s;
  transform: translateX(100%);
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  margin: 24px 24px 0 0;
  cursor: pointer;
  z-index: 2100;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  margin-right: 42px;
  margin-top: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  margin-bottom: 8px;
  padding: 10px 0 10px 18px;
  border-radius: 4px 0 0 4px;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* ---- HERO SECTION ---- */
.hero-section {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  display: flex;
  align-items: center;
  min-height: 320px;
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero-section h1 {
  color: var(--color-dark);
  font-size: 2.6rem;
  margin-bottom: 18px;
}
.hero-section p {
  font-size: 1.13rem;
  color: var(--color-mid);
  margin-bottom: 24px;
}

/* ---- SERVICES & FEATURES ---- */
.features-section ul,
.services-section ul,
.services-overview-section ul,
.service-details-section ul,
.faq-list,
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: column;
  margin-top: 12px;
}
.features-section ul li,
.services-section ul li,
.services-overview-section ul li,
.service-details-section ul li,
.faq-list li,
.blog-post-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(49,56,70,0.06);
  padding: 24px 20px;
  transition: box-shadow 0.15s, border-color 0.14s;
  border: 1px solid var(--color-border);
  margin-bottom: 0;
  min-width: 0;
  word-break: break-word;
  display: flex;
  flex-direction: column;
}
.features-section ul li img {
  width: 28px;
  height: 28px;
  margin-right: 16px;
  vertical-align: middle;
  display: inline-block;
}
.features-section ul li {
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 17px;
}
.services-section h3, .services-overview-section h3, .blog-post-list h3 {
  margin-bottom: 7px;
}
.services-section ul li strong,
.service-details-section ul li strong,
.gadget-comparison-section table th,
.gadget-comparison-section table td {
  color: var(--color-primary);
}
.services-section ul li p,
.service-details-section ul li {
  color: var(--color-mid);
}
.services-section .cta-button,
.cta-section .cta-button {
  align-self: flex-start;
}

/* ---- TABLE STYLES ---- */
table {
  width: 100%;
  margin-bottom: 24px;
  font-size: 1rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(27,35,48,0.08);
  overflow: hidden;
}
thead th {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 14px 8px;
  font-size: 1.07rem;
}
td, th {
  padding: 12px 10px;
  border-bottom: 1px solid var(--color-border);
}
tbody tr:last-child td {
  border-bottom: 0;
}

/* ---- BLOG CATEGORY NAV ---- */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  margin-bottom: 8px;
}
.blog-categories a {
  background: none;
  border: 1.5px solid var(--color-grey);
  border-radius: 12px;
  color: var(--color-primary);
  font-size: .96rem;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 9px 18px;
  transition: border 0.15s, background 0.13s, color 0.15s;
}
.blog-categories a:hover, .blog-categories a:focus {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}

/* ---- TAGS ---- */
.tags {
  display: inline-block;
  color: var(--color-secondary);
  font-size: .91rem;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ---- NEWSLETTER ---- */
.newsletter-section .cta-button {
  margin-top: 10px;
}

/* ---- FOOTER ---- */
footer {
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 34px 0 24px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 18px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: var(--color-grey);
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-primary);
}
.footer-info {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-top: 12px;
  color: var(--color-grey);
  font-size: 1rem;
}
.footer-info img {
  height: 26px;
  width: auto;
  opacity: 0.7;
}

/* ---- FORMS ---- */
input[type="search"], input[type="text"], input[type="email"], textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  color: var(--color-primary);
  margin-top: 7px;
  margin-bottom: 18px;
  transition: border 0.13s;
  box-sizing: border-box;
}
input[type="search"]:focus, input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--color-secondary);
  outline: none;
}
label {
  font-size: 1rem;
  font-family: var(--font-display);
  margin-right: 8px;
}

/* ---- FAQ SECTION ---- */
.faq-list li {
  margin-bottom: 0px;
  background: #fff;
  border-left: 4px solid var(--color-secondary);
}
.faq-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-primary);
}
.faq-list p {
  margin-top: 0px;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section h2 {
  text-align: left;
}
.testimonial-card {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
  box-shadow: 0 2px 12px rgba(49,56,70,0.13);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 26px;
  min-width: 0;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: 1.07rem;
  transition: box-shadow 0.17s, border-color 0.13s;
}
.testimonial-card blockquote {
  color: var(--color-primary);
  font-size: 1.13rem;
  font-style: italic;
  padding-left: 10px;
  border-left: 0;
  background: none;
}
.testimonial-card div {
  color: var(--color-grey);
  font-size: .98rem;
  font-style: normal;
  padding-left: 18px;
  border-left: 1.5px solid var(--color-border);
  margin-left: 8px;
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 -2px 18px rgba(27,35,48,0.09);
  z-index: 4000;
  padding: 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: cookieFadeIn 0.6s cubic-bezier(.6,.05,.39,1.08);
  border-top: 1px solid var(--color-border);
}
@keyframes cookieFadeIn {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn,
.cookie-banner .cookie-settings-btn {
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 20px;
  border: none;
  margin-right: 0;
  margin-bottom: 0;
  box-shadow: 0 1px 8px rgba(24,160,251,0.06);
  transition: background 0.15s, color 0.15s, box-shadow 0.12s;
  cursor: pointer;
}
.cookie-banner .cookie-btn.reject {
  background: var(--color-grey);
  color: #fff;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-btn.reject:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 14px rgba(49,56,70,0.13);
}

/* ---- COOKIE SETTINGS MODAL ---- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left:0;
  top:0;
  width:100vw;
  height:100vh;
  background: rgba(27,35,48,0.69);
  z-index: 4100;
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  padding: 40px 28px;
  border-radius: 16px;
  max-width: 400px;
  width: 94vw;
  box-shadow: 0 18px 46px rgba(27,35,48,0.28);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalPop 0.38s cubic-bezier(.6,.05,.39,1.08);
}
@keyframes cookieModalPop {
  from { transform: scale(0.94) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 4px;
  color: var(--color-primary);
  font-size: 1.15rem;
  font-family: var(--font-display);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--color-mid);
  margin-bottom: 11px;
}
.cookie-toggle {
  display: inline-block;
  width: 46px;
  height: 26px;
  position: relative;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #e2e6ec;
  border-radius: 32px;
  transition: background 0.18s;
}
.cookie-toggle input:checked + .cookie-slider {
  background: var(--color-secondary);
}
.cookie-slider:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
}
.cookie-toggle input:checked + .cookie-slider:after {
  transform: translateX(18px);
}
/* Essential always enabled */
.cookie-toggle.essential .cookie-slider {
  background: #b1b7c2;
}
.cookie-toggle.essential .cookie-slider:after {
  content: '\2713';
  color: #18A0FB;
  text-align: center;
  line-height: 16px;
  font-size: 1rem;
}

.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.cookie-modal .cookie-btn {
  padding: 10px 18px;
}
.cookie-modal .close-cookie-modal {
  background: none;
  border: none;
  color: var(--color-grey);
  font-size: 1.5rem;
  position: absolute;
  right: 20px;
  top: 18px;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal .close-cookie-modal:hover {
  color: var(--color-error);
}

/* ---- THANK YOU SECTION ---- */
.thank-you-section {
  text-align: center;
}
.thank-you-section .cta-button {
  margin-top: 18px;
}

/* ---- LEGAL & POLICY PAGES ---- */
.legal-section h2 {
  font-size: 1.18rem;
  margin: 20px 0 7px 0;
  color: var(--color-primary);
  font-weight: 600;
}

.legal-section a {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* ---- MEDIA QUERIES ---- */
@media (max-width: 1050px) {
  .container {
    max-width: 92vw;
  }
  .main-nav {
    max-width: 97vw;
  }
}

@media (max-width: 900px) {
  .main-nav ul {
    gap: 14px;
  }
}
@media (max-width: 820px) {
  .main-nav ul {
    gap: 10px;
  }
  .main-nav .cta-button {
    margin-left: 12px;
    padding: 10px 18px;
    font-size: .93rem;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 9px;
  }
  .content-wrapper {
    gap: 22px;
  }
  .section, 
  .hero-section, .features-section, .services-section, .testimonials-section, .contact-section, .about-section, .team-section, .brands-section,
  .services-overview-section, .service-details-section, .cta-section, .gadgets-intro-section, .gadget-comparison-section, .gadgets-cta-section, .blog-intro-section, .blog-posts-section, .newsletter-section, .contact-details-section, .faq-section, .legal-section, .thank-you-section {
    padding: 28px 6px;
    margin-bottom: 34px;
  }
  .main-nav ul, .footer-nav {
    gap: 10px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 17px;
  }
  h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  .hero-section {
    text-align: left;
    padding-top: 24px;
    padding-bottom: 26px;
  }
  .card, .testimonial-card {
    padding: 20px 10px;
  }
  .testimonial-card blockquote {
    padding-left: 0;
    font-size: 1rem;
  }
  .testimonial-card div {
    padding-left: 10px;
    font-size: .93rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .content-grid {
    gap: 10px;
  }
}
@media (max-width: 650px) {
  .main-nav ul, .main-nav .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav {
    min-height: 60px;
  }
  .footer-nav {
    gap: 10px;
    padding-bottom: 11px;
  }
  .footer-info {
    flex-direction: column;
    gap: 6px;
    font-size: .95rem;
  }
  .blog-categories {
    gap: 8px;
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .cookie-banner {
    padding: 18px 8px;
    gap: 11px;
    font-size: .95rem;
  }
  .cta-button, .cookie-banner .cookie-btn, .cookie-banner .cookie-settings-btn {
    font-size: .95rem;
    padding: 8px 14px;
  }
}

/* ---- MICRO-INTERACTIONS & HOVER ---- */
a, button, .cta-button {
  transition: color 0.19s, background 0.19s, box-shadow 0.17s;
}
.card:hover, .service-card:hover {
  box-shadow: 0 7px 24px rgba(27,35,48,0.13);
  border-color: var(--color-secondary);
}
.services-section ul li:hover, .service-details-section ul li:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 5px 16px rgba(24,160,251,0.12);
}
.features-section ul li:hover {
  border-left: 4px solid var(--color-secondary);
  background: #f9fafc;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(24,160,251,0.11);
  border-color: var(--color-secondary);
}
input[type="search"]:hover, input[type="search"]:focus {
  border-color: var(--color-secondary);
  background: #F6F8FA;
}

/* ---- MONOCHROME SOPHISTICATION EMPHASIS ---- */
body {
  background: #fff;
  color: var(--color-dark);
}
header, footer {
  background: #fff;
}
.section, .card, .testimonial-card, .faq-list li, .features-section ul li,
.services-section ul li, .services-overview-section ul li, .service-details-section ul li, .blog-post-list li {
  box-shadow: 0 2px 14px rgba(49,56,70,0.05);
  border-radius: 16px;
  border: 1px solid #e1e5ec;
  background: #fff;
}

/* ---- VISUAL HIERARCHY AND SPACINGS ---- */
.section h2, section h2, .content-wrapper > h2 {
  margin-bottom: 16px;
  font-size: 2rem;
}
.card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.text-section ul {
  margin-top: 10px;
  padding-left: 22px;
}
.text-section ul li {
  list-style: disc;
  color: var(--color-primary);
  margin-bottom: 7px;
}

/* ---- ALIGNMENT PATTERNS (MANDATORY) ---- */
.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;
}

/* ---- OVERRIDES FOR DEFAULT HTML ---- */
hr {
  border: 0;
  border-top: 1.5px solid var(--color-border);
  margin: 32px 0;
}
::-webkit-input-placeholder { color: var(--color-grey); opacity: 1; }
::-moz-placeholder { color: var(--color-grey); opacity: 1; }
:-ms-input-placeholder { color: var(--color-grey); opacity: 1; }
::placeholder { color: var(--color-grey); opacity: 1; }

/* ---- PRINT OVERRIDES (prevents cookie banners etc) ---- */
@media print {
  .cookie-banner, .cookie-modal-overlay, .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  header, footer {
    box-shadow: none;
  }
}
