/* === 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, 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;
  background: #fff;
  color: #222;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
  box-sizing: border-box;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* === BRAND FONTS & COLORS === */
:root {
  --primary: #197278;
  --secondary: #454851;
  --accent: #E9F5F6;
  --text-dark: #222;
  --text-light: #fff;
  --highlight: #FFFBE6;
  --success: #7CD67C;
  --danger: #F86C6B;
  --blue: #60A3D9;
  --soft-shadow: 0 4px 24px rgba(25, 114, 120, 0.07);
  --radius: 16px;
  --radius-sm: 8px;
  --focus-outline: 0 0 0 3px rgba(25, 114, 120, 0.25);
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:700,800&family=Open+Sans:400,600,700&display=swap');

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #fafafe;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.015em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.25;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--secondary);
}
strong {
  font-weight: 700;
}

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}
@media (max-width: 600px) {
  .section {
    padding: 20px 6px;
    margin-bottom: 28px;
  }
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--accent);
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--soft-shadow);
  padding: 28px 22px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.feature-grid,
.features { /* .features section uses .feature-item only on homepage, others are ul/li */
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.feature-item, .features ul li {
  background: var(--highlight);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  padding: 32px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: transform 0.22s;
  position: relative;
}
.feature-item:hover,
.features ul li:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 28px rgba(25,114,120,0.10);
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 2px;
}
.features h2 {
  color: var(--secondary);
}


/* === NAVIGATION === */
header {
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(25, 114, 120, 0.06);
  position: relative;
  z-index: 100;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  padding: 18px 0 18px 0;
}
header nav a {
  padding: 7px 16px;
  border-radius: 6px;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1rem;
  transition: background 0.17s, color 0.17s;
}
header nav a:hover,
header nav a:focus {
  background: var(--primary);
  color: var(--text-light);
}
header nav a.cta-primary {
  background: var(--primary);
  color: #fff;
  margin-left: 8px;
  font-weight: 700;
  border-radius: 20px;
  padding: 7px 22px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 14px rgba(25,114,120,0.08);
  transition: background 0.18s, color 0.18s, box-shadow .22s;
}
header nav a.cta-primary:hover,
header nav a.cta-primary:focus {
  background: #165e65;
  box-shadow: 0 8px 32px rgba(25,114,120,0.13);
}

header nav img {
  height: 42px;
  width: auto;
  vertical-align: middle;
  margin-right: 12px;
}


/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  font-size: 2.1rem;
  padding: 10px 16px;
  border: none;
  border-radius: 50%;
  margin-left: auto;
  cursor: pointer;
  z-index: 300;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #165e65;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -1px 0 32px 4px rgba(25,114,120,0.13);
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(.88, .01, .29, .93);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 0 24px;
  gap: 22px;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  color: var(--primary);
  font-size: 2rem;
  border: none;
  cursor: pointer;
  z-index: 1510;
}
.mobile-nav {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  color: var(--secondary);
  font-size: 1.14rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 8px 12px 0;
  transition: background 0.16s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

@media (max-width: 990px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 28px;
  }
}
@media (min-width: 990px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Overlay for mobile menu */
.mobile-menu.active::before {
  display: block;
}

/* === BANNER HERO === */
.hero {
  background: linear-gradient(120deg, var(--accent) 77%, #fff 100%);
  padding: 70px 0 60px 0;
  margin-bottom: 60px;
  border-radius: 0 0 48px 48px;
  box-shadow: var(--soft-shadow);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 32px;
  text-align: center;
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--primary);
}
.hero p {
  color: var(--secondary);
  font-size: 1.17rem;
  max-width: 600px;
  margin-bottom: 18px;
}
.hero .cta-primary {
  margin-top: 20px;
  font-size: 1.17rem;
}

@media (max-width:600px) {
  .hero {
    padding: 38px 0 28px 0;
    margin-bottom: 30px;
    border-radius: 0 0 30px 30px;
  }
  .hero h1 {
    font-size: 1.35rem;
  }
}

/* === CTA & ACTION BUTTONS === */
.cta-primary, .faq-cta .cta-primary {
  background: var(--primary);
  color: #fff !important;
  border: none;
  border-radius: 1000px;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .02em;
  margin: 0 auto;
  box-shadow: 0 3px 20px rgba(25, 114, 120, 0.10);
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s;
  display: inline-block;
  text-align: center;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #165e65;
  box-shadow: 0 12px 36px rgba(25,114,120,0.13);
  color: #fff;
}

.cta {
  background: var(--accent);
  margin-bottom: 60px;
  padding: 34px 18px;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}
.cta h2 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 2rem;
}
.cta p {
  color: var(--secondary);
  margin-bottom: 18px;
}

