/* =========================
   CSS RESET & NORMALIZE
========================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite,
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, 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 {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #143D59;
  background-color: #F4F4F9;
  font-size: 16px;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #143D59;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #6EB6FF;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  border-bottom: 1px solid #E0E6ED;
}

/* =========================
   BRAND FONTS
========================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #143D59;
}
h1 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.2rem;
  color: #143D59;
  margin-bottom: 10px;
  text-transform: uppercase;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, dd {
  font-family: 'Roboto', Arial, sans-serif;
  color: #243356;
  font-size: 1rem;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.18rem;
  color: #6EB6FF;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
  font-weight: 600;
}

/* =========================
   GEOMETRIC STRUCTURED LAYOUTS
========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px -8px rgba(20, 61, 89, 0.10);
}
.features, .services-preview, .testimonials, .cta, .faq-list, .about-intro, .about-team, .why-us, .services-detail, .pricing-overview, .portfolio-highlights, .contact-info, .thank-you, .legal, .contact-hero, .faq-hero {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: #F4F4F9;
  box-shadow: 0 6px 30px -10px rgba(20,61,89,0.09);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px -8px rgba(20,61,89,0.10);
  padding: 24px;
  min-width: 240px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.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;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 4px 18px -8px rgba(20,61,89,0.13);
  border-left: 6px solid #6EB6FF;
  border-radius: 16px;
  min-width: 240px;
  color: #143D59;
}
.testimonial-card p {
  font-size: 1.08rem;
  font-style: italic;
  color: #1A293E;
}
.testimonial-card span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #6EB6FF;
}
.star-rating {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 2px;
  color: #FFD447;
  font-size: 1.18rem;
  margin-top: -10px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.benefits-list {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.benefits-list li {
  background: #E0E6ED;
  border-radius: 12px;
  padding: 8px 20px;
  font-size: 0.98rem;
  color: #143D59;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.02em;
}

/* =========================
   HEADER & NAVIGATION
========================== */
header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1010;
  box-shadow: 0 4px 18px -10px rgba(20,61,89,0.06);
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 20px 16px 16px 16px;
  justify-content: flex-start;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #143D59;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.16s, color 0.16s;
}
header nav a:hover,
header nav .primary-cta:hover {
  background: #e5f2fd;
  color: #6EB6FF;
}
header nav img {
  height: 38px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}
.primary-cta {
  background: #143D59;
  color: #fff !important;
  border-radius: 36px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 30px;
  box-shadow: 0 2px 15px -8px #143D5960;
  border: none;
  transition: background 0.19s, box-shadow 0.2s, color 0.15s;
  font-size: 1.05rem;
  cursor: pointer;
}
.primary-cta:focus,
.primary-cta:hover {
  background: #6EB6FF;
  color: #143D59 !important;
  box-shadow: 0 4px 25px -6px #6EB6FF45;
}

/* ===========================
   BURGER & MOBILE NAVIGATION
============================ */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 19px;
  background: none;
  color: #143D59;
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 1100;
  width: 42px;
  height: 42px;
  line-height: 40px;
  border-radius: 8px;
  transition: background .17s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #e3f0fa;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #F4F4F9;
  box-shadow: 0 0 120px -30px #143D5960;
  z-index: 2000;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.7,0,.3,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 22px 4px 0;
  font-size: 2.1rem;
  color: #143D59;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  line-height: 40px;
  transition: background .16s;
  z-index: 2020;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #e3f0fa;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.mobile-nav a {
  display: flex;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #143D59;
  padding: 16px 0;
  width: 80vw;
  text-align: center;
  border-radius: 12px;
  transition: background 0.13s, color 0.13s;
  margin-bottom: 8px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #E0E6ED;
  color: #6EB6FF;
}

