/* ===== NORMALIZE & RESET ===== */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f9fafb;
  color: #245b77;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* ===== ROOT VARIABLES AND PALETTE ===== */
:root {
  --primary: #245b77;
  --secondary: #f9fafb;
  --white: #ffffff;
  --accent: #217950;
  --accent-light: #6dc49c;
  --shadow: 0 6px 18px 0 rgba(36,91,119,0.18);
  --radius-md: 20px;
  --radius-lg: 40px;
  --radius-pill: 999px;
}

/* ===== TYPOGRAPHY ===== */
h1, .hero h1, main h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.7rem;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 14px;
  font-weight: 600;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  color: #245b77;
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

/* Artistic font accents for headings */
h1, h2, h3 {
  letter-spacing: 0.03em;
  text-shadow: 1px 1px 0 var(--accent-light), 0 2px 8px rgba(109,196,156,0.08);
}

/* ===== CONTAINER & WRAPPER ===== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: var(--white);
  box-shadow: 0 6px 24px rgba(36,91,119,0.05);
  padding: 0;
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 32px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: background 0.18s, color 0.18s;
  position: relative;
  font-weight: 500;
}
header nav a:hover, header nav a:focus {
  background: var(--accent-light);
  color: var(--white);
}
.cta.primary {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  padding: 12px 32px;
  box-shadow: 0 3px 14px rgba(36,91,119,0.13);
  font-size: 1.1rem;
  margin-left: 16px;
  outline: none;
  transition: background 0.22s, transform 0.12s, box-shadow 0.23s;
  border: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, var(--accent-light), var(--primary));
  color: var(--white);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 5px 25px rgba(36,91,119,0.14);
}
.cta {
  background: var(--accent-light);
  color: var(--primary);
  padding: 11px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  outline: none;
  box-shadow: 0 2px 7px rgba(36,91,119,0.08);
  margin-top: 10px;
  margin-bottom: 10px;
  transition: background 0.18s, color 0.18s, transform 0.16s;
}
.cta:hover, .cta:focus {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.02);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(120deg, var(--accent-light) 0%, #e6f6ee 100%);
  padding: 70px 0 60px 0;
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}

/* ===== SECTIONS ===== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
section:nth-child(even) {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px rgba(36,91,119,0.05);
}

/* ===== CARDS, FEATURES, USP-GRID ===== */
.feature-grid, .usp-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-grid > div, .usp-grid > div, .service-section {
  background: var(--secondary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 32px 24px 28px 24px;
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.16s;
  position: relative;
}
.feature-grid > div:hover, .usp-grid > div:hover, .service-section:hover {
  box-shadow: 0 10px 30px rgba(33,121,80,0.08);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
}
.feature-grid img, .usp-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  margin-top: 4px;
  filter: drop-shadow(0 1px 4px #d6efe0);
}

.cert-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  color: var(--accent);
}
.cert-badges img {
  width: 34px;
  height: 34px;
}