/* === TESTIMONIALS AND REVIEW CARDS === */
.testimonials {
  margin-bottom: 54px;
}
.testimonials .content-wrapper,
.testimonials .container {
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 2px 16px rgba(25,114,120,0.11);
  min-width: 250px;
  max-width: 680px;
  min-height: 130px;
  color: #212226;
  font-size: 1.09rem;
  position: relative;
  z-index: 2;
}
.testimonial-card strong {
  color: var(--primary);
  font-weight: 700;
}
.testimonial-card p {
  color: #35363B;
  margin-bottom: 10px;
}
.testimonial-card div:last-child {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.02rem;
  color: #e5b142;
  gap: 6px;
}
.testimonial-card img {
  margin-right: 5px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 16px 0 0 0;
}
.client-logos img {
  background: var(--accent);
  padding: 7px;
  border-radius: 10px;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

@media (max-width:600px) {
  .testimonial-card {
    font-size: 0.98rem;
    padding: 13px;
  }
  .client-logos img {
    width: 42px;
    height: 42px;
  }
}


/* === FAQ ACCORDION === */
.faq {
  margin-bottom: 48px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: var(--highlight);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  padding: 18px 24px 16px 24px;
  transition: box-shadow 0.2s, background 0.18s;
}
.faq-item:hover {
  box-shadow: 0 4px 28px rgba(233,245,246,0.17);
  background: #fff;
}
.faq-item h3 {
  color: var(--primary);
  font-size: 1.09rem;
  margin-bottom: 10px;
}
.faq-item p {
  color: var(--secondary);
  margin: 0;
}
.faq-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* === SERVICE & PRICING CARDS === */
.service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
  justify-content: flex-start;
}
.service-categories button {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 900px;
  padding: 10px 18px;
  font-size: 1.1rem;
  margin-bottom: 8px;
  transition: background 0.17s, color 0.15s, box-shadow .17s;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
}
.service-categories button:hover, .service-categories button:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 22px rgba(25,114,120,0.10);
}
.service-card {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--soft-shadow);
  padding: 20px 24px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .19s;
}
.service-card:hover {
  box-shadow: 0 8px 26px rgba(25,114,120,0.09);
  transform: translateY(-3px) scale(1.015);
}
.service-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* === PRICING TABLE === */
.pricing table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}
.pricing th, .pricing td {
  padding: 14px 18px;
  text-align: left;
  font-size: 1rem;
  color: var(--secondary);
}
.pricing th {
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1.09rem;
  letter-spacing: .01em;
}
.pricing tbody tr:nth-child(odd) {
  background: #f3f9f9;
}
.pricing tbody tr:nth-child(even) {
  background: #e9f5f6;
}
@media(max-width:670px) {
  .pricing table, .pricing thead, .pricing tbody, .pricing th, .pricing td, .pricing tr {
    display: block;
    width: 100%;
  }
  .pricing th, .pricing td {
    padding: 12px 8px;
    text-align: left;
  }
  .pricing tbody tr {
    margin-bottom: 8px;
  }
}

/* === LEGAL TEXTS AND SIMPLE LISTS === */
.legal {
  margin-bottom: 32px;
}
.legal ul, .features ul, .about ul, .pricing ul, .contact ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 16px;
  margin-top: 2px;
}
.legal ul li, .features ul li, .about ul li, .pricing ul li, .contact ul li {
  list-style: disc inside;
  color: var(--secondary);
  background: transparent;
  padding-left: 12px;
}

/* === CONTACT SECTION === */
.contact {
  margin-bottom: 50px;
}
.contact-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 30px;
  align-items: center;
}
.contact-overview div {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 1.05rem;
  color: var(--secondary);
}
.contact-overview img {
  width: 22px;
  height: 22px;
  margin-right: 4px;
}

/* === FOOTER === */
footer {
  background: var(--secondary);
  color: #fff;
  padding: 48px 0 24px 0;
  box-shadow: 0 -2px 20px rgba(25,114,120,0.06);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #e9f5f6;
  transition: color 0.17s, background 0.16s;
  padding: 3px 0;
  font-weight: 600;
  border-radius: 3px;
}
footer nav a:hover {
  color: var(--success);
  background: rgba(25,114,120,0.12);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.97rem;
}
.contact-details img {
  width: 18px;
  height: 18px;
  opacity: .91;
}
.legal-links {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.96rem;
  color: #bbe6eb;
}
.legal-links a {
  color: #bbe6eb;
  text-decoration: underline;
}
.legal-links a:hover {
  color: var(--success);
}
@media (max-width:800px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 26px;
  }
  footer .container {
    padding: 0 12px;
  }
}

/* === THANK YOU PAGE === */
.thankyou .text-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}