/* Show mobile menu button only on mobile */
@media (max-width: 990px) {
  header nav a {
    display: none;
  }
  header nav > a:first-child {
    display: inline-block;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 990px) {
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}
/* =========================
   HERO SECTIONS
========================== */
.hero, .contact-hero, .faq-hero {
  background: linear-gradient(120deg,#E0E6ED 0%, #F4F4F9 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 32px -14px #143D5910;
  margin-bottom: 60px;
  padding: 48px 0 42px 0;
}
.hero .container, .contact-hero .container, .faq-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1, .contact-hero h1, .faq-hero h1 {
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
}
.hero .subheadline, .contact-hero .subheadline, .faq-hero .subheadline {
  text-align: center;
  font-size: 1.12rem;
  max-width: 540px;
  margin: 10px auto 18px auto;
}

/* =========================
   FEATURES & SERVICES CARDS (geometric)
========================== */
.features .feature-grid,
.services-preview .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 26px 0 10px 0;
}
.features .feature-grid li, .services-preview .services-list li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px -10px #143D591A;
  flex: 1 1 260px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
}
.features .feature-grid img, .services-preview .services-list img {
  height: 48px;
  width: 48px;
  margin-bottom: 18px;
}
.features .feature-grid h3, .services-preview .services-list h3 {
  margin-bottom: 6px;
  color: #143D59;
  font-size: 1rem;
}
.features .feature-grid p, .services-preview .services-list p {
  font-size: 0.99rem;
  color: #243356;
  min-height: 42px;
}