/* ===== PRICING TABLE ===== */
.pricing-table {
  width: 100%;
  margin-bottom: 28px;
  border-collapse: separate;
  border-spacing: 0 10px;
}
.pricing-table th, .pricing-table td {
  padding: 14px 18px;
  text-align: left;
}
.pricing-table thead th {
  background: var(--accent-light);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.pricing-table tbody tr {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  transition: background 0.14s;
}
.pricing-table tbody tr:hover {
  background: #e6f6ee;
}
.pricing-table tbody td {
  border-top: 1px solid #e3eaea;
  border-bottom: 1px solid #e3eaea;
  font-size: 1rem;
}
.price-notes {
  font-size: 0.98rem;
  color: #245b77;
  margin-top: 14px;
  opacity: 0.9;
}

.service-price {
  margin-top: 14px;
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ===== SECTION AND FLEX STRUCTURES ===== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.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: #f9fafb;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(36,91,119,0.09);
  margin-bottom: 20px;
  position: relative;
  font-style: italic;
  font-size: 1.05rem;
  transition: box-shadow 0.19s, transform 0.15s;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
  margin-left: auto;
}
.testimonial-card:hover {
  box-shadow: 0 10px 22px rgba(109,196,156,0.11);
  background: #fff;
  transform: scale(1.02) rotate(-0.6deg);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.company-clients .client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-bottom: 22px;
}
.company-clients .client-logos img {
  height: 50px;
  width: auto;
  filter: grayscale(0.25) brightness(0.96) drop-shadow(0 1px 6px #e6f6ee);
}
.short-client-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}
.short-client-stories > div {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(36,91,119,0.07);
  padding: 22px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* ===== FAQ ACCORDION ===== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(36,91,119,0.07);
  padding: 24px;
  font-size: 1rem;
}
.faq-accordion h2 {
  margin-bottom: 10px;
  font-size: 1.14rem;
  color: var(--primary);
}

/* ===== THANK YOU SECTION ===== */
.thank-you-section {
  background: linear-gradient(94deg, #fff 50%, var(--accent-light) 130%);
  border-radius: var(--radius-lg);
  min-height: 320px;
}
.thank-you-section .content-wrapper {
  align-items: center;
  text-align: center;
}

/* ===== CTA BANNERS ===== */
.cta-banner {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 26px rgba(33,121,80,0.11);
  padding: 42px 20px;
  margin-bottom: 60px;
}
.cta-banner .content-wrapper {
  align-items: center;
  text-align: center;
  color: var(--white);
}
.cta-banner h2,
.cta-banner p {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(36,91,119,0.10);
}
.cta-banner .cta {
  margin: 20px auto 0 auto;
  background: var(--accent-light);
  color: var(--primary);
  border-radius: var(--radius-pill);
  transition: background 0.18s;
}
.cta-banner .cta:hover {
  background: var(--white);
  color: var(--accent);
  box-shadow: 0 5px 20px rgba(109,196,156,0.13);
}

/* ===== FOOTER ===== */
footer {
  background: var(--white);
  box-shadow: 0 -5px 26px rgba(36,91,119,0.04);
  padding: 28px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer img {
  width: 52px;
  height: auto;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 0.98rem;
  opacity: 0.94;
  padding: 2px 0;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--accent);
  opacity: 1;
}
.imprint {
  font-family: 'Roboto', Arial, sans-serif;
  color: #6b88a0;
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 10px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 202;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-pill);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 2px 11px rgba(36,91,119,0.13);
  transition: background 0.18s, transform 0.15s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--accent);
  transform: scale(1.02);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(90deg, var(--primary) 70%, var(--accent-light) 130%);
  color: var(--white);
  z-index: 300;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.58,0.08,0.33,1.03);
  box-shadow: 0 0 80px rgba(36,91,119,0.16);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: var(--white);
  font-size: 2.2rem;
  margin: 26px 26px 10px 0;
  align-self: flex-end;
  border: none;
  transition: color 0.14s, transform 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent-light);
  transform: rotate(10deg) scale(1.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 34px;
  margin-top: 20px;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  width: fit-content;
  transition: color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent-light);
}

/* MOBILE MENU OVERLAY */
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(36,91,119,0.06);
  pointer-events: none;
  z-index: 1;
}

/* ===== COOKIE BANNER & MODAL ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--accent-light);
  box-shadow: 0 -5px 22px rgba(36,91,119,0.07);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 26px 16px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  animation: bannerAppear 0.8s cubic-bezier(.58, .06, .36, 1.06);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}
@keyframes bannerAppear {
  from { opacity: 0; transform: translateY(140px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner button,
.cookie-banner .cookie-settings-btn {
  margin-right: 8px;
  border-radius: var(--radius-pill);
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  outline: none;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  transition: background 0.17s, color 0.17s, transform 0.14s;
  box-shadow: 0 2px 7px rgba(36,91,119,0.07);
}
.cookie-banner button:hover,
.cookie-banner .cookie-settings-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.04);
}
.cookie-banner .reject {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
  margin-left: 10px;
}
.cookie-banner .reject:hover {
  background: var(--accent-light);
  color: var(--primary);
}
.cookie-banner .cookie-settings-btn {
  background: var(--accent-light);
  color: var(--primary);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5100;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(36,91,119, 0.33);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(36,91,119,0.21);
  padding: 42px 28px 34px 28px;
  width: 95vw;
  max-width: 420px;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  position: relative;
  animation: modalPop 0.38s cubic-bezier(.57, .12, .4, 1.12);
}
@keyframes modalPop {
  from { opacity: 0; transform: translateY(55px) scale(0.93); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 18px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 13px;
}
.cookie-modal-category label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 46px;
  height: 26px;
  display: flex;
  align-items: center;
}
.toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--secondary);
  border-radius: var(--radius-pill);
  transition: background 0.15s;
  box-shadow: 0 1px 3px rgba(36,91,119,0.06);
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--accent-light);
}
.toggle-slider:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary);
  transition: transform 0.15s;
}
.toggle-switch input:checked + .toggle-slider:before {
  background: var(--accent);
  transform: translateX(18px);
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 22px;
  font-size: 1.7rem;
  color: var(--primary);
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: color 0.14s;
  z-index: 2;
}
.cookie-modal-close:hover {
  color: var(--accent);
}
.cookie-modal .caption {
  font-size: 0.9rem;
  color: #567;
  margin-bottom: 9px;
}

/* ===== UTILITY CLASSES ===== */
.mb-2 { margin-bottom: 12px !important; }
.text-section {
  margin-bottom: 24px;
}
.info-block {
  margin-bottom: 24px;
}
.embedded-map {
  background: #e6f6ee;
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}

