/* =========================================================
   RESET & BASE TYPOGRAPHY
   ========================================================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Georgia, 'Times New Roman', Times, serif;
  color: #18213b;
  background: #fafbfc;
  line-height: 1.7;
  min-height: 100vh;
  font-size: 1rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, serif;
  color: #13397A;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; }
section h1, section h2 {
  text-align: center;
}
p, ul, ol {
  font-size: 1.05rem;
  color: #21305b;
  margin-bottom: 14px;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 16px;
}
strong, .strong {
  font-weight: 700;
  color: #13397A;
}
a {
  color: #13397A;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover {
  color: #31C3D2;
}
hr { border: none; border-top: 1px solid #e5e6e9; margin: 1.5em 0; }

/* =========================================================
   LAYOUT CONTAINERS
   ========================================================= */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(19,57,122,0.04); /* subtle shadow */
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}
.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: 900px) {
  .container { max-width: 98vw; }
  .content-wrapper, .content-grid, .text-image-section {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .content-wrapper, .content-grid, .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .section {
    padding: 30px 10px;
    margin-bottom: 40px;
  }
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
header {
  background: #fff;
  border-bottom: 1px solid #e5e6e9;
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 24px;
  text-decoration: none;
}
.logo img {
  height: 38px;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-left: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.12rem;
  color: #13397A;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover, .footer-nav a:hover {
  color: #31C3D2;
  border-bottom: 2px solid #31C3D2;
}
.cta-btn {
  display: inline-block;
  padding: 9px 28px;
  margin-left: 22px;
  border-radius: 30px;
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.16rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  box-shadow: 0 1px 4px 0 rgba(49,195,210,0.04);
  cursor: pointer;
  border: none;
}
.cta-btn.primary {
  background: #13397A;
  color: #fff;
  border: 1px solid #13397A;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #164aac;
  color: #fff;
  box-shadow: 0 3px 18px 0 rgba(19,57,122,0.09);
}
.cta-btn.secondary {
  background: #fff;
  color: #13397A;
  border: 1.5px solid #13397A;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #31C3D2;
  color: #fff;
  border-color: #31C3D2;
}
@media (max-width: 900px) {
  header .container { padding: 0 8px; }
  .main-nav { gap: 18px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-btn { margin-left: 0; }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #13397A;
  cursor: pointer;
  margin-left: 20px;
  z-index: 111;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 18px 0 rgba(19,57,122,0.08);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.71, 1.7, .45, .94);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 24px;
  padding-left: 36px;
  padding-right: 36px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #13397A;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 18px;
  margin-right: -16px;
  z-index: 209;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.2rem;
  color: #13397A;
  padding: 12px 0;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f2fafb;
  color: #31C3D2;
}

/* MOBILE MENU OVERLAY (background lock to prevent scrolling) */
body.mobile-menu-active {
  overflow: hidden;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #f7f8fa;
  color: #7d8ba6;
  border-top: 1px solid #e7e8ed;
  font-size: 0.96rem;
  padding: 36px 0 0 0;
}
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #23356d;
  text-decoration: none;
  padding: 3px 6px;
  border-bottom: 1.3px solid transparent;
  transition: border-color 0.19s, color 0.19s;
  font-family: 'Roboto', serif;
}
footer p {
  text-align: center;
  color: #7d8ba6;
  margin-bottom: 0;
}
/* =========================================================
   HERO SECTIONS
   ========================================================= */
.hero {
  background: #f5f7fa;
  padding: 60px 20px 54px 20px;
  border-bottom: 1px solid #e7e8ed;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero .content-wrapper {
  max-width: 700px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero h1 {
  font-size: 2.8rem;
  font-family: 'Montserrat', Georgia, serif;
  line-height: 1.14;
  color: #13397A;
  letter-spacing: 0.01em;
}
.hero p {
  color: #23356d;
  font-size: 1.19rem;
  margin-bottom: 12px;
}
@media (max-width: 540px) {
  .hero h1 { font-size: 1.50rem; }
  .hero .container, .hero .content-wrapper { padding: 0; }
}

/* =========================================================
   FLEX UTILITIES FOR VARIOUS GRIDS
   ========================================================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
  margin-bottom: 12px;
  justify-content: center;
}
.feature {
  flex: 1 1 210px;
  min-width: 210px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(19,57,122,0.035);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  transition: box-shadow 0.19s;
}
.feature img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}
.feature:hover {
  box-shadow: 0 6px 22px rgba(19,57,122,0.06);
}
@media (max-width: 768px) {
  .feature-grid {
    gap: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .feature {
    min-width: 0;
    padding: 22px 12px 14px 12px;
  }
}

/* SERVICES OVERVIEW GRID */
.services-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  justify-content: center;
}
.service {
  flex: 1 1 190px;
  min-width: 180px;
  background: #f5f7fa;
  border-radius: 11px;
  box-shadow: 0 1px 6px 0 rgba(19,57,122,0.03);
  padding: 22px 16px 18px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.service h3 {
  font-size: 1.10rem;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .services-overview {
    flex-direction: column;
    gap: 16px;
  }
  .service { min-width: 0; }
}

/* =========================================================
   CARD & FLEXBOX CONTENT PATTERNS
   ========================================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 250px;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(19,57,122,0.04);
  padding: 24px 20px;
  transition: box-shadow 0.19s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 7px 20px 0 rgba(19,57,122,0.09);
}
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .card { min-width: 0; }
}

/* BLOG CARDS */
.blog-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 18px;
}
.blog-card {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 12px 0 rgba(19,57,122,0.04);
  padding: 22px 18px;
  min-width: 220px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.18s;
}
.blog-card h2 {
  font-size: 1.3rem;
  margin-bottom: 7px;
}
.blog-card:hover {
  box-shadow: 0 6px 20px 0 rgba(49,195,210,0.12);
}
@media (max-width: 768px) {
  .blog-cards {
    flex-direction: column;
    gap: 13px;
  }
  .blog-card { min-width: 0; }
}

/* TECHNOLOGIES GRID */
.tech-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 28px;
  justify-content: center;
}
.tech-item {
  flex: 1 1 195px;
  min-width: 180px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 11px 0 rgba(19,57,122,0.035);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  align-self: stretch;
  transition: box-shadow 0.18s;
}
.tech-item img {
  width: 34px; height: 34px;
  margin-bottom: 6px;
}
.tech-item:hover {
  box-shadow: 0 6px 16px rgba(49,195,210,0.12);
}
@media (max-width: 768px) {
  .tech-list-grid {
    gap: 12px;
    flex-direction: column;
  }
  .tech-item { min-width: 0; }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 24px 22px;
  background: #F7F8FA;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(19,57,122,0.03);
  min-width: 210px;
  flex: 1 1 280px;
  border-left: 4px solid #13397A;
  color: #1a2033;
}
.testimonial-card p {
  color: #18355a;
  font-size: 1.09rem;
  font-family: 'Roboto', serif;
  margin-bottom: 4px;
}
.testimonial-detail {
  font-size: 0.98rem;
  font-style: italic;
  color: #7d8ba6;
}
@media (max-width: 768px) {
  .testimonials {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card { min-width: 0; }
}

/* =========================================================
   FAQ & ACCORDION (simple styles)
   ========================================================= */
.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
  flex-direction: column;
}
.faq-item {
  background: #f7f8fa;
  border-radius: 11px;
  box-shadow: 0 2px 10px 0 rgba(19,57,122,0.025);
  padding: 18px 18px 14px 18px;
  margin-bottom: 6px;
  transition: box-shadow 0.16s;
}
.faq-item h3 {
  color: #13397A;
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.faq-item p {
  color: #223556;
  font-size: 1rem;
}
.faq-item:hover {
  box-shadow: 0 3px 15px 0 rgba(49,195,210,0.10);
}

/* =========================================================
   USE CASES & ELEMENTS
   ========================================================= */
.use-cases {
  background: #fff;
  border-radius: 11px;
  padding: 18px 20px;
  box-shadow: 0 1px 8px 0 rgba(49,195,210,0.025);
  margin-bottom: 14px;
}
.use-cases h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

/* Newsletter CTA */
.newsletter-cta {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  background: #fff;
  border-radius: 11px;
  padding: 22px 16px 18px 16px;
  box-shadow: 0 2px 14px 0 rgba(19,57,122,0.04);
  max-width: 400px;
  margin: 0 auto;
}
.newsletter-cta input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #b7bfcd;
  border-radius: 6px;
  font-size: 1.05rem;
  font-family: 'Roboto', serif;
  margin-bottom: 10px;
  outline: none;
  transition: border-color 0.19s;
}
.newsletter-cta input[type="email"]:focus {
  border-color: #13397A;
}

