/* === CSS RESET & BASIC NORMALIZATION === */
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-family: 'Georgia', 'Times New Roman', Times, serif;
  -webkit-text-size-adjust: 100%;
  background: #F5F7FB;
  color: #202E4F;
  scroll-behavior: smooth;
}

body {
  line-height: 1.65;
  min-height: 100vh;
  background: #F5F7FB;
  font-family: 'Open Sans', 'Liberation Sans', Arial, sans-serif;
  color: #202E4F;
  position: relative;
  font-size: 16px;
}

:root {
  --brand-primary: #202E4F;
  --brand-secondary: #C1D72F;
  --brand-accent: #F5F7FB;
  --brand-bg: #fcfcfa;
  --brand-muted: #F8F8F3;
  --brand-grey: #CCCCCC;
  --brand-border: #E2E3E8;
  --brand-dark: #151C31;
  --brand-highlight: #EAF194;
}

img {
  max-width: 100%;
  display: block;
  border-style: none;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.42,0,.58,1);
}
a:hover, a:focus {
  color: var(--brand-secondary);
  text-decoration: underline;
}

button, .btn-primary, input[type=submit], .btn-secondary {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 600;
  border: none;
  outline: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.13s cubic-bezier(.42,0,.58,1), color 0.13s cubic-bezier(.42,0,.58,1), box-shadow 0.18s;
  box-sizing: border-box;
}

ul, ol {
  margin: 0 0 24px 24px;
}

strong, b {
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #202E4F;
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 24px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

p {
  font-size: 1rem;
  color: #232635;
  margin-bottom: 18px;
  font-family: 'Open Sans', 'Liberation Sans', Arial, sans-serif;
  letter-spacing: 0;
}

blockquote {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: var(--brand-dark);
  background: #faf9f5;
  border-left: 4px solid var(--brand-secondary);
  margin: 0 0 14px 0;
  padding: 10px 16px 10px 24px;
  font-style: italic;
  font-size: 1.15em;
  line-height: 1.5;
}

/* === CONTAINER & LAYOUT === */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(32,46,79,0.06);
  border: 1px solid var(--brand-border);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  min-width: 220px;
  transition: transform 0.13s cubic-bezier(.42,0,.58,1), box-shadow .18s;
}
.card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(32, 46, 79, 0.12);
  border-color: var(--brand-secondary);
  z-index: 2;
}

.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;
  background: #fff;
  box-shadow: 0 4px 16px rgba(32,46,79,.10);
  border-radius: 9px;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid var(--brand-secondary);
  min-width: 220px;
  max-width: 520px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(32,46,79,.05);
  padding: 24px 18px;
  margin-bottom: 20px;
  border: 1px solid var(--brand-border);
}

/* === NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 1px 12px rgba(32,46,79,0.04);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 16px;
}
.main-nav a {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-primary);
  padding: 5px 12px;
  border-radius: 5px;
  transition: background 0.13s;
}
.main-nav a.active, .main-nav a:hover {
  color: var(--brand-secondary);
  background: #eeefec;
  text-decoration: none;
}
header .btn-primary {
  margin-left: 16px;
  background: var(--brand-secondary);
  color: var(--brand-primary)!important;
  padding: 10px 24px;
  font-size: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(190,210,70,0.08);
  transition: box-shadow 0.15s, background 0.18s;
  border: 1px solid var(--brand-secondary);
}
header .btn-primary:hover, header .btn-primary:focus {
  background: #eaf194;
  box-shadow: 0 6px 18px rgba(137, 166, 34, 0.13);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--brand-primary);
  padding: 6px 12px;
  cursor: pointer;
  z-index: 103;
  border-radius: 4px;
  margin-left: 10px;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #eceedf;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 32px rgba(32,46,79,0.12);
  transform: translateX(-100vw);
  z-index: 120;
  transition: transform 0.3s cubic-bezier(.7,.02,.41,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 38px;
  padding-left: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  border: none;
  color: var(--brand-primary);
  align-self: flex-end;
  margin: 8px 24px 0 0;
  cursor: pointer;
  padding: 4px 9px;
  border-radius: 4px;
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #eceedf;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.1rem;
  color: var(--brand-primary);
  padding: 10px 7px;
  border-radius: 6px;
  transition: background 0.15s;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a.active, .mobile-nav a:focus {
  background: #f3fdcc;
  color: var(--brand-secondary);
  text-decoration: underline;
}

/* Hide main nav & show hamburger on mobile */
@media (max-width: 1000px) {
  .main-nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1001px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none!important;
  }
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, #f6f7f2 60%, #f3fdcc);
  padding: 54px 0 54px 0;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  gap: 22px;
  max-width: 620px;
  margin: 0 auto;
  align-items: flex-start;
}
.hero h1 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.18;
}
.hero p {
  color: #304060;
  font-size: 1.18rem;
  margin-bottom: 20px;
}
.hero .btn-primary {
  margin-top: 10px;
  font-size: 1.05rem;
}

