/* 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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F7F8F9;
  color: #2E4053;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s cubic-bezier(.7,.3,.1,1);
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  border: none;
  background: none;
  box-shadow: none;
}
button {
  cursor: pointer;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  letter-spacing: -1px;
  font-weight: 700;
  color: #2E4053;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: #364655;
}
blockquote {
  border-left: 6px solid #E5B96A;
  background: #FDF6EC;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 12px;
  font-style: italic;
  font-size: 1.1rem;
  color: #2E4053;
}
strong {
  font-weight: 700;
}

/* Container System */
.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Section Spacing & Patterns */
.section,
.hero,
.features,
.services,
.about-short,
.cta,
.team,
.values,
.services-intro,
.process,
.case-studies,
.testimonials,
.gallery-section,
.contact,
.map-section,
.privacy-policy,
.gdpr,
.cookies-policy,
.terms-of-service,
.thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (min-width: 769px) {
  .section,
  .hero,
  .features,
  .services,
  .about-short,
  .cta,
  .team,
  .values,
  .services-intro,
  .process,
  .case-studies,
  .testimonials,
  .gallery-section,
  .contact,
  .map-section,
  .privacy-policy,
  .gdpr,
  .cookies-policy,
  .terms-of-service,
  .thank-you {
    padding: 60px 0;
    margin-bottom: 80px;
  }
  .content-wrapper {
    padding: 0 16px;
  }
}

/* Flexbox utility patterns */
.card-container,
.card-grid,
.feature_grid,
.feature-list,
.service-list,
.project-list,
.footer-columns,
.footer-menu nav,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0px 4px 24px rgba(46,64,83,0.07);
  padding: 32px 24px 24px 24px;
  width: 100%;
  transition: box-shadow .28s cubic-bezier(.89,.12,.23,.83), transform .2s cubic-bezier(.7,.3,.1,1);
  outline: 1.5px solid rgba(46,64,83,0.05);
}
.card:hover {
  box-shadow: 0px 8px 36px rgba(46,64,83,0.14);
  transform: translateY(-4px) scale(1.02);
  outline-color: #E5B96A;
}
.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: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border: 2.5px solid #E5B96A;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px rgba(46,64,83,0.12);
  max-width: 540px;
}
.testimonial-card p {
  color: #2E4053;
  font-weight: 600;
  font-size: 1.05rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Hero Section */
.hero {
  background: #2E4053;
  color: #fff;
  border-radius: 0 0 48px 48px;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: 0 8px 36px rgba(46,64,83,0.09);
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero h1 {
  color: #fff;
  font-size: 2.55rem;
  letter-spacing: 0px;
  margin-bottom: 16px;
  font-family: 'Montserrat', Arial Black, Arial, sans-serif;
}
.hero p {
  color: #C5C9CA;
  margin-bottom: 32px;
  font-size: 1.17rem;
}

/* Primary Call To Action Button */
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #E5B96A;
  color: #2E4053;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.1rem;
  padding: 16px 30px;
  border-radius: 36px;
  letter-spacing: .1em;
  transition: background .18s, color .18s, box-shadow .22s;
  box-shadow: 0 2px 16px rgba(229,185,106,0.18);
  border: 0 none;
}
.primary-cta:hover, .primary-cta:focus {
  background: #2E4053;
  color: #E5B96A;
  box-shadow: 0 6px 32px rgba(229,185,106,0.26);
  outline: none;
}

/* Navigation & Header */
header {
  background: #fff;
  box-shadow: 0 2.5px 16px rgba(44,56,73,0.06);
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 70px;
  width: 100%;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
  min-height: 70px;
  padding: 12px 0;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  letter-spacing: .03em;
  color: #2E4053;
  padding: 8px 14px;
  border-radius: 12px;
  transition: background .15s, color .15s;
}
header nav a:hover, header nav a:focus:not(.primary-cta) {
  background: #E5B96A;
  color: #2E4053;
}
header nav a.primary-cta {
  margin-left: auto;
}
header nav a img {
  width: 128px;
  height: auto;
  border-radius: 0;
  margin-right: 12px;
  vertical-align: middle;
}
@media (max-width: 992px) {
  header nav a img {
    width: 104px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 6px;
  }
}

/* Hamburger (Mobile) Navigation */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 17px;
  z-index: 101;
  width: 44px;
  height: 44px;
  background: #2E4053;
  color: #fff;
  border-radius: 10px;
  font-size: 26px;
  border: none;
  outline: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(46,64,83,0.11);
  transition: background .13s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #E5B96A;
  color: #2E4053;
}
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 360px;
  height: 100vh;
  background: #2E4053;
  color: #fff;
  z-index: 200;
  padding: 0 0 0 0;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.6,.16,.22,1), opacity 0.26s;
  box-shadow: -6px 0px 48px rgba(46,64,83,0.23);
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: #E5B96A;
  color: #2E4053;
  border: none;
  border-radius: 44px;
  font-size: 30px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 0;
  z-index: 201;
  transition: background .13s;
}
.mobile-menu-close:active,
.mobile-menu-close:focus {
  background: #2E4053;
  color: #E5B96A;
}
.mobile-nav {
  margin-top: 95px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 24px 40px 24px 32px;
}
.mobile-nav a {
  color: #fff;
  background: transparent;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  border-radius: 14px;
  margin-bottom: 2px;
  padding: 14px 8px 14px 12px;
  transition: background .17s, color .13s;
  letter-spacing: .04em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E5B96A;
  color: #2E4053;
}