/* SEARCH FILTER */
.search-filter {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  background: #f5f7fa;
  border-radius: 10px;
  padding: 14px 14px 12px 14px;
}
.search-filter label {
  font-weight: 500;
  color: #23356d;
  margin-bottom: 4px;
}
.search-filter input[type="search"] {
  padding: 8px 11px;
  border: 1px solid #b6bfd2;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Roboto', serif;
  outline: none;
  width: 100%;
  max-width: 290px;
  transition: border-color 0.19s;
}
.search-filter input[type="search"]:focus {
  border-color: #13397A;
}

/* MAP SECTION */
.map-section {
  background: #fff;
  border-radius: 11px;
  padding: 18px 16px;
  box-shadow: 0 2px 14px 0 rgba(19,57,122,0.04);
  margin-bottom: 16px;
}

/* TEXT SECTION */
.text-section {
  flex: 1 1 360px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.text-section ul {
  margin-top: 8px;
  margin-bottom: 0;
  color: #223556;
}
.text-section a {
  color: #13397A;
  text-decoration: underline;
}
/* Service list */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
  justify-content: center;
}
.service-block {
  background: #f7f8fa;
  border-radius: 11px;
  box-shadow: 0 1px 8px 0 rgba(19,57,122,0.03);
  padding: 22px 18px 18px 18px;
  min-width: 220px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  transition: box-shadow 0.15s;
}
.service-block h2 {
  font-size: 1.22rem;
  margin-bottom: 7px;
}
.service-block:hover {
  box-shadow: 0 3px 16px 0 rgba(49,195,210,0.12);
}
@media (max-width: 768px) {
  .service-list {
    gap: 13px;
    flex-direction: column;
    align-items: stretch;
  }
  .service-block { min-width: 0; }
}