/* === FEATURE GRID LISTS === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--brand-border);
  box-shadow: 0 1px 7px rgba(32,46,79,0.05);
  padding: 30px 22px 19px 22px;
  min-width: 230px;
  flex: 1 1 220px;
  transition: box-shadow .18s, border .19s;
}
.feature-grid li img {
  width: 36px;
  height: 36px;
  margin-bottom: 2px;
  opacity: 0.97;
}
.feature-grid li h3 {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 2px;
  color: var(--brand-primary);
}
.feature-grid li p {
  color: #2c3140;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.feature-grid li:hover, .feature-grid li:focus {
  border-color: var(--brand-secondary);
  box-shadow: 0 6px 32px 0 rgba(193,215,47,0.09);
  z-index: 2;
  cursor: pointer;
}

/* === SERVICE LISTS & TABLES === */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 24px;
}
.service-list li {
  background: #fff;
  padding: 28px 22px 18px 22px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(32,46,79,.06);
  border: 1px solid var(--brand-border);
  min-width: 210px;
  flex: 1 1 205px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border .15s, box-shadow .17s;
}
.service-list li strong {
  color: var(--brand-secondary);
  font-size: 1.15em;
}
.service-list li:hover {
  border-color: var(--brand-secondary);
  box-shadow: 0 6px 24px rgba(137,166,34,.08);
}
.pricing-summary {
  background: #fafbdc;
  border-radius: 8px;
  padding: 18px 16px;
  margin: 18px 0 18px 0;
  font-size: 1.01em;
  color: #26314b;
  border-left: 4px solid var(--brand-secondary);
}
.pricing-table {
  margin: 16px 0 18px 0;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1.5px 9px rgba(32,46,79,0.04);
  border: 1px solid var(--brand-border);
  margin-bottom: 10px;
}
.pricing-table th,
.pricing-table td {
  padding: 11px 17px;
  text-align: left;
  border-bottom: 1px solid var(--brand-border);
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.pricing-table th {
  background: #f6f7f2;
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table p {
  margin: 0 0 10px 0;
  color: #3f495d;
  font-size: .99em;
}

/* === TESTIMONIALS / REVIEWS === */
.testimonial-card blockquote {
  background: none;
  border: none;
  color: #25294D;
  padding: 0;
  font-style: italic;
  font-size: 1.15em;
  line-height: 1.48;
}
.testimonial-card p {
  color: #4e5341;
  margin: 0;
}
.testimonial-card strong {
  color: var(--brand-primary);
}

/* === THANK-YOU PAGE === */
.thank-you {
  text-align: center;
  background: #fafbdc;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(193,215,47,0.06);
  margin: 40px 0 60px 0;
  padding: 50px 0 50px 0;
}
.thank-you .btn-primary {
  margin-top: 16px;
}

/* === TEXT-SECTION === */
.text-section {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(32,46,79,.05);
  border: 1px solid var(--brand-border);
  padding: 32px 26px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section h2 {
  font-size: 1.32rem;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.text-section ul, .text-section ol {
  margin: 0 0 18px 20px;
}

/* === FOOTER === */
footer {
  background: #f6f7f2;
  color: #202E4F;
  font-size: 1rem;
  margin-top: 64px;
}
footer section {
  padding: 36px 0 32px 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-nav a {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  color: var(--brand-primary);
  opacity: 0.9;
}
.footer-nav a:hover {
  color: var(--brand-secondary);
  text-decoration: underline;
}
.brand-info img {
  width: 48px;
  margin-bottom: 10px;
  margin-top: 3px;
}
.brand-info p {
  color: #272e49;
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
  font-family: 'Georgia', serif;
}
.contact-info {
  min-width: 220px;
}
.contact-info h3 {
  font-size: 1.07em;
  color: var(--brand-secondary);
  margin-bottom: 7px;
}
.contact-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 7px;
  display: flex;
  flex-direction: column;
}
.contact-info li {
  font-size: 0.98em;
  color: #27314b;
  display: flex;
  align-items: center;
  gap: 9px;
}
.contact-info img {
  width: 20px; height: 20px;
  margin-right: 6px;
}
.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
}
.social-links a img {
  width: 23px; height: 23px;
  opacity: 0.88;
  transition: opacity 0.16s;
}
.social-links a:hover img {
  opacity: 1;
}
.footer-bottom {
  border-top: 1px solid #e1e3db;
  padding: 14px 0 16px 0;
  margin-top: 0;
  text-align: center;
  color: #5a5e73;
  font-size: 0.96em;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--brand-secondary);
  color: var(--brand-primary)!important;
  padding: 12px 34px;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(190,210,70,0.07);
  transition: box-shadow 0.15s, background 0.18s, color 0.14s;
  border: 1px solid var(--brand-secondary);
  margin-top: 6px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #eaf194;
  color: var(--brand-dark)!important;
  box-shadow: 0 6px 18px rgba(193,215,47,0.16);
}

.btn-secondary {
  display: inline-block;
  background: #fff;
  color: var(--brand-primary);
  border: 1px solid var(--brand-secondary);
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 7px;
  padding: 10px 26px;
  transition: background 0.14s, color 0.13s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--brand-muted);
  color: var(--brand-secondary);
  box-shadow: 0 2px 8px rgba(193,215,47,0.13);
}

/* === MISCELLANEOUS === */
.project-highlights {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(32,46,79,.05);
  border: 1px solid var(--brand-border);
  padding: 30px 28px;
  margin: 15px 0 15px 0;
}
.project-highlights h2 {
  margin-bottom: 14px;
  font-size: 1.22rem;
}
.project-highlights ul {
  margin: 0 0 0 20px;
}

.map-location p img {
  width: 20px; height: 20px; margin-right: 6px; vertical-align: middle;
}

/* === COOKIE CONSENT === */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe6;
  color: #1b1c26;
  border-top: 2px solid var(--brand-secondary);
  box-shadow: 0 -6px 21px #abb64d0e;
  padding: 28px 20px 18px 20px;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.34s cubic-bezier(.38,.02,.55,.99), transform 0.34s cubic-bezier(.38,.02,.55,.99);
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(140px);
  pointer-events: none;
}
.cookie-consent-text {
  max-width: 600px;
  color: #243024;
  font-size: 1.02em;
}
.cookie-btn-group {
  display: flex;
  gap: 14px;
}
.cookie-btn-group .btn-primary,
.cookie-btn-group .btn-secondary {
  padding: 10px 19px;
  font-size: 1rem;
  min-width: 115px;
}
.cookie-btn-group .btn-secondary {
  background: #fff;
  color: var(--brand-primary);
}
.cookie-btn-group .btn-secondary:hover {
  background: var(--brand-muted);
  color: var(--brand-secondary);
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  background: #fff;
  min-width: 310px;
  max-width: 95vw;
  width: 420px;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(38,54,9,0.13);
  border: 2px solid var(--brand-secondary);
  z-index: 3002;
  transform: translate(-50%, -55%) scale(0.97);
  padding: 34px 24px 28px 24px;
  animation: cookie-popin 0.34s cubic-bezier(.38,.02,.55,.99);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@keyframes cookie-popin {
  from { opacity: 0; transform: translate(-50%, -70%) scale(0.93); }
  to   { opacity: 1; transform: translate(-50%, -55%) scale(0.97); }
}
.cookie-modal .cookie-modal-header {
  font-family: 'Georgia', serif;
  font-size: 1.11rem;
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 9px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.cookie-modal-label {
  font-size: 1em;
  margin-left: 7px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 19px;
  top: 14px;
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 5px;
}
.cookie-modal-close:hover {
  background: #f4f5e7;
}

/* Always checked 'essential' cookies in modal. For JS toggle, styles can be adapted: */
.cookie-modal input[type="checkbox"][disabled] + .cookie-modal-label {
  opacity: 0.65;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .footer .content-wrapper,
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .main-nav {
    gap: 11px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.27rem; }
  .hero h1 { font-size: 1.7rem; }
  .hero p { font-size: 1.02rem; }
  .section { margin-bottom: 34px; padding: 28px 8px; }
  .feature-grid, .service-list {
    gap: 14px;
  }
  .feature-grid li, .service-list li {
    min-width: unset;
    flex: 1 1 100%;
    padding: 18px 12px 11px 12px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: 100%;
    padding: 15px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .text-section {
    padding: 18px 9px;
  }
  .project-highlights {
    padding: 15px 8px;
  }
  .footer .content-wrapper,
  footer .content-wrapper {
    gap: 20px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 8px 13px 12px;
    font-size: .97em;
  }
  .cookie-modal {
    min-width: 90vw;
    width: 95vw;
    padding: 23px 6vw 16px 6vw;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 20px 0 30px 0;
    margin-bottom: 25px;
  }
  .brand-info img {
    width: 37px;
  }
}
@media (max-width:480px) {
  h1, .hero h1 { font-size: 1.32rem; }
  h2 { font-size: 1.04rem; }
  .content-wrapper { gap: 10px; }
  .btn-primary, .btn-secondary {
    font-size: 1em;
    padding: 10px 12px;
  }
}

/* === FLEX RESPONSIVENESS === */
@media (max-width: 900px) {
  .feature-grid, .service-list, .card-container, .content-grid {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

/* === CUSTOM SCROLLBAR FOR MODAL & MENU === */
.cookie-modal::-webkit-scrollbar,
.mobile-menu::-webkit-scrollbar {
  width: 7px;
  background: #e9edce;
}
.cookie-modal::-webkit-scrollbar-thumb,
.mobile-menu::-webkit-scrollbar-thumb {
  background: #c1d72f60;
  border-radius: 4px;
}

/* === SOUND MICRO-INTERACTIONS === */
.btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal-close {
  transition: box-shadow 0.14s, background 0.14s, color 0.13s, outline 0.18s;
}
.btn-primary:active, .btn-secondary:active {
  box-shadow: 0 1px 2px 0 rgba(88, 94, 31, 0.08);
  outline: 1.5px solid var(--brand-secondary);
}

/* === VISUAL ACCESSIBILITY === */
.testimonial-card, .feature-grid li, .service-list li, .card {
  color: #202E4F;
  background: #fff;
  box-shadow: 0 2px 10px rgba(32,46,79,0.07);
}
.testimonial-card blockquote, .testimonial-card strong, .testimonial-card p {
  color: #202E4F;
}
.footer-nav a, .contact-info, .brand-info {
  color: #202E4F;
}

/* === UTILITIES === */
.hide { display: none !important; }
.show { display: block !important; }

/* === MODERN, CLASSIC & ELEGANT SPACING === */
.section, .card, .feature-grid li, .service-list li, .testimonial-card {
  margin-bottom: 20px;
  box-sizing: border-box;
  word-break: break-word;
}

/* === END === */
