/*--------------------------------------------------------------------
 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #F9F6F2;
}
body {
  font-family: 'Roboto', Georgia, Times, serif;
  color: #183153;
  background: #F9F6F2;
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #183153;
  text-decoration: underline;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #4e6389;
  text-decoration: none;
}
/* Remove outline for mouse, keep for keyboard */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #C5E1A5;
  outline-offset: 2px;
}
button:focus {
  outline: none;
}

/*--------------------------------------------------------------------
 Font Imports (Serif for headings, sans-serif for body)
--------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --color-primary: #183153;
  --color-secondary: #C5E1A5;
  --color-accent: #F9F6F2;
  --color-bg: #F9F6F2;
  --color-text: #183153;
  --color-dark: #15213B;
  --color-muted: #e8ecee;
  --color-shadow: rgba(24,49,83,0.07);
  --color-success: #568b24;
  --color-error: #B2000F;
}

/*--------------------------------------------------------------------
 Container, Layout & Utility Classes
--------------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg);
  border-radius: 16px;
  box-shadow: 0 4px 24px var(--color-shadow);
}
@media (max-width: 900px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/*--------------------------------------------------------------------
 Typography
--------------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, Times, serif;
  color: var(--color-dark);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.375rem;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.125rem;
  font-weight: 600;
}
p, li, ul, ol {
  font-size: 1.05rem;
  color: var(--color-text);
}
strong, b {
  font-weight: bold;
  color: var(--color-dark);
}
small {
  font-size: 0.92rem;
  color: #7d8797;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 10px;
  line-height: 1.55;
}
blockquote {
  border-left: 4px solid var(--color-secondary);
  padding-left: 18px;
  font-style: italic;
  color: #466277;
  background: #f2f7e6;
  border-radius: 4px;
  margin: 16px 0;
}

/*--------------------------------------------------------------------
 Header & Navigation
--------------------------------------------------------------------*/
header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  box-shadow: 0 8px 24px -14px var(--color-shadow);
}
header .container {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
header a img {
  height: 44px;
  width: auto;
  margin-right: 28px;
  display: block;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', serif;
  font-weight: 500;
  font-size: 1.07rem;
  color: var(--color-dark);
  text-decoration: none;
  padding: 4px 10px;
  transition: color 0.2s, background 0.2s;
  border-radius: 6px;
}
header nav a:hover,
header nav a.active {
  color: var(--color-primary);
  background: var(--color-secondary);
}

header .cta.primary {
  margin-left: 18px;
}
header .mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  display: none;
  cursor: pointer;
  margin-left: 16px;
  line-height: 1;
  padding: 8px 10px;
}

