/* --- RESET AND 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: #101519;
  color: #F4F8FA;
  font-family: 'Open Sans', Arial, sans-serif;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #33A573;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #F4F8FA;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button, .btn-primary {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* --- TYPOGRAPHY SCALE --- */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.15;
  letter-spacing: 0.03em;
  color: #F4F8FA;
  margin-bottom: 24px;
  text-shadow: 0 2px 3px rgba(20,66,96,0.25);
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #F4F8FA;
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(20,66,96,0.22);
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #33A573;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
p, li, dd {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #D7E3EA;
  margin-bottom: 12px;
  line-height: 1.7;
}
.subheadline {
  color: #AFBAC7;
  font-size: 1.125rem;
  margin-bottom: 32px;
}
strong {
  color: #F4F8FA;
  font-weight: bold;
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #144260;
  background: #F4F8FA;
  border-left: 4px solid #33A573;
  padding: 20px 24px;
  margin-bottom: 12px;
  font-size: 1.125rem;
  font-style: italic;
  box-shadow: 0 2px 14px 0 rgba(20,66,96,0.10);
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- FLEXBOX UTILITY CLASSES (NO GRID) --- */
.card-container, .card-grid, .feature-grid, .services-list, .blog-posts, .benefits-list, .project-overview, .team-list, .guide-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section, .contact-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card {
  background: #181F23;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(44, 50, 56, 0.18);
  border: 1px solid #22303A;
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 280px;
  flex: 1 1 320px;
  transition: box-shadow .22s, transform .18s;
}
.card:hover {
  box-shadow: 0 4px 18px 0 rgba(44, 50, 56, 0.23);
  transform: translateY(-4px) scale(1.015);
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #144260 70%, #22303A 130%);
  color: #F4F8FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  padding: 13px 32px;
  border-radius: 28px;
  border: none;
  letter-spacing: .05em;
  box-shadow: 0 2px 8px 0 rgba(20,66,96,.14);
  margin-top: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background .25s, color .16s, box-shadow .22s, transform .18s;
  outline: none;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(20,66,96,0.08);
}
.btn-primary:hover,
.btn-primary:focus {
  background: #33A573;
  color: #101519;
  box-shadow: 0 6px 18px 0 rgba(51, 165, 115, 0.18);
  text-decoration: none;
}

/* --- HEADER --- */
header {
  background: #181F23;
  border-bottom: 1.5px solid #22303A;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px 0 rgba(20,66,96,0.08);
}
.logo img {
  height: 46px;
  width: auto;
  margin-right: 18px;
  display: block;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: #D7E3EA;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 7px 18px;
  border-radius: 7px;
  transition: background-color .22s, color .16s;
  font-size: 1rem;
  text-shadow: 0 1px 3px rgba(20,66,96,0.06);
}
.main-nav a:hover,
.main-nav a:focus {
  background: #22303A;
  color: #33A573;
}
.main-nav .btn-primary {
  margin-left: 18px;
  background: #33A573;
  color: #101519;
}
.main-nav .btn-primary:hover {
  background: #144260;
  color: #F4F8FA;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #33A573;
  font-size: 2.1rem;
  margin-left: 18px;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  border-radius: 8px;
  transition: background .2s;
  z-index: 120;
}
.mobile-menu-toggle:focus {
  background: #22303A;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1050;
  background: rgba(16,21,25,.98);
  transition: transform .3s cubic-bezier(0.77,0,0.18,1);
  transform: translateX(-100vw);
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: mobileSlideIn .27s cubic-bezier(0.77,0,0.18,1);
}
@keyframes mobileSlideIn {
  from { transform: translateX(-100vw); }
  to   { transform: translateX(0); }
}
.mobile-menu-close {
  font-size: 2.3rem;
  background: none;
  border: none;
  color: #33A573;
  align-self: flex-end;
  margin: 18px 20px 6px 0;
  cursor: pointer;
  border-radius: 8px;
  padding: 3px 13px;
  transition: background .2s;
}
.mobile-menu-close:focus {
  background: #22303A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  gap: 10px;
  align-items: flex-start;
  padding: 20px 35px;
}
.mobile-nav a {
  color: #F4F8FA;
  font-size: 1.18rem;
  padding: 16px 0;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 5px;
  letter-spacing: 0.01em;
  transition: background-color .22s, color .15s, padding-left .17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #22303A;
  color: #33A573;
  padding-left: 12px;
}
.mobile-nav .btn-primary {
  width: 100%;
  margin: 10px 0;
  background: #33A573;
  color: #101519;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(120deg, #181F23 75%, #144260 100%);
  padding: 60px 0 50px 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  border-bottom: 2px solid #22303A;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
}
.hero h1 {
  font-size: 2.3rem;
}
.hero .btn-primary {
  margin-top: 23px;
}

/* --- FEATURES AND SERVICES --- */
.features, .services-overview, .benefits, .team {
  background: #13181B;
  border-radius: 18px;
  box-shadow: 0 3px 24px 0 rgba(20,66,96,.06);
}
.feature-grid,
.services-list,
.benefits-list {
  width: 100%;
}
.feature,
.service,
.benefit {
  background: #181F23;
  border: 1.5px solid #22303A;
  border-radius: 13px;
  box-shadow: 0 2px 16px 0 rgba(36, 48, 59, 0.10);
  padding: 28px 20px 24px 20px;
  flex: 1 1 250px;
  min-width: 260px;
  max-width: 340px;
  transition: box-shadow .18s, transform .16s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.feature img, .benefit img, .service img {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  filter: grayscale(22%) contrast(1.3);
}
.feature:hover, .benefit:hover, .service:hover {
  box-shadow: 0 6px 21px 0 rgba(44,60,96,0.10);
  transform: translateY(-3px) scale(1.01);
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service a {
  margin-top: 12px;
  color: #33A573;
  font-weight: bold;
  font-size: .98rem;
  letter-spacing: .03em;
  display: inline-flex;
  align-items: center;
  transition: color .15s;
}
.service a:hover {
  color: #F4F8FA;
  text-decoration: underline;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #F4F8FA;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 1px 14px 0 rgba(20,66,96,0.10);
  color: #181F23;
  padding: 44px 0 24px 0;
}
.testimonials h2 {
  color: #144260;
}
.testimonial-card {
  background: #FFF;
  border-radius: 13px;
  box-shadow: 0 2px 12px 0 rgba(20,66,96,0.09);
  padding: 24px 28px;
  margin-bottom: 20px;
  color: #101519;
  border-left: 4px solid #33A573;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.testimonial-card p,
.testimonial-card blockquote {
  color: #144260;
}
.testimonial-card strong {
  color: #144260;
  font-weight: 700;
}

/* --- CTA SECTION --- */
.cta {
  background: #144260;
  border-radius: 17px;
  color: #F4F8FA;
  padding: 40px 0 36px 0;
  margin-bottom: 60px;
  box-shadow: 0 2px 24px 0 rgba(51, 165, 115, 0.10);
}
.cta h2 {
  margin-bottom: 10px;
  color: #F4F8FA;
}
.cta-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 38px;
  margin-top: 16px;
}
.cta .contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}
.cta .contact-info li {
  color: #F4F8FA;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta .contact-info img {
  width: 23px;
  height: 23px;
  filter: grayscale(10%) contrast(1.2);
}

/* --- FOOTER --- */
footer {
  background: #101519;
  color: #7E909F;
  padding: 34px 0 24px 0;
  border-top: 1.5px solid #22303A;
  font-size: .98rem;
  box-shadow: 0 -1px 9px 0 rgba(20,66,96,0.08);
  margin-top: 60px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}
.footer-menu a {
  color: #33A573;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .01em;
  font-size: 1rem;
  transition: color .22s;
}
.footer-menu a:hover {
  color: #F4F8FA;
}
.footer-info {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #7E909F;
  font-weight: 500;
}
.footer-info img {
  width: 30px;
  height: 30px;
}

/* --- BLOG --- */
.blog-list {
  background: #13181B;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 2px 18px 0 rgba(44,66,96,0.09);
}
.blog-categories {
  display: flex;
  gap: 19px;
  align-items: center;
  margin-bottom: 18px;
}
.blog-categories a {
  background: #22303A;
  color: #F4F8FA;
  padding: 4px 17px;
  border-radius: 7px;
  font-size: 0.98rem;
  transition: background .18s, color .14s;
}
.blog-categories a:hover {
  background: #33A573;
  color: #101519;
}
.blog-posts {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.blog-post-card {
  background: #181F23;
  border: 1.5px solid #22303A;
  border-radius: 13px;
  box-shadow: 0 2px 14px 0 rgba(20,66,96,0.09);
  padding: 28px 20px;
  min-width: 250px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .17s;
}
.blog-post-card:hover {
  box-shadow: 0 5px 18px 0 rgba(51, 165, 115, 0.12);
  border-color: #33A573;
  transform: translateY(-3px) scale(1.01);
}
.blog-post-card h3 {
  font-size: 1.12rem;
  color: #33A573;
  margin-bottom: 8px;
}
.blog-post-card a {
  margin-top: 10px;
  display: inline-block;
  color: #33A573;
  font-weight: 600;
  font-size: .97rem;
  letter-spacing: .02em;
}
.blog-post-card a:hover {
  color: #F4F8FA;
}
.latest-post-highlight {
  background: #22303A;
  border-radius: 15px;
  padding: 26px 20px;
  color: #F4F8FA;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px 0 rgba(20,66,96,0.07);
}
.latest-post-highlight h2{
  margin-bottom: 10px;
  color: #33A573;
}

/* --- LEGAL/TEXT SECTIONS --- */
.legal {
  background: #181F23;
  border-radius: 15px;
  padding: 40px 0 34px 0;
  margin-bottom: 60px;
  box-shadow: 0 2px 10px 0 rgba(44,66,96,0.08);
}
.legal h1, .legal h2, .legal h3 {
  color: #33A573;
}
.legal ul {
  margin-left: 17px;
  padding-left: 17px;
  list-style: disc;
  color: #D7E3EA;
}
.legal li {
  margin-bottom: 9px;
}
.legal a {
  color: #33A573;
}
.text-section {
  margin: 0 0 14px 0;
}
.text-section ul {
  margin-left: 22px;
  padding-left: 13px;
}
.text-section li {
  margin-bottom: 7px;
  color: #AFBAC7;
}
.step-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-left: 13px;
  color: #D7E3EA;
}
.step-list li strong {
  color: #33A573;
}

/* --- GUIDE/FAQ --- */
.guide-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.guide-article {
  background: #181F23;
  border: 1.5px solid #22303A;
  border-radius: 13px;
  box-shadow: 0 2px 14px 0 rgba(44,66,96,0.09);
  padding: 28px 20px;
  min-width: 250px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  transition: box-shadow .19s, transform .15s;
}
.guide-article:hover {
  box-shadow: 0 5px 15px 0 rgba(51, 165, 115, 0.13);
  border-color: #33A573;
  transform: translateY(-3px) scale(1.01);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.faq-list dt {
  color: #33A573;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-list dd {
  margin-bottom: 6px;
  margin-left: 15px;
  color: #D7E3EA;
}

/* --- REALIZATIONS / PROJECTS --- */
.project-overview {
  gap: 24px;
}
.project-card {
  background: #181F23;
  border: 1.5px solid #22303A;
  border-radius: 13px;
  box-shadow: 0 2px 14px 0 rgba(44,66,96,0.09);
  padding: 28px 20px;
  min-width: 250px;
  flex: 1 1 300px;
  margin-bottom: 20px;
}
.project-card h3 {
  color: #33A573;
  margin-bottom: 6px;
  font-size: 1.13rem;
}

/* --- TEAM LIST --- */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.team-list li {
  background: #181F23;
  border: 1px solid #22303A;
  border-radius: 13px;
  padding: 23px 20px;
  min-width: 230px;
  flex: 1 1 220px;
}
.team-list h3 {
  font-size: 1.1rem;
  color: #33A573;
  margin-bottom: 7px;
}

/* --- THANK YOU PAGE --- */
.thank-you .text-section {
  margin: 22px 0 0 0;
  background: #181F23;
  border-radius: 13px;
  box-shadow: 0 2px 8px 0 rgba(51, 165, 115, 0.08);
  padding: 26px 20px;;
}
.thank-you ul {
  margin-bottom: 13px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* --- COOKIES BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #181F23;
  color: #F4F8FA;
  z-index: 2000;
  box-shadow: 0 -1px 10px 0 rgba(20,66,96,0.15);
  padding: 24px 14px 24px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 23px;
  flex-wrap: wrap;
  font-size: 1rem;
  border-radius: 20px 20px 0 0;
  animation: cookieBannerIn .4s cubic-bezier(0.77,0,0.18,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-banner p {
  color: #F4F8FA;
  margin-right: 30px;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn,
.cookie-settings-btn {
  padding: 10px 26px;
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 5px;
  transition: background .23s, color .16s, box-shadow .15s;
}
.cookie-btn.accept {
  background: #33A573;
  color: #101519;
}
.cookie-btn.accept:hover {
  background: #144260;
  color: #F4F8FA;
}
.cookie-btn.reject {
  background: #22303A;
  color: #F4F8FA;
}
.cookie-btn.reject:hover {
  background: #144260;
}
.cookie-settings-btn {
  background: #22303A;
  color: #33A573;
}
.cookie-settings-btn:hover {
  background: #33A573;
  color: #101519;
}

/* COOKIES MODAL */
.cookies-modal-overlay {
  position: fixed;
  z-index: 2100;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(20,41,60, 0.76);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookies-modal-overlay.active {
  display: flex;
  animation: cookieModalIn .4s cubic-bezier(0.77,0,0.18,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookies-modal {
  background: #181F23;
  color: #F4F8FA;
  border-radius: 16px;
  max-width: 400px;
  box-shadow: 0 4px 32px 0 rgba(51, 165, 115, 0.22);
  padding: 38px 30px 30px 30px;
  animation: cookiesModalPop .21s;
  position: relative;
}
@keyframes cookiesModalPop {
  from { transform: scale(0.91); opacity:0; }
  to   { transform: none;      opacity:1; }
}
.cookies-modal h2 {
  margin-bottom: 15px;
  color: #33A573;
  font-size: 1.38rem;
  font-weight: 700;
}
.cookies-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #13181B;
  border-radius: 11px;
  padding: 13px 17px;
  margin-bottom: 13px;
}
.cookies-modal .cookie-category.disabled {
  opacity: 0.5;
}
.cookies-modal .category-toggle {
  accent-color: #33A573;
  width: 22px;
  height: 22px;
}
.cookies-modal .modal-actions {
  margin-top: 21px;
  display: flex;
  gap: 14px;
}
.cookies-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  color: #33A573;
  font-size: 1.41rem;
  border: none;
  cursor: pointer;
  border-radius: 7px;
  padding: 2px 8px;
  transition: background .18s;
}
.cookies-modal .modal-close:focus { background: #22303A; }

/* --- FORM ELEMENTS (if any) --- */
input, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  border: 1.5px solid #22303A;
  background: #1D252A;
  color: #F4F8FA;
  border-radius: 7px;
  padding: 12px 15px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 16px;
  outline: none;
  transition: border-color .18s;
}
input:focus, select:focus, textarea:focus {
  border-color: #33A573;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #33A573;
  font-size: 1rem;
  margin-bottom: 7px;
}

/* --- RESPONSIVE (MOBILE FIRST) --- */
@media (max-width: 1024px) {
  .container {
    max-width: 92vw;
  }
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .card-container, .card-grid, .feature-grid, .services-list, .blog-posts, .benefits-list, .project-overview, .team-list, .guide-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .section, .hero, .cta, .features, .services-overview, .benefits, .blog-list, .legal, .testimonials {
    margin-bottom: 38px;
    padding: 25px 8px;
    border-radius: 12px;
  }
  .content-wrapper, .cta-details {
    gap: 14px;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 12px 8px;
    align-items: center;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .team-list, .blog-posts, .services-list, .project-overview, .feature-grid, .guide-list {
    flex-direction: column;
    gap: 12px;
  }
  .cta-details {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .text-image-section, .contact-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .testimonial-card {
    padding: 14px 11px;
  }
  .footer-menu {
    gap: 9px;
  }
  .cookie-banner p {
    margin-right: 0;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 5px;
    max-width: 98vw;
  }
  .logo img {
    height: 37px;
  }
  .blog-categories {
    flex-direction: column;
    gap: 6px;
  }
  .card, .feature, .benefit, .service, .blog-post-card, .guide-article, .project-card {
    padding: 16px 9px;
    min-width: 96vw;
    box-sizing: border-box;
    font-size: .97rem;
  }
  .testimonials {
    padding: 28px 0 14px 0;
    border-radius: 9px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 14px 4px 14px 7px;
    font-size: .98rem;
    border-radius: 10px 10px 0 0;
  }
  .cookies-modal {
    max-width: 95vw;
    padding: 24px 9px 19px 9px;
  }
}

/* --------- ICON STYLES --------- */
.feature img, .benefit img, .service img, .contact-info img, .cta .contact-info img, .team-list img {
  filter: grayscale(22%) contrast(1.16) brightness(1.1);
}

/* --- ANIMATIONS & MICROINTERACTIONS --- */
.btn-primary, .cookie-btn, .cookie-settings-btn, .modal-close {
  transition: background .23s, color .18s, box-shadow .18s, transform .11s;
}
.card, .feature, .service, .benefit, .blog-post-card, .guide-article, .project-card {
  transition: box-shadow .17s, transform .14s, border-color .13s;
}
.card:hover, .feature:hover, .service:hover, .benefit:hover, .blog-post-card:hover, .guide-article:hover, .project-card:hover {
  box-shadow: 0 5px 24px 0 rgba(51, 165, 115, 0.17);
  transform: translateY(-4px) scale(1.01);
  border-color: #33A573;
}

/* --- VISUAL HIERARCHY & SPACING --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FOCUS VISIBLE Accessibility --- */
a:focus-visible,
button:focus-visible,
.cookie-btn:focus-visible, .cookie-settings-btn:focus-visible, .modal-close:focus-visible {
  outline: 2px solid #33A573;
  outline-offset: 2px;
}

/* --- PRINT --- */
@media print {
  header, nav, .main-nav, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .footer-menu { display: none !important; }
  body, .container, main, section, .content-wrapper { background: #fff !important; color: #222 !important; box-shadow:none !important; }
}

/* --- FONT FACE (Fallbacks) --- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');
}