/* =========================================================
   BUTTONS AND MICRO-INTERACTIONS
   ========================================================= */
button, .cta-btn, input[type="submit"] {
  cursor: pointer;
  outline: none;
}
button:focus-visible, .cta-btn:focus-visible, input[type="submit"]:focus {
  box-shadow: 0 0 0 2px #31C3D2;
}

/* SMOOTH HOVER TRANSITIONS */
a, button, .cta-btn {
  transition: color 0.19s, background 0.19s, border 0.18s, box-shadow 0.18s;
}
.cta-btn:active {
  transform: translateY(1px);
}

/* =========================================================
   COOKIE CONSENT BANNER & PREFERENCES MODAL
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: #fff;
  box-shadow: 0 -4px 20px 0 rgba(19,57,122,0.07);
  border-top: 1.5px solid #e2e6ef;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  gap: 22px;
  font-size: 1.04rem;
  flex-wrap: wrap;
  animation: cookieBannerSlideIn 0.5s;
}
.cookie-banner p {
  color: #253877;
  margin: 0 0 0 0;
  font-size: 1.04rem;
  max-width: 450px;
}
.cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-banner button,
.cookie-banner .cta-btn {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1rem;
  border-radius: 22px;
  padding: 7px 19px;
  border: 1.6px solid transparent;
  background: #f5f7fa;
  color: #13397A;
  font-weight: 600;
  transition: background 0.19s, border-color 0.19s, color 0.19s;
}
.cookie-banner .accept {
  background: #13397A;
  color: #fff;
  border-color: #13397A;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #164aac;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #13397A;
  border-color: #13397A;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #f5f7fa;
  color: #13397A;
}
.cookie-banner .settings {
  background: #31C3D2;
  color: #fff;
  border-color: #31C3D2;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #13397A;
  color: #fff;
  border-color: #13397A;
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@media (max-width: 540px) {
  .cookie-banner { flex-direction: column; gap: 12px; align-items: stretch; text-align: left; }
}
/* Cookie Preferences Modal */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 350;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(30, 45, 90, 0.38);
  transition: opacity 0.38s;
  animation: modalFadeIn 0.38s;
}
@keyframes modalFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 50%;
  z-index: 400;
  max-width: 96vw;
  width: 420px;
  min-width: 275px;
  background: #fff;
  box-shadow: 0 10px 30px 0 rgba(19,57,122,0.08);
  border-radius: 14px;
  padding: 30px 28px 24px 28px;
  transform: translateY(-50%);
  margin: 0 auto;
  animation: modalPopupIn 0.4s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
