/* --- RESET & BASE TYPOGRAPHY --- */
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;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F5F7FA;
  color: #234870;
  min-height: 100vh;
  line-height: 1.5;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
ol, ul {
  list-style: none;
  padding-left: 0;
}
a {
  color: #234870;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #E8B659;
  outline-offset: 2px;
}

/* --- BRAND FONTS --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, ul, ol, address, span {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
strong {
  font-weight: bold;
}

/* --- CONTAINERS, GLOBAL SPACING --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(35,72,112,0.09);
}

/* --- FLEXBOX PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(35,72,112,0.07);
  padding: 24px;
  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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F5F7FA;
  border-radius: 18px;
  box-shadow: 0 1.5px 8px rgba(35,72,112,0.07);
  margin-bottom: 20px;
  color: #234870;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER & MAIN NAVIGATION --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 8px 12px -12px rgba(35,72,112,0.09);
  z-index: 30;
  position: relative;
}
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.main-nav li {
  display: flex;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.12s, color 0.12s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E8B659;
  color: #234870;
}

.btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  display: inline-block;
  font-size: 1.125rem;
  background: #234870;
  color: #fff !important;
  padding: 12px 40px;
  border-radius: 32px;
  box-shadow: 0 4px 16px rgba(35,72,112,0.15);
  border: none;
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.18s, color 0.16s;
  letter-spacing: 0.025em;
  margin-left: 16px;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #E8B659;
  color: #234870 !important;
  box-shadow: 0 6px 28px rgba(35,72,112,0.20);
}

/* --- HERO SECTION --- */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: 40vh;
  background: linear-gradient(93deg,#234870 76%,#E8B659 100%);
  color: #fff;
  border-radius: 0 0 28px 28px;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper{
  padding: 48px 0 24px 0;
  gap: 14px;
}
.hero h1 {
  color: #fff;
}
.hero p {
  color: #fff;
  font-size: 1.25rem;
}
.hero .btn-primary {
  margin-top: 12px;
  background: #fff;
  color: #234870 !important;
  border-radius: 32px;
  box-shadow: 0 4px 16px rgba(35,72,112,0.13);
}
.hero .btn-primary:hover,
.hero .btn-primary:focus {
  background: #E8B659;
  color: #234870 !important;
}

/* --- FEATURES (Grid approach with Flex) --- */
.features {
  background: #fff;
  margin-bottom: 60px;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(35,72,112,0.13);
}
.features .container {
  gap: 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
.feature-grid li {
  background: #F5F7FA;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(35,72,112,0.05);
  padding: 24px 24px 22px 24px;
  flex: 1 1 260px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  min-width: 210px;
  margin-bottom: 0;
  transition: box-shadow 0.23s, transform 0.17s;
}
.feature-grid li img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 6px;
}
.feature-grid li h3 {
  font-size: 1.2rem;
  color: #234870;
}
.feature-grid li:hover,
.feature-grid li:focus-within {
  box-shadow: 0 7px 26px rgba(35,72,112,0.17);
  transform: translateY(-4px) scale(1.03);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-list li {
  padding-left: 6px;
  font-weight: 600;
  font-size: 1.06rem;
  color: #234870;
  line-height: 1.375;
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-list li img {
  width: 32px;
  height: 32px;
}

/* --- CATEGORY FILTERS (shop.html) --- */
.category-filters {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #234870;
}
.category-filters span {
  background: #F5F7FA;
  border-radius: 14px;
  padding: 6px 18px;
  font-size: 1rem;
  font-weight: 600;
  color: #234870;
  margin-right: 6px;
  border: 2px solid #23487005;
  cursor: pointer;
  transition: border 0.16s, background 0.16s, color 0.14s;
}
.category-filters span:hover,
.category-filters span:focus {
  border: 2px solid #234870;
  background: #E8B659;
  color: #234870;
  outline: none;
}

/* --- SERVICE LISTINGS --- */
.service-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.service-listings li {
  background: #F5F7FA;
  border-radius: 16px;
  box-shadow: 0 2px 9px rgba(35,72,112,0.07);
  padding: 22px 20px 16px 20px;
  min-width: 210px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.06rem;
  position: relative;
  margin-bottom: 0;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.service-listings .price {
  color: #E8B659;
  font-weight: bold;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  font-size: 1.08rem;
  margin-left: auto;
}

.service-highlight {
  background: #fffcef;
  border-left: 5px solid #E8B659;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(232,182,89,0.09);
}

.pricing strong {
  color: #234870;
  background: #F5F7FA;
  border-radius: 10px;
  padding: 6px 18px;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/****************************/
/* --- ABOUT & CONTACT --- */
.about .content-wrapper {
  gap: 20px;
  font-size: 1.13rem;
}
.address {
  margin: 8px 0;
  font-style: normal;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.contact .info-alert {
  background: #fffbe7;
  border-left: 5px solid #E8B659;
  padding: 16px 18px;
  border-radius: 12px;
  color: #234870;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 10px;
}

/****************************/
/* --- TESTIMONIALS --- */
.testimonials {
  background: #fff;
  padding-top: 30px;
  border-radius: 28px;
  box-shadow: 0 4px 14px rgba(35,72,112,0.09);
}
.testimonials .container {
  gap: 0;
}
.testimonials .content-wrapper {
  gap: 26px;
}
.testimonial-card {
  background: #F5F7FA;
  color: #234870;
  border-radius: 22px;
  box-shadow: 0 2px 14px rgba(35,72,112,0.09);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  min-width: 0;
  margin-bottom: 20px;
  font-size: 1.14rem;
  position: relative;
  transition: box-shadow 0.21s;
}
.testimonial-card p {
  flex: 1 1 auto;
  font-size: 1.13rem;
  font-weight: 600;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #E8B659;
  display: inline-block;
}
.testimonial-card span:last-child {
  margin-left: 14px;
  font-size: 1.14rem;
  letter-spacing: 0.025em;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 7px 28px rgba(35,72,112,0.16);
}

/****************************/
/* --- FOOTER --- */
footer {
  width: 100%;
  background: #234870;
  color: #fff;
  padding: 50px 0 0 0;
  border-radius: 34px 34px 0 0;
  margin-top: 60px;
  box-shadow: 0 -4px 16px rgba(35,72,112,0.13);
}
.footer-logo {
  text-align: left;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 44px;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 1.088rem;
  margin-top: 12px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  opacity: 0.94;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.92;
  border-radius: 9px;
  padding: 5px 10px;
  transition: background 0.1s, color 0.1s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #E8B659;
  color: #234870;
}
footer address {
  font-style: normal;
}

/****************************/
/* --- BUTTONS & LINKS GENERAL --- */
button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: #E8B659;
  color: #234870;
  border: none;
  border-radius: 22px;
  padding: 10px 26px;
  cursor: pointer;
  transition: background 0.15s, color 0.13s, box-shadow 0.21s;
  box-shadow: 0 2px 8px rgba(232,182,89,0.08);
}
button:hover, button:focus {
  background: #234870;
  color: #fff;
}

/****************************/
/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 110;
  background: #234870;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 18px rgba(35,72,112,0.21);
  transition: background 0.16s, color 0.13s, box-shadow 0.22s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #E8B659;
  color: #234870;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #234870;
  color: #fff;
  z-index: 120;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(0.83,0,0.17,1);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: #E8B659;
  color: #234870;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.17s;
  z-index: 125;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #fff;
  color: #234870;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  padding: 90px 30px 40px 38px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  border-radius: 8px;
  padding: 8px 0;
  width: 100%;
  display: block;
  transition: background 0.12s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E8B659;
  color: #234870;
}

/****************************/
/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: #234870;
  color: #fff;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  box-shadow: 0 -2px 18px rgba(35,72,112,0.21);
  opacity: 1;
  pointer-events: all;
  animation: slideUpBanner 0.68s cubic-bezier(0.73,0,0.24,1);
}
@keyframes slideUpBanner {
  from {transform: translateY(120px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  flex: 1 1 240px;
  font-size: 1.1rem;
  color: #fff;
  margin: 0;
}
.cookie-banner .cookie-btn {
  background: #E8B659;
  color: #234870;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 26px;
  border-radius: 22px;
  margin-right: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.11s, box-shadow 0.11s;
  box-shadow: 0 2px 8px rgba(232,182,89,0.08);
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #fff;
  color: #234870;
}
.cookie-banner .cookie-preferences {
  background: transparent;
  color: #fff;
  border: 2px solid #E8B659;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 20px;
  border-radius: 20px;
  margin-right: 0;
  margin-left: 8px;
  transition: background 0.11s, color 0.11s, border 0.13s;
}
.cookie-banner .cookie-preferences:hover,
.cookie-banner .cookie-preferences:focus {
  background: #E8B659;
  color: #234870;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(35,72,112,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.73,0,0.24,1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #234870;
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(35,72,112,0.22);
  padding: 40px 30px 32px 30px;
  min-width: 300px;
  max-width: 96vw;
  max-height: 88vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: slideCookieModal 0.38s cubic-bezier(0.73,0,0.24,1);
}
@keyframes slideCookieModal {
  from {transform: translateY(40px) scale(0.94); opacity: 0;}
  to {transform: translateY(0) scale(1); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F5F7FA;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 12px;
  font-size: 1.09rem;
}
.cookie-modal .cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-modal .cookie-toggle input[type=checkbox] {
  width: 32px;
  height: 18px;
  appearance: none;
  background: #E8B659;
  outline: none;
  border-radius: 14px;
  position: relative;
  transition: background 0.12s;
}
.cookie-modal .cookie-toggle input[type=checkbox]:checked {
  background: #234870;
}
.cookie-modal .cookie-toggle input[type=checkbox]::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.11s cubic-bezier(0.73,0,0.24,1);
  box-shadow: 0 1px 3px rgba(35,72,112,0.11);
}
.cookie-modal .cookie-toggle input[type=checkbox]:checked::before {
  transform: translateX(14px);
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 12px;
}
.cookie-modal .cookie-btn {
  min-width: 110px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #E8B659;
  color: #234870;
  border-radius: 50%;
  font-size: 1.18rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: #234870;
  color: #fff;
}
.cookie-modal .category-desc {
  font-size: 0.99rem;
  color: #23487099;
  font-weight: 400;
}

/****************************/
/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  .container {
    max-width: 980px;
  }
  .feature-grid li, .service-listings li {
    min-width: 170px;
    max-width: 270px;
    padding: 18px 15px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 800px;
  }
  .main-nav ul {
    gap: 14px;
  }
  .feature-grid li, .service-listings li {
    min-width: 130px;
    max-width: 210px;
    font-size: 0.97rem;
    padding: 14px 10px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.54rem; }
  h3 { font-size: 1.09rem; }
  .container {
    max-width: 100vw;
    padding: 0 10px;
  }
  .section {
    padding: 22px 8px;
    margin-bottom: 36px;
    border-radius: 18px;
  }
  .main-nav, .footer-nav {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
    text-align: left;
  }
  .main-nav ul {
    gap: 6px;
    margin: 16px 0 0 0;
  }
  .hero .container, .features .container, footer .container {
    padding: 0 5px;
  }
  .hero {
    padding: 18px 0;
    border-radius: 0 0 18px 18px;
    margin-bottom: 38px;
    min-height: 15vh;
  }
  .hero .content-wrapper {
    padding: 24px 0 12px 0;
  }
  .feature-grid, .service-listings {
    gap: 12px;
    flex-direction: column;
  }
  .feature-grid li, .service-listings li {
    max-width: 100%;
    min-width: unset;
    width: 100%;
    padding: 14px 8px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    padding: 16px 10px;
    margin-bottom: 16px;
    font-size: 1rem;
  }
  .text-image-section,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 640px) {
  .footer-info, .footer-logo, .footer-nav {
    text-align: center;
    align-items: center !important;
    width: 100%;
  }
  footer {
    padding: 30px 0 0 0;
    border-radius: 20px 20px 0 0;
  }
  .cookie-modal {
    min-width: 0;
    padding: 18px 6px 14px 6px;
    border-radius: 15px;
  }
  .cookie-modal h2 {font-size: 1.25rem;}
}
@media (max-width: 520px) {
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1rem; }
  .btn-primary, button, .cookie-banner .cookie-btn {
    padding: 10px 16px;
    font-size: 1rem;
  }
  .mobile-nav {
    padding: 80px 10px 20px 15px;
    gap: 20px;
  }
}

/****************************/
/* --- MOBILE MENU LOGIC --- */
@media (max-width: 1002px) {
  .main-nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .btn-primary {
    display: none;
  }
  .main-nav {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }
}
@media (min-width: 1003px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/****************************/
/* --- UTILS, ANIMATIONS --- */
.fade-in {
  animation: fadeInEl 0.7s cubic-bezier(0.73,0,0.24,1);
}
@keyframes fadeInEl {
  from {opacity: 0;}
  to {opacity: 1;}
}
::-webkit-scrollbar-thumb {background:#E8B659; border-radius:12px;}
::-webkit-scrollbar {width:10px; background:#f5f7fa;}

/****************************/
/* --- CARD, VISUAL EFFECTS --- */
.card, .feature-grid li, .service-listings li, .testimonial-card {
  box-shadow: 0 3px 9px rgba(35,72,112,0.06), 0 0.5px 3px rgba(35,72,112,0.07);
}
.card:hover, .feature-grid li:hover, .service-listings li:hover {
  box-shadow: 0 11px 36px rgba(35,72,112,0.09);
  transform: translateY(-4px) scale(1.02);
}

.section {
  box-shadow: 0 8px 28px rgba(35,72,112,0.10);
  border-radius: 24px;
}

/****************************/
/* --- VISUAL HIERARCHY --- */
.section h2, .features h2, .about h1, .services h1, .contact h1, .about h2 {
  color: #234870;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -0.015em;
}
.section p, .features p, .about p, .services p, .contact p {
  font-size: 1.125rem;
  color: #234870cc;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
/****************************/
/* --- MISC --- */
input, select, textarea {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.5px solid #23487026;
  padding: 10px 14px;
  outline: none;
  transition: border 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #E8B659;
}

::-webkit-input-placeholder { color: #21477099;}
::-moz-placeholder { color: #21477099;}
:-ms-input-placeholder { color: #21477099;}
::placeholder { color: #21477099;}

/* --- END --- */