.services-detail .service-block {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px -10px #143D5915;
  margin-bottom: 22px;
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.services-detail .service-block h3 {
  font-size: 1.12rem;
  color: #143D59;
  margin-bottom: 5px;
}
.services-detail .service-block ul {
  margin-left: 12px;
  margin-top: 4px;
}
.services-detail .service-block li {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 4px;
  color: #243356;
  font-size: 0.98rem;
}

.services-detail h3:not(.service-block h3) {
  margin-top: 18px;
}

/* =========================
   PORTFOLIO ENTRIES
========================== */
.portfolio-highlights .portfolio-entry {
  background: #fff;
  padding: 28px 22px 16px 22px;
  border-radius: 18px;
  box-shadow: 0 2px 14px -9px #143D5912;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.portfolio-highlights .portfolio-entry h3 {
  color: #143D59;
  font-size: 1.06rem;
}
.portfolio-highlights .portfolio-entry .testimonial-snippet {
  margin-top: 10px;
  font-size: 0.97rem;
  border-left: 4px solid #6EB6FF;
  padding-left: 16px;
  color: #243356;
  font-style: italic;
}
.portfolio-highlights .portfolio-entry .testimonial-snippet span {
  display: block;
  color: #6EB6FF;
  margin-top: 6px;
  font-size: 0.93rem;
}

/* =========================
   PRICING TABLE
========================== */
.price-table {
  width: 100%;
  margin-top: 18px;
  margin-bottom: 26px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 18px -9px #143D5913;
  font-size: 1rem;
}
.price-table th {
  background: #6EB6FF;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.price-table td {
  background: #F4F4F9;
  color: #143D59;
  border-bottom: 1px solid #e0e6ed;
}
.price-table tr:last-child td {
  border-bottom: none;
}

/* =========================
   FAQ
========================== */
.faq-list dl {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list dt {
  font-weight: 700;
  color: #143D59;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.faq-list dd {
  color: #243356;
  margin-bottom: 8px;
  margin-left: 18px;
}
.faq-benefits {
  margin-top: 20px;
  display: flex; flex-wrap: wrap;
  gap: 16px;
}
.faq-benefits li {
  background: #E0E6ED;
  border-radius: 12px;
  padding: 8px 20px;
  font-size: 0.98rem;
  color: #143D59;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* =========================
   ABOUT US
========================== */
.team-values-list {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-top: 18px;
  font-size: 1rem;
}
.team-values-list li {
  background: #E0E6ED;
  border-radius: 12px;
  padding: 10px 22px;
  font-size: 0.98rem;
  color: #143D59;
}
.usp-list {
  display: flex; flex-wrap: wrap; gap: 22px;
  margin-top: 16px;
}
.usp-list li {
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px 14px 50px;
  position: relative;
  min-width: 220px;
  color: #243356;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.99rem;
}
.usp-list li img {
  position: absolute;
  left: 12px;
  top: 12px;
  height: 24px;
  width: 24px;
}

.cta-section {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* =========================
   CONTACT INFO & THANK YOU
========================== */
.contact-details {
  margin-block: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details li {
  font-size: 1rem;
  color: #143D59;
}
.map-snippet {
  margin: 14px 0 10px 0;
  padding: 14px 22px;
  background: #E0E6ED;
  color: #1A293E;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.97rem;
  border-radius: 12px;
  font-style: italic;
}

/* =========================
   FOOTER
========================== */
footer {
  border-top: 2.5px solid #143D59;
  background: #fff;
  padding: 34px 16px 24px 16px;
  margin-top: 48px;
  box-shadow: 0 -4px 18px -12px #143D5917;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 12px;
}
footer nav a {
  color: #6EB6FF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px;
  transition: background 0.13s;
}
footer nav a:hover, footer nav a:focus {
  background: #E0E6ED;
  color: #143D59;
}
.footer-info {
  display: flex; flex-wrap: wrap; gap: 18px 34px;
  font-size: 0.97rem;
  color: #243356;
  font-family: 'Roboto', Arial, sans-serif;
  align-items: center;
}
.footer-info address {
  font-style: normal;
  color: #143D59;
  font-size: 0.98rem;
}
.footer-info a {
  color: #6EB6FF;
  text-decoration: underline dotted;
  transition: color .15s;
}
.footer-info a:hover {
  color: #143D59;
}

/* =========================
   BUTTONS
========================== */
button, .primary-cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 36px;
  transition: background 0.18s, color 0.13s, box-shadow 0.18s, transform 0.12s;
}
button:active, .primary-cta:active {
  transform: scale(0.97);
}
.secondary-text {
  color: #243356;
  font-size: 0.98rem;
}

/* =========================
   GENERAL SPACING HELPERS
========================== */
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.pt-2 { padding-top: 16px; }
.pb-2 { padding-bottom: 16px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* =========================
   COOKIE CONSENT BANNER & MODAL
========================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 24px -10px #143D591d;
  border-top: 4px solid #6EB6FF;
  padding: 24px 16px 18px 16px;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 1.01rem;
  animation: cookieBannerIn .85s cubic-bezier(.7,0,.3,1);
}
@keyframes cookieBannerIn {
  from {
    transform: translateY(150%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.cookie-banner button {
  padding: 8px 24px;
  border-radius: 24px;
  border: none;
  background: #6EB6FF;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1rem;
  transition: background 0.13s, color 0.13s;
}
.cookie-banner button:focus, .cookie-banner button:hover {
  background: #143D59;
  color: #fff;
}
.cookie-banner .settings-btn {
  background: #E0E6ED;
  color: #143D59;
  border: 1px solid #6EB6FF;
}
.cookie-banner .settings-btn:focus, .cookie-banner .settings-btn:hover {
  background: #6EB6FF;
  color: #fff;
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(20,61,89,0.17);
  z-index: 4050;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn .45s cubic-bezier(.7,0,.3,1);
}
@keyframes cookieModalFadeIn {
  from {opacity:0;}
  to {opacity:1;}
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 32px 26px 22px 26px;
  box-shadow: 0 8px 38px -12px #143D5938;
  min-width: 320px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.cookie-modal h2 {
  color: #143D59;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 16px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin: 12px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.02rem;
  padding: 10px 0;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #6EB6FF;
  border-radius: 4px;
  border: 2px solid #143D59;
  margin-right: 6px;
}
.cookie-category .always-on {
  color: #6EB6FF;
  font-weight: 600;
  margin-left: 6px;
  font-size: 0.97rem;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: center;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 1.6rem;
  background: none;
  color: #143D59;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background .17s;
}
.cookie-modal .close-modal-btn:focus,
.cookie-modal .close-modal-btn:hover {
  background: #E0E6ED;
}

/* =========================
   RESPONSIVE DESIGN
========================== */
@media (max-width: 1200px) {
  .container {
    max-width: 99vw;
  }
}
@media (max-width: 900px) {
  .section, .features, .services-preview, .testimonials, .cta, .portfolio-highlights, .about-intro, .about-team, .why-us, .services-detail, .pricing-overview, .contact-info, .thank-you, .legal, .contact-hero, .faq-hero, .faq-list {
    padding: 32px 8px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .hero, .contact-hero, .faq-hero {
    padding: 38px 0 32px 0;
    border-radius: 0 0 18px 18px;
  }
  .hero h1, .contact-hero h1, .faq-hero h1 {
    font-size: 1.41rem;
  }
  h1 {
    font-size: 1.41rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .features .feature-grid, .services-preview .services-list, .usp-list, .team-values-list, .benefits-list, .faq-benefits {
    flex-direction: column;
    gap: 15px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    padding: 18px 8px;
    min-width: 0;
  }
  .section, .features, .testimonials, .cta, .services-preview, .portfolio-highlights, .about-intro, .about-team, .why-us, .services-detail, .pricing-overview, .contact-info, .thank-you, .legal, .contact-hero, .faq-hero, .faq-list {
    padding: 22px 3px;
    margin-bottom: 45px;
    border-radius: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 480px) {
  header nav img {
    height: 30px;
  }
  .primary-cta, .cookie-banner button {
    padding: 10px 16px;
    font-size: 1rem;
  }
  .footer-info {
    gap: 10px 0;
    flex-direction: column;
    font-size: 0.96rem;
    align-items: flex-start;
  }
  .map-snippet {
    padding: 10px 8px;
  }
}

/* =========================
   GEOMETRIC DECORATIVE SHAPES (simple, optional)
========================== */
.section::before, .features .feature-grid li::before, .services-preview .services-list li::before, .portfolio-highlights .portfolio-entry::before {
  content: '';
  display: block;
  position: absolute;
  top: -16px;
  left: -16px;
  width: 38px;
  height: 38px;
  background: #E0E6ED;
  border-radius: 12px 38px 12px 38px;
  z-index: 0;
  opacity: .28;
  pointer-events: none;
}
.section, .features .feature-grid li, .services-preview .services-list li, .portfolio-highlights .portfolio-entry {
  position: relative;
  overflow: hidden;
}

/* Hide pseudo elements on small screens for simplicity */
@media (max-width: 768px) {
  .section::before, 
  .features .feature-grid li::before, 
  .services-preview .services-list li::before, 
  .portfolio-highlights .portfolio-entry::before {
    display: none;
  }
}

/* =========================
   UTILITY CLASSES
========================== */
.text-section {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #243356;
  font-family: 'Roboto', Arial, sans-serif;
}
.secondary-text {
  font-size: 0.97rem;
  color: #243356;
  margin-top: 8px;
}

/* =========================
   ANIMATIONS & MICRO-INTERACTIONS
========================== */
.card, .feature-grid li, .services-list li, .portfolio-entry, .testimonial-card {
  transition: box-shadow .19s, transform .17s;
}
.card:hover, .feature-grid li:hover, .services-list li:hover, .portfolio-entry:hover, .testimonial-card:hover {
  box-shadow: 0 2px 30px -8px #6EB6FF33;
  transform: translateY(-4px) scale(1.025);
}
.primary-cta, .cookie-banner button {
  transition: background .15s, color .12s, box-shadow .15s;
}

/* =========================
   PRINT STYLES
========================== */
@media print {
  header, footer, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body {
    background: #fff !important;
    color: #000 !important;
  }
}