@keyframes modalPopupIn {
  from { transform: translateY(-40%) scale(0.92); opacity:0; }
  to { transform: translateY(-50%) scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.3rem; color: #13397A; margin-bottom: 0; }
.cookie-modal label {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 6px;
  font-size: 1.08rem;
  color: #18213b;
  font-weight: 500;
}
.cookie-modal .cookie-setting {
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  width: 100%;
}
.cookie-modal .cookie-setting:last-child { border-bottom: none; margin-bottom: 0; }
.cookie-modal .cookie-switch {
  width: 38px; height: 22px;
  border-radius: 22px;
  background: #f0f0f4;
  border: 1px solid #d7d8df;
  position: relative;
  flex-shrink: 0;
  transition: background 0.24s;
  display: inline-block;
}
.cookie-modal .cookie-switch input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 38px;
  height: 22px;
  cursor: pointer;
}
.cookie-modal .cookie-switch span {
  position: absolute;
  top: 1.5px; left: 2px;
  background: #fff;
  width: 18px; height: 18px;
  border-radius: 50%;
  transition: left 0.22s, background 0.18s;
  box-shadow: 0 1px 2px rgba(19,57,122,.08);
  border: 1px solid #c4c6d0;
}
.cookie-modal .cookie-switch input:checked + span {
  left: 16px;
  background: #13397A;
  border-color: #13397A;
}
.cookie-modal .cookie-switch input[disabled]+span {
  background: #e0e4eb;
  cursor: not-allowed;
}
.cookie-modal .cookie-info {
  font-size: 0.95rem;
  color: #7d8ba6;
  margin-left: 30px;
}
.cookie-modal .modal-btns {
  width: 100%;
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .modal-btns .cta-btn {
  min-width: 90px;
}
@media (max-width: 540px) {
  .cookie-modal {
    padding: 18px 8px 14px 8px;
    width: 96vw;
    min-width: unset;
  }
}

/* =========================================================
   MISCELLANEOUS & HELPER CLASSES
   ========================================================= */
::-webkit-input-placeholder { color: #b0b6c2; opacity: 1; }
::-moz-placeholder { color: #b0b6c2; opacity: 1; }
:-ms-input-placeholder { color: #b0b6c2; opacity: 1; }
::placeholder { color: #b0b6c2; opacity: 1; }

input, textarea, select {
  font-family: 'Roboto', serif;
}
input[type="email"], input[type="search"] {
  background: #fff;
}
input[type="email"]:focus, input[type="search"]:focus {
  box-shadow: 0 1px 6px 0 rgba(49,195,210,0.12);
}

@media (max-width: 600px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.15rem; }
}

/* =========================================================
   SPACING & FLEX CONSISTENCY (MANDATORY RULES)
   ========================================================= */
.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; }
section {
  padding: 15px;
}
/* ======================= END =========================== */