@media (max-width: 900px) {
  header nav {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  header .cta.primary {
    display: none;
  }
  header .mobile-menu-toggle {
    display: inline-block;
  }
}

/*--------------------------------------------------------------------
 Mobile Menu
--------------------------------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,35,65,0.93);
  z-index: 2222;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 44px;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(.87,.01,.23,.99);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  position: absolute;
  right: 22px;
  top: 14px;
  z-index: 3401;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 50%;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(197,225,165,0.17);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 35px 0 35px;
  width: 100vw;
  max-width: 340px;
}
.mobile-nav a {
  font-family: 'Montserrat', serif;
  color: #fff;
  font-size: 1.28rem;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.18s, color 0.18s;
  border-radius: 0 2px 2px 0;
  display: block;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #183153;
}
@media (max-width: 480px) {
  .mobile-nav {
    padding: 27px 14px 0 14px;
    font-size: 1.15rem;
  }
}

/*--------------------------------------------------------------------
 Call to Action Buttons (CTA)
--------------------------------------------------------------------*/
.cta {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 24px;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: 1.11rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: background 0.28s, color 0.18s, box-shadow 0.25s;
  box-shadow: 0 2px 12px var(--color-shadow);
  text-align: center;
  text-decoration: none;
  margin-bottom: 12px;
}
.cta.primary {
  background: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
}
.cta.primary:hover, .cta.primary:focus {
  background: #204370;
  color: #fff;
  box-shadow: 0 5px 18px var(--color-shadow);
}
.cta.secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 1px solid var(--color-secondary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #a6ca89;
  color: var(--color-dark);
}
.cta.tertiary {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.cta.tertiary:hover, .cta.tertiary:focus {
  background: #f7faf2;
  color: var(--color-dark);
}
button.cta[disabled], .cta[disabled] {
  pointer-events: none;
  opacity: .53;
}

/*--------------------------------------------------------------------
 Hero Section
--------------------------------------------------------------------*/
.hero {
  background: var(--color-primary);
  color: #fff;
  padding: 70px 0 60px 0;
  border-radius: 0 0 36px 36px;
  margin-bottom: 42px;
  box-shadow: 0 12px 28px -18px var(--color-shadow);
}
.hero h1, .hero h2, .hero h3 {
  color: #fff;
}
.hero .content-wrapper {
  max-width: 620px;
  gap: 18px;
}
.hero p {
  color: #f0f2f6;
  font-size: 1.18rem;
}
.hero .cta {
  margin-top: 20px;
}
@media (max-width: 700px) {
  .hero {
    padding: 48px 0 47px 0;
    border-radius: 0 0 20px 20px;
    margin-bottom: 30px;
  }
  .hero .content-wrapper {
    max-width: 95vw;
  }
}

/*--------------------------------------------------------------------
 Services List (Cards)
--------------------------------------------------------------------*/
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0;
  justify-content: flex-start;
}
.service-block {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px var(--color-shadow);
  padding: 26px 24px 22px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  max-width: 300px;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.24s, transform 0.16s;
}
.service-block:hover {
  box-shadow: 0 8px 32px var(--color-shadow);
  transform: translateY(-3px) scale(1.02);
}
.service-block h3 {
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-bottom: 5px;
}
.service-block p {
  color: #466277;
  font-size: 1rem;
}
.service-price {
  color: var(--color-secondary);
  font-weight: bold;
  font-size: 1.11rem;
  margin-top: 8px;
  display: inline-block;
}

/*--------------------------------------------------------------------
 Section Lists & Features (Feature Item Pattern)
--------------------------------------------------------------------*/
.features ul, .features .feature-list, .advanced-features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin: 12px 0 24px 0;
}
.features ul li, .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 18px 16px 16px 16px;
  font-size: 1.03rem;
  min-width: 160px;
  max-width: 270px;
  margin-bottom: 20px;
}
.features ul li img, .feature-item img {
  width: 30px;
  height: 30px;
  margin-bottom: 2px;
}

