/* ==== RESET & NORMALIZE ==== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, 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;
}
/* Set up the default font and background */
html {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #fff;
  color: #183153;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
  color: #183153;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #A9282B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #183153;
  outline: none;
}
:focus {
  outline: 2px solid #A9282B;
  outline-offset: 2px;
}
/* === Brand Colors as Custom Properties === */
:root {
  --primary: #183153;
  --secondary: #E1E6EB;
  --accent: #A9282B;
  --accent-alt: #A11317;
  --electric-blue: #1456d6;
  --neon-yellow: #FFE94F;
  --neon-green: #27D957;
  --card-bg: #fff;
  --testimonial-bg: #f8fafb;
  --shadow: 0 2px 16px rgba(24,49,83,0.10), 0 1.5px 6px rgba(169,40,43,0.04);
  --input-bg: #f5f7fa;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
}

/* ==== TYPOGRAPHY ==== */
body, input, textarea, select, button {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #183153;
  font-size: 1rem;
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #183153;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, ul, ol, blockquote, pre, table {
  margin-bottom: 16px;
  font-size: 1.07rem;
}
ul, ol {
  padding-left: 24px;
}
strong, b {
  font-weight: 700;
}

/* ==== LAYOUT UTILS & CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1180px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  transition: transform 0.16s cubic-bezier(.18,.76,.43,1), box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-6px) scale(1.025) rotate(-0.5deg);
  box-shadow: 0 6px 24px rgba(24,49,83,0.17), 0 2px 8px rgba(169,40,43,0.07);
  z-index: 2;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 20px 28px;
  background: var(--testimonial-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  min-width: 250px;
  margin-bottom: 20px;
  border: 2.5px solid var(--accent);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** HERO SECTION *****/
.hero {
  background: linear-gradient(90deg, var(--neon-yellow) 0%, #fffbe3 100%);
  min-height: 360px;
  border-radius: 0 0 44px 44px;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(24,49,83,0.08);
  animation: hero-glow 3.2s ease-in-out alternate infinite;
}
@keyframes hero-glow {
  0% { box-shadow:0 4px 32px rgba(169,40,43,0.06);} 
  100% { box-shadow:0 6px 46px 0px #ffe94f22;}
}
.hero .content-wrapper {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  padding-top: 48px;
}
.hero h1 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.11;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px #ffe94f60;
}
.hero p {
  color: #354869;
  max-width: 500px;
  margin: 0 auto 14px auto;
  font-size: 1.2rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.hero .cta {
  margin-top: 14px;
}

/***** HEADER & NAVBAR *****/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(24,49,83,0.06);
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 34px;
}
nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1.08rem;
  padding: 0 8px;
  border-bottom: 2.5px solid transparent;
  color: var(--primary);
  transition: color 0.16s, border-bottom-color 0.22s;
  border-radius: 0;
}
nav a:hover, nav a.active {
  color: var(--accent-alt);
  border-bottom: 2.5px solid var(--accent-alt);
}
/* CTA in header */
.cta.primary {
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 99px;
  border: none;
  box-shadow: 0 4px 18px #a9282b23;
  margin-left: 20px;
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.16s, color 0.16s, transform 0.17s;
  letter-spacing: 0.01em;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--primary);
  color: #ffe94f;
  box-shadow: 0 7px 26px #18315326;
  transform: scale(1.045);
}
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 12px;
  padding: 4px 16px;
  cursor: pointer;
  margin-left: 10px;
  box-shadow: 0 2px 8px #A9282B22;
  z-index: 31;
  transition: background 0.12s, color 0.17s, box-shadow 0.13s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: #ffe94f;
  outline: none;
}