/* === COOKIE BANNER === */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 98vw;
  max-width: 480px;
  background: #fffdf8;
  color: var(--secondary);
  box-shadow: 0 -2px 22px #19727818;
  border-top: 4px solid var(--primary);
  z-index: 3000;
  border-radius: 14px 14px 0 0;
  padding: 24px 20px 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  animation: ccbannerIn .55s cubic-bezier(.25,.89,.37,1.09);
}
@keyframes ccbannerIn {
  0% {transform: translateX(-50%) translateY(160px); opacity:0;}
  100% {transform: translateX(-50%) translateY(0); opacity:1;}
}
.cookie-consent-banner p {
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--secondary);
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  width: 100%;
  margin-top: 8px;
}
.cc-btn {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 900px;
  padding: 7px 22px;
  font-size: 1rem;
  margin-right: 4px;
  cursor: pointer;
  transition: background .18s, color .15s,box-shadow .18s;
}
.cc-btn.accept {
  background: var(--success);
  color: #fff;
}
.cc-btn.reject {
  background: var(--danger);
  color: #fff;
}
.cc-btn.settings {
  background: var(--primary);
  color: #fff;
  border: 1.5px solid var(--primary);
}
.cc-btn:hover, .cc-btn:focus {
  background: #125153;
  color: #fff;
}
.cc-btn.accept:hover, .cc-btn.accept:focus {
  background: #59b259;
}
.cc-btn.reject:hover, .cc-btn.reject:focus {
  background: #da3d23;
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(69,72,81,0.36);
  z-index: 3900;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .24s ease;
}
@keyframes fadeIn {
  from {opacity:0;}
  to {opacity:1;}
}
.cookie-modal {
  background: #fff;
  max-width: 420px;
  width: 96vw;
  border-radius: var(--radius);
  box-shadow: 0 4px 38px #19727818;
  padding: 35px 24px 28px 24px;
  color: var(--secondary);
  position: relative;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideUp .3s cubic-bezier(.77,.01,.29,1.15);
}
@keyframes slideUp {
  from {transform: translateY(90px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.22rem;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
  color: var(--primary);
  margin-right: 6px;
}
.cookie-toggle {
  width: 32px;
  height: 18px;
  background: #e9f5f6;
  border-radius: 18px;
  position: relative;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.17s;
  border: 1px solid var(--primary);
}
.cookie-toggle[data-checked='true'] {
  background: var(--primary);
}
.cookie-toggle .dot {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.22s;
}
.cookie-toggle[data-checked='true'] .dot {
  left: 16px;
}
.cc-close-modal {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: var(--danger);
  font-size: 1.7rem;
  cursor: pointer;
  z-index: 4100;
}
/* Accessibility focus */
a, button, .cc-btn, .cookie-toggle:focus {
  outline: none;
  box-shadow: none;
}
a:focus, button:focus, .cc-btn:focus, .cookie-toggle:focus {
  box-shadow: var(--focus-outline);
}

/* === ANIMATIONS & MICROINTERACTIONS === */
.cta-primary, .service-categories button, .feature-item, .card, .testimonial-card, .service-card, .faq-item, .cc-btn {
  transition: background .19s, color .18s, box-shadow .24s, transform .18s;
}
.cta-primary:active, .service-categories button:active, .feature-item:active, .card:active {
  transform: scale(0.97);
}

/* === RESPONSIVE FLEXBOX RULES === */
@media (max-width: 900px) {
  .content-wrapper, .content-grid, .card-container {
    flex-direction: column !important;
    gap: 22px;
  }
  .feature-grid, .features, .card-container, .client-logos {
    justify-content: flex-start !important;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 5px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .feature-item, .features ul li {
    padding: 16px 9px 14px 11px;
    min-width: 165px;
    font-size: .99rem;
  }
  .testimonial-card {
    padding: 8px;
    font-size: 0.93rem;
  }
  .cta-primary {
    font-size: 0.98rem;
    padding: 9px 15px;
  }
}

/* === PRINTING & MISC === */
@media print {
  header, nav, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay, footer {
    display: none !important;
  }
}

/* === UNIQUE ARTISTIC/CREATIVE STYLE ENHANCEMENTS === */
h1, h2, h3 {
  background: linear-gradient(92deg, var(--primary) 70%, var(--blue) 120%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero h1 {
  background: linear-gradient(96deg, var(--blue) 50%, var(--primary) 130%);
  -webkit-background-clip: text;
  background-clip: text;
}
h1 span, h2 span, .cta-primary span {
  color: var(--danger);
  font-style: italic;
}
.feature-item:before {
  content: '';
  position: absolute;
  right: 16px;
  bottom: 15px;
  width: 26px;
  height: 26px;
  background: rgba(25,114,120,0.11);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.feature-item img, .service-card img {
  filter: drop-shadow(0 1px 4px #19727818);
}
.card, .feature-item, .service-card {
  background-image: linear-gradient(101deg, #fff 80%, #e9f5f6 100%);
}

@media (max-width:670px) {
  .feature-grid, .features, .content-grid, .client-logos {
    flex-direction: column !important;
    align-items: stretch;
    gap: 14px;
  }
}

/* === BORDERS & SHADOWS FOR VISUAL HIERARCHY === */
.card, .testimonial-card, .feature-item, .service-card, .faq-item {
  box-shadow: 0 1px 10px 0 #19727815;
}

/* === OVERRIDE FOR MARGIN AND SPACING BETWEEN SECTIONS === */
section {
  margin-bottom: 60px;
}
section:last-child {
  margin-bottom: 0;
}
section .card,
section .testimonial-card,
section .feature-item,
section .service-card,
section .faq-item {
  margin-bottom: 20px;
}

/* User selection for accessibility */
body, h1, h2, h3, h4, h5, h6, p, div {
  user-select: text;
}

/* === END OF FILE === */