@media (max-width: 900px) {
  .services-list {
    gap: 14px;
  }
  .service-block {
    max-width: 47vw;
  }
  .features ul, .feature-list, .advanced-features ul {
    gap: 14px;
  }
  .features ul li, .feature-item {
    min-width: 140px; max-width: 100%;
  }
}
@media (max-width: 700px) {
  .services-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .service-block {
    min-width: 0; max-width: 100%;
  }
  .features ul, .feature-list, .advanced-features ul {
    flex-direction: column;
    gap: 0;
  }
  .features ul li, .feature-item {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/*--------------------------------------------------------------------
 Testimonial Cards
--------------------------------------------------------------------*/
.testimonials {
  margin-bottom: 36px;
}
.testimonials .content-wrapper > h2 {
  margin-bottom: 16px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  color: var(--color-dark);
  font-style: normal;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px var(--color-shadow);
}
.testimonial-card p {
  font-size: 1.09rem;
  margin-right: 14px;
  color: var(--color-dark);
}
.testimonial-card strong {
  font-size: 1.03rem;
  color: #276312;
  margin-left: auto;
}
.testimonials .content-wrapper > div > span {
  font-size: 1.09rem;
  color: #7A846B;
  margin-bottom: 12px;
  padding-left: 6px;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px;
  }
}

/*--------------------------------------------------------------------
 About & Contact
--------------------------------------------------------------------*/
.about, .contact {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px var(--color-shadow);
  margin-bottom: 48px;
  padding: 36px 24px;
}
.contact-details ul, .contact-details
{
  list-style: none;
  padding-left: 0;
}
.contact-details li, .contact ul li {
  font-size: 1.07rem;
  margin-bottom: 12px;
  color: #374a60;
}
.contact-details strong {
  color: #183153;
}
.social-media {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.social-media li {
  display: flex;
  align-items: center;
  gap: 10px;
}

/*--------------------------------------------------------------------
 FAQ (Accordions/List)
--------------------------------------------------------------------*/
.faq-list ul, .faq-list ol {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
  list-style: none;
}
.faq-list li {
  padding: 18px 22px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 10px var(--color-shadow);
  margin-bottom: 20px;
}
.faq-list li strong {
  display: block;
  font-size: 1.09rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.faq-list p {
  font-size: 1rem;
}
.quick-contact-cta {
  margin-top: 22px;
  display: flex;
}

/*--------------------------------------------------------------------
 Contact Teaser Section
--------------------------------------------------------------------*/
.contact-teaser,
.next-steps {
  background: #f6faf2;
  border-radius: 14px;
  padding: 28px 16px;
  box-shadow: 0 1px 7px var(--color-shadow);
  margin-bottom: 32px;
  width: 100%;
}
.next-steps ul {
  margin-top: 6px;
  margin-bottom: 16px;
}
.next-steps li {
  color: #607097;
  font-size: 1rem;
}

/*--------------------------------------------------------------------
 Newsletter Section (Footer)
--------------------------------------------------------------------*/
.newsletter-signup {
  background: #fff;
  border-radius: 14px;
  padding: 24px 24px 14px 24px;
  box-shadow: 0 1px 7px var(--color-shadow);
  margin-bottom: 32px;
  max-width: 410px;
}
.newsletter-signup form {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 12px;
  margin-top: 8px;
}
.newsletter-signup input[type="email"] {
  padding: 9px 15px;
  border-radius: 24px;
  border: 1px solid #cbd7df;
  font-size: 1.01rem;
  font-family: inherit;
  flex: 1 1 70%;
}
.newsletter-signup button {
  padding: 9px 20px;
  border-radius: 24px;
  border: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 600;
  font-family: 'Montserrat', serif;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.17s;
}
.newsletter-signup button:hover {
  background: #b5d791;
}
.newsletter-signup input[disabled],
.newsletter-signup button[disabled] {
  opacity: 0.54;
  pointer-events: none;
}
.newsletter-signup small {
  display: block;
  margin-top: 8px;
}

/*--------------------------------------------------------------------
 Footer
--------------------------------------------------------------------*/
footer {
  background: #f4f6eb;
  border-top: 1px solid #e8ecee;
  padding: 38px 0 24px 0;
  margin-top: 40px;
  font-size: 1.02rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 34px 54px;
  align-items: flex-start;
  margin: 0 auto;
  justify-content: space-between;
  width: 100%;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .footer-legal a {
  color: #2b446a;
  text-decoration: none;
  font-family: 'Montserrat', serif;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: var(--color-secondary);
}
.footer-contact-short {
  color: #607097;
  font-size: 1.01rem;
  line-height: 1.63;
  margin-top: 6px;
}
.footer-contact-short strong {
  color: var(--color-primary);
  font-family: 'Montserrat', serif;
  font-size: 1.09rem;
}
@media (max-width: 1050px) {
  footer .content-wrapper {
    gap: 24px 34px;
  }
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .newsletter-signup {
    min-width: 0; max-width: 100%;
  }
}
/*--------------------------------------------------------------------
 Cookie Consent Banner
--------------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2800;
  background: #fff;
  box-shadow: 0 -4px 22px var(--color-shadow);
  border-top: 1px solid #cbe1c2;
  padding: 22px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.43s cubic-bezier(.7,.01,.23,.99), opacity 0.2s;
}
.cookie-banner.closed {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  color: #25435a;
  font-size: 1.04rem;
}
.cookie-banner .cookie-btn-row {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-banner .cookie-btn {
  padding: 10px 24px;
  border-radius: 22px;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: 1.02rem;
  border: 0;
  transition: background 0.14s, color 0.13s;
  cursor: pointer;
}
.cookie-banner .cookie-btn.accept {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner .cookie-btn.accept:hover {
  background: #afd486;
  color: var(--color-primary);
}
.cookie-banner .cookie-btn.reject {
  background: #ececec;
  color: var(--color-primary);
}
.cookie-banner .cookie-btn.reject:hover {
  background: #e1e5e4;
}
.cookie-banner .cookie-btn.settings {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid #aab1c6;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #f6faf2;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 4000;
  left: 0;top: 0;right: 0;bottom: 0;
  background: rgba(15,30,50,0.42);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 0 30px var(--color-shadow);
  padding: 32px 28px 28px 28px;
  width: 100vw;
  max-width: 410px;
  min-height: 210px;
  position: relative;
  transform: translateY(60px);
  transition: transform 0.32s, opacity 0.18s;
  opacity: 0;
}
.cookie-modal.open {
  transform: translateY(0);
  opacity: 1;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.67rem;
  font-weight: 700;
  color: #466277;
  position: absolute;
  right: 22px;
  top: 12px;
  cursor: pointer;
  transition: background 0.14s;
  border-radius: 50%;
  padding: 3px 7px;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #f6faf2;
}
.cookie-modal h3 {
  font-size: 1.26rem;
  color: var(--color-primary);
  margin-bottom: 7px;
}
.cookie-options {
  margin: 18px 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-option label {
  font-size: 1rem;
  color: #183153;
}
.cookie-option input[type="checkbox"] {
  accent-color: var(--color-secondary);
  width: 20px;
  height: 20px;
  margin-right: 4px;
  border-radius: 5px;
}
.cookie-option .always {
  color: #79946b;
  font-size: .97rem;
  margin-left: 6px;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-modal-actions .cookie-btn {
  padding: 8px 19px;
}

/*--------------------------------------------------------------------
 Responsive Patterns (Flexbox Only)
--------------------------------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 1px 8px var(--color-shadow);
  border-radius: 13px;
  margin-bottom: 20px;
  position: relative;
  padding: 20px 20px;
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 340px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/*--------------------------------------------------------------------
 Transitions, Effects & Micro-Interactions
--------------------------------------------------------------------*/
button, .cta, .mobile-menu-toggle, .mobile-menu-close,
.cookie-btn, .cookie-modal-close {
  transition: box-shadow 0.13s, background 0.21s, color 0.18s, transform 0.18s;
}
button:active, .cta:active, .mobile-menu-toggle:active, .mobile-menu-close:active,
.cookie-btn:active, .cookie-modal-close:active {
  transform: scale(0.97);
}
.card, .service-block, .testimonial-card, .faq-list li {
  transition: box-shadow 0.21s, transform 0.14s;
}
.card:hover, .service-block:hover {
  box-shadow: 0 8px 34px var(--color-shadow);
  transform: translateY(-2px) scale(1.02);
}

/*--------------------------------------------------------------------
 Adaptive - Small Devices
--------------------------------------------------------------------*/
@media (max-width: 520px) {
  h1 {
    font-size: 1.85rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .section, .about, .contact {
    padding: 14px 6px;
  }
  .testimonial-card {
    padding: 12px 5px;
  }
  .newsletter-signup {
    padding: 12px 6px 10px 6px;
  }
}

/*--------------------------------------------------------------------
 Utility & Helper Classes
--------------------------------------------------------------------*/
.hide {
  display: none !important;
}
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/*--------------------------------------------------------------------
 Custom Scrollbars for Elegant Classic Style
--------------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 10px;
  background: #f6faf2;
}
::-webkit-scrollbar-thumb {
  background: #dde3e7;
  border-radius: 6px;
}

/*--------------------------------------------------------------------
 Print Styles
--------------------------------------------------------------------*/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop {
    display: none !important;
  }
  body, html {
    background: #fff !important;
    color: #183153 !important;
  }
}