/***** MOBILE MENU *****/
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(24,49,83, 0.93);
  z-index: 60;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  transition: transform 0.34s cubic-bezier(.76,-0.1,0,1.15);
  transform: translateX(100%);
}
.mobile-menu.open { 
  display: block;
  transform: translateX(0);
}
.mobile-menu .mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #fff;
  background: var(--accent);
  border: none;
  font-size: 2.4rem;
  border-radius: 10px;
  padding: 2px 18px;
  z-index: 63;
  box-shadow: 0 2px 12px #18315347;
  cursor: pointer;
  transition: background 0.13s, color 0.17s;
}
.mobile-menu .mobile-menu-close:hover,
.mobile-menu .mobile-menu-close:focus {
  background: var(--neon-yellow);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 80px;
  padding-left: 44px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.37rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.19s, border-bottom 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--neon-yellow);
  border-bottom: 2px solid var(--neon-yellow);
}

/***** FEATURES/GRID/CARDS *****/
.features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.features .content-wrapper { width: 100%; }
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 27px 44px;
  justify-content: flex-start;
  margin-top: 10px;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 38px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  min-height: 178px;
  gap: 9px;
  border: 2.5px solid var(--accent-alt);
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.feature-grid > div:hover {
  box-shadow: 0 7px 32px #A9282B18;
  transform: translateY(-7px) scale(1.03);
  z-index: 3;
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 2px;
}

/***** SERVICES *****/
.services .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 20px 0 26px 0;
  justify-content: flex-start;
}
.service-card {
  flex: 1 1 240px;
  min-width: 210px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 30px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  border: 2px solid var(--electric-blue);
  transition: box-shadow 0.17s, transform 0.14s;
}
.service-card:hover {
  box-shadow: 0 10px 30px #18315323;
  transform: translateY(-6px) scale(1.038);
}
.service-card h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.17rem;
  font-weight: 800;
}
.service-card div {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-alt);
  margin-top: 7px;
}

/***** TESTIMONIALS *****/
.testimonials {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 20px #A9282B0a;
  margin-bottom: 60px;
  padding: 42px 0 26px 0;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 7px;
}
.testimonial-card blockquote {
  font-size: 1.13rem;
  font-style: italic;
  color: #222943;
  margin-bottom: 6px;
  padding-left: 0;
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  background: none;
}
.testimonial-card strong {
  color: var(--primary);
}
.testimonial-card div {
  font-size: 1.02rem;
  color: #251e30;
}

/***** BUTTONS, FORMS & CTA *****/
.cta {
  background: var(--electric-blue);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 99px;
  text-align: center;
  box-shadow: 0 1.5px 6px #1456d61a;
  margin: 18px 0 0 0;
  border: none;
  font-size: 1.08rem;
  cursor: pointer;
  transition: background 0.13s, color 0.2s, box-shadow 0.16s, transform 0.16s;
  outline: none;
  letter-spacing: 0.01em;
  display: inline-block;
}
.cta:hover, .cta:focus {
  background: var(--accent);
  color: var(--neon-yellow);
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 7px 21px #A9282B24;
}