/* Main Section Styles */
.features, .feature_grid, .feature-list {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 2px 16px rgba(46,64,83,0.06);
}
.feature_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 28px;
}
.feature {
  background: #F7F8F9;
  border-radius: 17px;
  padding: 30px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  flex: 1 1 200px;
  border-left: 5px solid #E5B96A;
  margin-bottom: 20px;
  transition: background .15s, box-shadow .21s;
}
.feature:hover {
  background: #FDF6EC;
  box-shadow: 0 4px 24px rgba(229,185,106,0.11);
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  filter: drop-shadow(0 1.5px 0 #C5C9CA);
}
.services, .service-list {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(46,64,83,0.04);
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.service {
  background: #F7F8F9;
  border-radius: 16px;
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 345px;
  padding: 28px 18px 18px 18px;
  margin-bottom: 20px;
  border-left: 4px solid #2E4053;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .14s, box-shadow .19s;
  box-shadow: 0 2px 20px rgba(46,64,83,0.05);
}
.service:hover {
  background: #FDF6EC;
  box-shadow: 0 8px 24px rgba(229,185,106,0.12);
}
.service .price {
  color: #E5B96A;
  font-weight: 700;
  margin-top: 14px;
  font-size: 1.08rem;
  letter-spacing: .02em;
}

.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.project {
  background: #fff;
  border-radius: 17px;
  flex: 1 1 300px;
  min-width: 220px;
  padding: 28px 18px 18px 18px;
  border-left: 5px solid #2E4053;
  box-shadow: 0 2px 20px rgba(46,64,83,0.05);
  margin-bottom: 20px;
  transition: background .14s, box-shadow .19s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.project:hover {
  background: #FDF6EC;
  box-shadow: 0 8px 26px rgba(229,185,106,0.10);
}
.category {
  background: #C5C9CA;
  color: #2E4053;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: .98rem;
  font-weight: 500;
  display: inline-block;
  margin-top: 6px;
}

/* About/Contact/Legal sections */
ul {
  margin-bottom: 19px;
  padding-left: 17px;
  list-style-type: disc;
}
main ul li,
main ol li {
  margin-bottom: 8px;
}

ol {
  padding-left: 24px;
  margin-bottom: 20px;
  list-style-type: decimal;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 22px;
}
.contact-details img {
  width: 22px;
  vertical-align: middle;
  margin-right: 8px;
}
.contact-details a {
  color: #2E4053;
  text-decoration: underline;
  transition: color .14s;
}
.contact-details a:hover {
  color: #E5B96A;
}

/* CTA Sections */
.cta {
  background: #2E4053;
  color: #fff;
  border-radius: 30px;
  box-shadow: 0 3px 32px rgba(46,64,83,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta h2, .cta p {
  color: #fff;
}
.cta .primary-cta {
  margin-top: 25px;
  background: #E5B96A;
  color: #2E4053;
}
.cta .primary-cta:hover {
  background: #fff;
  color: #2E4053;
  box-shadow: 0 4px 24px rgba(229,185,106,0.18);
}

/* Gallery Section */
.gallery-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1.5px 12px rgba(46,64,83,0.08);
}

/* Footer */
footer {
  background: #2E4053;
  color: #fff;
  padding: 50px 0 18px 0;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 18px;
}
.footer-logo-contact img {
  width: 78px;
  margin-bottom: 13px;
}
.contact-info-short {
  color: #C5C9CA;
  font-size: .97rem;
  margin-bottom: 9px;
}
.contact-info-short img {
  width: 18px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-menu nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.footer-menu nav a {
  color: #C5C9CA;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .02em;
  font-weight: 600;
  padding: 5px 0px;
  transition: color .12s;
}
.footer-menu nav a:hover {
  color: #E5B96A;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-social a img {
  width: 26px;
  height: 26px;
  filter: grayscale(1) brightness(1.03);
  opacity: 0.86;
  transition: filter .12s, opacity .13s;
}
.footer-social a:hover img {
  filter: none;
  opacity: 1;
}
.copyright {
  font-size: .98rem;
  color: #C5C9CA;
  text-align: center;
  margin-top: 18px;
}

@media (max-width: 980px) {
  .footer-columns {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-logo-contact img {
    width: 52px;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2E4053;
  color: #fff;
  padding: 24px 20px 24px 20px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px -2px 18px rgba(46,64,83,0.16);
  transition: transform .41s cubic-bezier(.7,.2,.17,1), opacity .21s;
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  color: #fff;
  max-width: 500px;
  margin-right: 12px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 16px;
}
@media (min-width: 650px) {
  .cookie-banner .cookie-actions {
    margin-top: 0;
  }
}
.cookie-banner button {
  min-width: 106px;
  padding: 9px 13px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  transition: background .15s, color .15s;
  border: none;
  outline: none;
  margin-right: 3px;
}
.cookie-banner .accept {
  background: #E5B96A;
  color: #2E4053;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: #2E4053;
  box-shadow: 0 2px 12px rgba(229,185,106,0.21);
}
.cookie-banner .reject {
  background: #fff;
  color: #2E4053;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #E5B96A;
  color: #2E4053;
}
.cookie-banner .settings {
  background: #2E4053;
  color: #E5B96A;
  border: 1.5px solid #E5B96A;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #E5B96A;
  color: #2E4053;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(46,64,83,0.32);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #2E4053;
  border-radius: 24px;
  min-width: 336px;
  max-width: 96vw;
  box-shadow: 0px 6px 32px rgba(44,56,73,0.19);
  padding: 36px 26px 26px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookie-popup 0.32s cubic-bezier(.61,.17,.11,1);
}
@media (max-width: 440px) {
  .cookie-modal {
    min-width: unset;
    width: 99vw;
    padding: 22px 4vw 24px 4vw;
  }
}
@keyframes cookie-popup {
  0% { transform: scale(.92) translateY(24px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: #2E4053;
  font-size: 1.37rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
  color: #2E4053;
  margin-left: 3px;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: #C5C9CA;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 9px;
}
.cookie-toggle input {
  opacity: 0;
  width: 44px;
  height: 24px;
  margin: 0;
  position: absolute;
  left: 0; top: 0;
  z-index: 3;
  cursor: pointer;
}
.cookie-toggle-slider {
  position: absolute;
  left: 1.5px;
  top: 1.5px;
  height: 21px;
  width: 21px;
  background: #fff;
  border-radius: 50%;
  transition: left .22s cubic-bezier(.7,.3,.1,1), background .13s;
  box-shadow: 0 0 5px rgba(46,64,83,0.10);
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 21px;
  background: #E5B96A;
}
.cookie-modal .category-desc {
  color: #777E87;
  font-size: .98rem;
  margin-left: 42px;
  margin-bottom: 4px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 16px;
}
.cookie-modal button {
  min-width: 96px;
  padding: 9px 11px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  transition: background .17s, color .15s;
  border: none;
  outline: none;
}
.cookie-modal .accept {
  background: #E5B96A;
  color: #2E4053;
}
.cookie-modal .reject {
  background: #fff;
  color: #2E4053;
}
.cookie-modal .close {
  background: #2E4053;
  color: #E5B96A;
  border: 1.3px solid #E5B96A;
}
.cookie-modal .accept:hover, .cookie-modal .accept:focus,
.cookie-modal .close:hover, .cookie-modal .close:focus,
.cookie-modal .reject:hover, .cookie-modal .reject:focus {
  background: #E5B96A;
  color: #2E4053;
}

/* Geometric/structured Decorative Shapes (Angle Accents) */
.card, .feature, .service, .project {
  position: relative;
}
.card:before, .feature:before, .service:before, .project:before {
  content: '';
  display: block;
  position: absolute;
  top: -16px;
  left: -16px;
  width: 44px;
  height: 44px;
  background: #E5B96A;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: .08;
  z-index: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 980px) {
  .container {
    max-width: 94vw;
    padding: 0 7vw;
  }
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  .content-wrapper {
    padding: 0 !important;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 3vw;
  }
  .section,
  .hero,
  .features,
  .services,
  .about-short,
  .cta,
  .team,
  .values,
  .services-intro,
  .process,
  .case-studies,
  .testimonials,
  .gallery-section,
  .contact,
  .map-section,
  .privacy-policy,
  .gdpr,
  .cookies-policy,
  .terms-of-service,
  .thank-you {
    padding: 30px 0 30px 0 !important;
    margin-bottom: 35px !important;
  }
  h1 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.13rem;
    margin-bottom: 13px;
  }
  .feature_grid, .project-list, .service-list, .card-container {
    gap: 16px;
  }
  .testimonials .testimonial-card, .testimonial-card {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .feature_grid, .service-list, .project-list {
    flex-direction: column;
    gap: 16px;
  }
  .footer-logo-contact img {
    width: 40px;
  }
}

/* Visual Micro-Interactions */
.feature img, .service, .project, .card, .primary-cta, .feature, .testimonial-card, .footer-social a img, header nav a, .mobile-menu-close, .mobile-menu-toggle, .cookie-banner button, .cookie-modal button {
  transition: box-shadow .18s, transform .15s, background .13s, color .13s;
}
.feature:active, .service:active, .project:active {
  transform: scale(.98);
}
footer .footer-social a img:active {
  transform: scale(1.09) rotate(-8deg);
}

/* For Accessibility and Keyboard Focus */
a:focus, button:focus {
  outline: 3px dashed #E5B96A;
  outline-offset: 2px;
}

/* Hide visually only, keep accessible */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}

/* Consistent Spacing */
.card, .feature, .service, .project, .testimonial-card {
  margin-bottom: 20px !important;
}
.card-container, .content-grid, .project-list, .feature_grid, .service-list {
  gap: 24px !important;
}
.section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}

/* Utility classes */
.hide { display: none !important; }

/* ----------------------------------------- */
/* Font-face: In production, replace with CDN links or fallbacks */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