/* ===== ANIMATIONS ===== */
.card, .testimonial-card, .service-section, .short-client-stories > div {
  transition: box-shadow 0.18s, transform 0.14s, background 0.14s;
}
ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 1rem;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 11px; height: 11px;
  background: var(--accent-light);
  border-radius: 50%;
  position: absolute;
  left: 0; top: 7px;
  box-shadow: 0 2px 6px rgba(109,196,156,0.12);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1150px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .usp-grid, .service-grid, .content-grid, .company-clients .short-client-stories {
    gap: 16px;
  }
  .feature-grid > div, .usp-grid > div, .service-section, .short-client-stories > div {
    min-width: 165px;
  }
}
@media (max-width: 768px) {
  h1, .hero h1, main h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.27rem;
  }
  .header .container, footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .feature-grid, .usp-grid, .service-grid, .company-clients .short-client-stories {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .section, section {
    padding: 24px 6px;
    margin-bottom: 38px;
  }
  .card-container, .content-grid {
    flex-direction: column;
  }
  .card {
    min-width: unset;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .company-clients .client-logos {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .cta-banner {
    padding: 28px 8px;
    margin-bottom: 38px;
    border-radius: var(--radius-md);
  }
  .thank-you-section {
    padding: 22px 8px;
    border-radius: var(--radius-md);
  }
  footer {
    padding: 16px 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header nav, .cta.primary {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 3vw;
  }
  .cookie-modal {
    padding: 23px 10px 14px 10px;
  }
}

/* ===== ARTISTIC ACCENTS ===== */
.hero,
.cta-banner,
.short-client-stories > div,
.thank-you-section {
  box-shadow: 0 8px 34px rgba(109,196,156,0.10), 0 1.5px 12px rgba(36,91,119,0.06);
}
.usp-grid > div, .feature-grid > div, .service-section, .testimonial-card {
  border-left: 8px solid var(--accent-light);
}
.service-section:nth-child(odd) {
  border-left: 8px solid var(--accent);
  background: #f0fbf6;
}

@media (max-width: 750px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.99rem;
  }
  .mobile-menu {
    font-size: 1rem;
  }
}

/* ===== HTML FORM ELEMENTS ===== */
input, textarea, select {
  border-radius: var(--radius-md);
  border: 1px solid #e3eaea;
  padding: 11px 14px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: var(--primary);
  outline: none;
  margin-bottom: 16px;
  transition: border 0.17s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent-light);
  box-shadow: 0 2px 8px rgba(36,91,119,0.08);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 5px;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  background: var(--secondary);
  width: 10px;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb {
  background: var(--accent-light);
  border-radius: 7px;
}

/* ===== ARTISTIC HOVER ACCENTS ON LINKS ===== */
a {
  position: relative;
  display: inline-block;
  outline: none;
}
a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent-light);
  transition: width .19s;
  position: absolute;
  left: 0; bottom: -1px;
}
a:hover:after, a:focus:after {
  width: 100%;
}

/* ===== SECTION SPACING AND CLEANUP ===== */
section ul, section ol {
  margin: 0 0 10px 0;
  padding: 0 0 0 0;
}

/* ===== Z-INDEX MANAGEMENT ===== */
header { z-index: 100; }
.mobile-menu { z-index: 300; }
.cookie-banner { z-index: 5000; }
.cookie-modal-overlay { z-index: 5100; }

/* ===== PRINT FRIENDLY (OPTIONAL) ===== */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay { display:none !important; }
}