/********* FOOTER *********/
footer {
  background: var(--primary);
  color: #fff;
  border-radius: 44px 44px 0 0;
  margin-top: 80px;
  padding: 44px 0 18px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
footer img {
  width: 56px;
  margin-bottom: 7px;
}
footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
footer nav a {
  color: var(--neon-yellow);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border-bottom: 1.5px solid transparent;
  transition: border-bottom 0.14s, color 0.15s;
  padding: 2px 0px;
}
footer nav a:hover {
  color: var(--neon-green);
  border-bottom: 1.5px solid var(--neon-green);
}
.footer-contact {
  color: #dde1ea;
  font-size: 0.99rem;
}
footer p {
  color: #e1e6eb;
  font-size: 0.95rem;
  margin-top: 4px;
}

/*********** TABLES, PRICING, FAQ ************/
.pricing-table {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0 28px 0;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  min-width: 420px;
  margin-bottom: 20px;
}
.pricing-table th {
  background: var(--electric-blue);
  color: #fff;
  padding: 15px 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
}
.pricing-table td {
  padding: 14px 10px;
  color: var(--primary);
  border-bottom: 1px solid #e1e6eb;
  font-size: 1rem;
  background: #fff;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:hover td {
  background: #ffe94f13;
}

/**** FAQ Accordion ****/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 9px #18315318;
  border: 2px solid #ffe94f;
  transition: box-shadow 0.13s, border-color 0.13s;
}
.faq-accordion > div:hover { border-color: var(--accent); box-shadow: 0 3px 16px #A9282B24; }
.faq-accordion h2, .faq-accordion h3 {
  cursor: pointer;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  padding: 13px 19px 8px 19px;
  color: var(--primary);
  margin-bottom: 2px;
  border-bottom: 1px solid #e1e6eb;
  position: relative;
}
.faq-answer {
  padding: 10px 19px 13px 24px;
  background: #f5f7fa;
  color: #262e43;
  font-size: 0.98rem;
}

/**** CONTACT INFO LIST ****/
.contact-info, .contact-section ul {
  list-style: none;
  margin-bottom: 16px;
  color: #183153;
  font-size: 1.08rem;
}
.contact-info li, .contact-section ul li {
  margin-bottom: 10px;
}

/**** TEXT SECTIONS ****/
.text-section {
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: #25335b;
  line-height: 1.7;
}
.text-section ul {
  list-style: disc inside;
  padding-left: 16px;
  margin-bottom: 10px;
}
.text-section li {
  margin-bottom: 8px;
}

/**** TEAM MEMBERS ****/
.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 32px 0;
}
.team-members > div {
  flex: 1 1 260px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 220px;
  border: 2.5px solid var(--electric-blue);
  transition: box-shadow 0.13s, transform 0.14s;
}
.team-members > div:hover {
  box-shadow: 0 10px 30px #1456d617;
  transform: translateY(-7px) scale(1.025);
}

/**** LISTS FOR VALUES/ADVANTAGES ****/
.text-section ul {
  list-style: disc inside;
}
.text-section > h2, .text-section > h3 {
  margin-top: 14px;
}

/**** GENERIC CARD STYLES ****/
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/**** COOKIE CONSENT BANNER ****/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -2px 18px #aac3e942;
  z-index: 130;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 25px 18px 25px;
  font-size: 1.01rem;
  animation: cookie-slide-up 0.48s cubic-bezier(.68,1.17,.67,1) both;
}
@keyframes cookie-slide-up {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 2 1 260px;
  max-width: 520px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 66px;
  padding: 8px 23px;
  font-size: 1rem;
  background: var(--electric-blue);
  color: #fff;
  box-shadow: 0 2px 8px #18315321;
  cursor: pointer;
  margin-left: 0;
  margin-right: 0;
  transition: background 0.15s, color 0.18s, transform 0.15s;
}
.cookie-banner button.primary {
  background: var(--accent);
}
.cookie-banner button.settings {
  background: var(--neon-yellow);
  color: var(--primary);
}
.cookie-banner button:active, .cookie-banner button:focus {
  background: var(--primary);
  color: var(--neon-yellow);
  outline: none;
  transform: scale(1.05);
}
.cookie-banner button.settings:hover {
  background: var(--electric-blue);
  color: #fff;
}

/***** COOKIE MODAL *****/
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0; right:0; top:0; bottom:0;
  background: rgba(24,49,83,0.75);
  align-items: center;
  justify-content: center;
  animation: fade-in 0.34s both;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 38px #18315329;
  padding: 38px 24px 24px 24px;
  max-width: 96vw;
  width: 380px;
  color: var(--primary);
  animation: pop-in 0.30s cubic-bezier(.67,1.14,.59,1.01) both;
  position: relative;
}
@keyframes pop-in {
  from { transform: scale(0.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 17px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 33px;
  font-size: 1.6rem;
  padding: 2px 16px;
  cursor: pointer;
  box-shadow: 0 2px 8px #18315332;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  gap: 11px;
  font-size: 1.07rem;
}
.cookie-modal input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--accent-alt);
}
.cookie-modal .category-description {
  font-size: 0.95rem;
  color: #354869;
  margin-bottom: 8px;
  margin-left: 33px;
}
.cookie-modal .cookie-category {
  margin-bottom: 18px;
}
.cookie-modal button.save {
  width: 100%;
  margin-top: 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 99px;
  padding: 11px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 2px 8px #A9282B1a;
  cursor: pointer;
  transition: background 0.16s, color 0.18s;
}
.cookie-modal button.save:hover {
  background: var(--electric-blue);
  color: #ffe94f;
}

/***** RESPONSIVENESS (MOBILE FIRST) *****/
@media (max-width: 1100px) {
  .feature-grid, .service-cards, .team-members, .testimonial-slider, .card-container, .content-grid {
    gap: 15px;
  }
  .container {
    padding-left: 11px; padding-right: 11px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-cards, .testimonial-slider, .team-members, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 18px;
  }
  .container {
    padding-left: 2vw; padding-right: 2vw;
  }
  .features, .team-members, .services .service-cards {
    gap: 24px;
  }
  .footer-contact { font-size: 0.97rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.68rem; }
  h2 { font-size: 1.21rem; }
  .hero h1 { font-size: 1.65rem; }
  .hero .content-wrapper { padding-top: 30px; }
  .logo img { width: 99px; }
  .feature-grid > div,
  .service-card,
  .team-members > div { min-width: 0; }
  .features, .feature-grid, .service-cards, .team-members, .testimonial-slider {
    flex-direction: column !important;
    gap: 15px;
  }
  .testimonial-card,
  .feature-grid > div,
  .service-card,
  .team-members > div { padding: 17px 11px 17px 14px; }
  nav, .header .cta.primary { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    flex-wrap: wrap;
    gap: 10px;
    min-height: 62px;
  }
  .section {
    margin-bottom: 38px;
    padding: 21px 6px;
  }
  .testimonial-card,
  .feature-grid > div,
  .service-card,
  .team-members > div {
    margin-bottom: 13px;
  }
  .content-grid, .card-container {
    gap: 13px;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: 150px;
    padding: 0;
    border-radius: 0 0 20px 20px;
  }
  .footer-contact {
    font-size: 0.90rem;
    padding-bottom: 12px;
    line-height: 1.3;
  }
  footer nav {
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.97rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 17px 11px 12px 13px;
    font-size: 0.97rem;
  }
}
@media (max-width: 480px) {
  .testimonial-card, .feature-grid > div, .service-card, .team-members > div {
    padding: 11px 5px 10px 8px;
    margin-bottom: 10px;
  }
  .cookie-modal .cookie-modal-content {
    width: 99vw;
    padding: 18px 5px 8px 5px;
    min-width: 0;
  }
  .mobile-nav {
    padding-left: 16px;
    margin-top: 58px;
  }
}

/* Ensures FAQ sections (also accordions) are always spaced */
.faq-accordion > div { margin-bottom: 14px; }

/* Miscellaneous tweaks */
details[open] > summary:before { content: "− "; font-weight: bold; }
details summary:before { content: "+ "; font-weight: bold; }

input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: var(--input-bg);
  border: 2px solid #dde5ed;
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  font-size: 1rem;
  transition: border 0.14s, box-shadow 0.17s;
  margin-bottom: 13px;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid var(--accent-alt);
}

::-webkit-input-placeholder { color: #35486999; }
::-moz-placeholder { color: #35486999; }
:-ms-input-placeholder { color: #35486999; }
::placeholder { color: #35486999; }

/* Hide scrollbars for slider/overflow areas (testimonials) on small screens for better UX */
.testimonial-slider {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/***** MICRO-INTERACTIONS *****/
.card, .service-card, .feature-grid > div, .team-members > div, .testimonial-card, .faq-accordion > div, .cta, .cookie-banner button, .cookie-modal .modal-close, .cookie-modal button.save {
  transition: box-shadow 0.17s, transform 0.16s, background 0.14s, color 0.16s;
}

/***** Z-INDEX FOR UI SAFETY *****/
header { z-index: 45; }
.mobile-menu { z-index: 60; }
.cookie-banner { z-index: 130; }
.cookie-modal { z-index: 200; }

/***** PRINT STYLES (HIDE BANNERS&NAV) *****/
@media print {
  header, nav, .mobile-menu, .cookie-banner, .cookie-modal, footer {
    display: none !important;
  }
  body {
    color: #111;
    background: #fff;
  }
} 
