/* 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;
  min-height: 100%;
  background: #F5F5EF;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #205A3A;
  background: #F5F5EF;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/***** BRAND TYPOGRAPHY *****/
h1, .display, .subheadline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #205A3A;
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #205A3A;
  line-height: 1.2;
  letter-spacing: 0.012em;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #205A3A;
  margin-bottom: 12px;
  letter-spacing: 0.015em;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #205A3A;
  font-weight: 500;
}
.subheadline {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: #5EC99B;
  font-weight: 600;
  letter-spacing: 0.01em;
}
p, ul, ol, address, li, dl, dt, dd {
  font-family: 'Roboto', Arial, sans-serif;
  color: #205A3A;
  font-size: 1rem;
  font-weight: 400;
}
strong {
  font-weight: 700;
}
a {
  color: #205A3A;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
a:hover, a:focus {
  color: #5EC99B;
  text-decoration: underline;
}

/***** CONTAINER & LAYOUT *****/
.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(32,90,58,.04), 0 1.5px 4px rgba(32,90,58,0.09);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 32px;
  }
}

/***** STRUCTURED GEOMETRIC GRIDS *****/
.feature-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.content-grid {
  gap: 20px;
}
.card-container {
  gap: 24px;
}

/***** CARD DESIGN *****/
.card, .feature-grid > div {
  background: #F5F5EF;
  border: 2.5px solid #5EC99B;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(32,90,58,.06), 0 0.5px 1px rgba(32,90,58,.05);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 22px;
  font-family: 'Roboto', Arial, sans-serif;
  min-width: 250px;
  flex: 1 1 240px;
  transition: box-shadow 0.22s, transform 0.18s;
  outline: none;
}
.card:hover, .feature-grid > div:hover {
  box-shadow: 0 6px 20px rgba(94,201,155,0.13), 0 1.5px 4px rgba(32,90,58,0.07);
  transform: translateY(-5px) scale(1.025);
  border-color: #205A3A;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/***** VISUAL ELEMENTS: ICONS AND IMAGES IN CARDS *****/
.feature-grid img, .card img, .contact-details img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  background: #5EC99B;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 1px 7px rgba(32,90,58,0.06);
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card, .feature-grid > div {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/***** GEOMETRIC SECTIONS: TEXT-IMAGE, TESTIMONIAL *****/
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/***** TESTIMONIALS *****/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 22px;
  border-left: 5px solid #5EC99B;
  box-shadow: 0 3px 12px rgba(32,90,58,0.08);
  margin-bottom: 20px;
  color: #205A3A;
  font-size: 1.09rem;
  flex-wrap: wrap;
  min-width: 220px;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #205A3A;
  font-weight: 500;
  font-style: italic;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  color: #5EC99B;
  margin-left: 10px;
  font-weight: 600;
}

/***** DOT/ANGULAR DECORATIVE ELEMENTS *****/
hr {
  border: 0;
  height: 3px;
  background: #205A3A;
  width: 45px;
  margin: 34px 0 24px 0;
  opacity: 0.22;
  border-radius: 5px;
}

/***** FEATURE ITEM STRUCTURE *****/
.feature-item, .feature-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** BUTTONS *****/
.cta-button, button, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-modal .close-btn {
  border: none;
  background: #205A3A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.13s;
  box-shadow: 0 2px 7px rgba(32,90,58,0.08);
  outline: none;
}
.cta-button {
  background: #5EC99B;
  color: #205A3A;
  margin-top: 8px;
  align-self: flex-start;
  letter-spacing: 0.04em;
}
.cta-button:hover, .cta-button:focus {
  background: #205A3A;
  color: #fff;
  transform: translateY(-3px) scale(1.04);
}
button:active, .cta-button:active {
  transform: scale(0.97);
  box-shadow: 0 1px 4px rgba(32,90,58,0.09);
}

/***** HEADER & NAVIGATION *****/
header {
  background: #fff;
  box-shadow: 0 4px 16px rgba(32,90,58,0.06);
  padding: 0;
  margin-bottom: 0;
  width: 100%;
  position: relative;
  z-index: 12;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 30px;
}
header img {
  height: 52px;
  width: auto;
}
header nav {
  display: flex;
  gap: 30px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #205A3A;
  padding: 4px 10px 2px 10px;
  border-radius: 12px;
  transition: background 0.15s, color 0.12s;
}
header nav a:hover, header nav a:focus {
  background: #5EC99B;
  color: #fff;
}
header .cta-button {
  margin-left: 18px;
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 1024px) {
  header .container {
    flex-wrap: wrap;
    gap: 14px;
  }
  header nav {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  header nav, header .cta-button {
    display: none;
  }
}

/***** MOBILE NAVIGATION *****/
.mobile-menu-toggle {
  display: none;
  background: #5EC99B;
  color: #205A3A;
  font-size: 2.2rem;
  padding: 4px 22px;
  border-radius: 18px;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1001;
  box-shadow: 0 2px 7px rgba(32,90,58,0.15);
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #205A3A;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.27s cubic-bezier(.45,1.2,.6,1), box-shadow 0.13s;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 36px;
  box-shadow: -4px 0 16px rgba(32,90,58,0.14);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #fff;
  background: none;
  font-size: 2.4rem;
  position: absolute;
  top: 27px;
  right: 32px;
  z-index: 15;
  padding: 8px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #5EC99B;
  color: #205A3A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin: 80px 0 0 44px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  border-radius: 12px;
  padding: 8px 20px;
  font-weight: 600;
  transition: background 0.13s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #5EC99B;
  color: #205A3A;
}
@media (max-width: 480px) {
  .mobile-nav {
    margin-left: 14px;
    gap: 18px;
  }
  .mobile-menu-close {
    top: 14px;
    right: 10px;
  }
}

/***** FOOTER *****/
footer {
  background: #fff;
  margin-top: 70px;
  box-shadow: 0 -2px 10px rgba(32,90,58,0.03);
}
footer .container {
  padding: 26px 20px;
}
footer .content-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
}
footer img {
  height: 48px;
  width: auto;
}
footer nav {
  display: flex;
  gap: 22px;
}
footer nav a {
  color: #205A3A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.08rem;
  border-radius: 8px;
  padding: 3px 8px;
  transition: background 0.14s, color 0.12s;
}
footer nav a:hover, footer nav a:focus {
  background: #5EC99B;
  color: #fff;
}
footer address {
  font-style: normal;
  color: #205A3A;
  font-size: 1rem;
}
@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  footer .container {
    padding: 20px 8px;
  }
}

/***** CONTACT DETAILS *****/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-details img {
  margin-right: 8px;
  vertical-align: middle;
}

/***** PROJECTS PAGE NUMBERS / STATISTICS *****/
.project-stats {
  margin-top: 22px;
  border: 2.2px solid #5EC99B;
  border-radius: 14px;
  padding: 20px 24px;
  background: #fff;
  min-width: 240px;
  width: fit-content;
  box-shadow: 0 1px 8px rgba(94,201,155,0.13), 0 0.5px 2px rgba(32,90,58,0.04);
}
.project-stats h3 {
  font-size: 1.1rem;
  color: #205A3A;
  margin-bottom: 10px;
}
.project-stats ul {
  list-style: disc inside;
  color: #205A3A;
}

/***** RESPONSIVE SPACING AND FLEXBOX ADJUSTMENTS *****/
@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .section {
    padding: 16px 5px;
  }
  .card, .feature-grid > div {
    padding: 18px 10px;
  }
}

/***** LIST ELEMENTS *****/
ul, ol {
  margin-left: 25px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul li, ol li {
  line-height: 1.55;
  padding-left: 4px;
}
dt {
  font-weight: 700;
  color: #205A3A;
  margin-top: 18px;
  margin-bottom: 3px;
}
dd {
  margin-bottom: 11px;
  color: #205A3A;
}

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(120%);
  width: 97vw;
  max-width: 730px;
  background: #205A3A;
  color: #fff;
  box-shadow: 0 4px 22px rgba(32,90,58, 0.14);
  border-radius: 24px 24px 0 0;
  padding: 24px 20px 24px 32px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.29s cubic-bezier(.45,1.2,.6,1), opacity 0.24s;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 9px;
  font-size: 1.02rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 3px;
}
.cookie-banner button {
  background: #5EC99B;
  color: #205A3A;
  padding: 10px 24px;
  border-radius: 17px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.16s, color 0.18s, box-shadow 0.13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: #205A3A;
  outline: none;
  box-shadow: 0 2px 8px rgba(32,90,58,0.11);
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #205A3A;
  border: 2.2px solid #5EC99B;
  padding: 9px 22px;
  font-weight: 600;
  margin-left: 7px;
}

/***** COOKIE MODAL *****/
.cookie-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1.08);
  background: #fff;
  color: #205A3A;
  border-radius: 29px;
  box-shadow: 0 9px 54px 0 rgba(32,90,58,0.22), 0 2px 12px rgba(32,90,58,0.06);
  z-index: 5010;
  max-width: 440px;
  min-width: 280px;
  width: 92vw;
  padding: 34px 32px 28px 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s, transform 0.21s;
}
.cookie-modal.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h3 {
  font-size: 1.15rem;
  color: #205A3A;
  margin-bottom: 7px;
}
.cookie-modal .close-btn {
  background: none;
  color: #205A3A;
  position: absolute;
  top: 19px;
  right: 22px;
  font-size: 1.5rem;
  border-radius: 13px;
  padding: 7px 12px;
  font-weight: 700;
  cursor: pointer;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  background: #5EC99B;
  color: #fff;
}
.cookie-modal ul {
  margin: 16px 0 14px 10px;
}
.cookie-modal label.toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 0;
}
.cookie-modal input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: #5EC99B;
  border-radius: 4px;
}
.cookie-modal .cookie-category-desc {
  color: #205A3A;
  font-size: 0.97rem;
  margin-bottom: 9px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 18px;
}
.cookie-modal .cookie-category-essential {
  opacity: 0.6;
  pointer-events: none;
}

/***** ANIMATIONS *****/
.cta-button, .cookie-banner button, .card, .card:hover, .feature-grid > div, .feature-grid > div:hover {
  transition-property: background, color, box-shadow, transform, border-color;
  transition-duration: 0.17s, 0.17s, 0.22s, 0.15s, 0.13s;
  transition-timing-function: cubic-bezier(0.45,1.2,.6,1);
}
.mobile-menu, .mobile-menu.active {
  transition-property: transform, box-shadow;
  transition-duration: 0.27s, 0.13s;
  transition-timing-function: cubic-bezier(.45,1.2,.6,1), ease;
}

/***** FOCUS STYLES *****/
a:focus, button:focus, .card:focus, .cookie-banner button:focus, .mobile-menu-toggle:focus {
  outline: 2.5px solid #5EC99B;
  outline-offset: 2.5px;
  background: rgba(94,201,155,0.07);
}

/***** Z-INDEX ORDERING *****/
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 1100 !important;
}

/***** ADDITIONAL GEOMETRIC ELEMENTS *****/
.card:before, .feature-grid > div:before {
  content: '';
  display: block;
  position: absolute;
  left: -10px;
  top: -14px;
  width: 32px;
  height: 32px;
  background: #5EC99B;
  opacity: 0.12;
  border-radius: 9px 45% 12px 5px;
  z-index: 0;
  pointer-events: none;
}
.card:after, .feature-grid > div:after {
  content: '';
  display: block;
  position: absolute;
  right: -16px;
  bottom: -9px;
  width: 19px;
  height: 19px;
  background: #205A3A;
  opacity: 0.09;
  border-radius: 7px 14px 7px 13px;
  z-index: 0;
  pointer-events: none;
}

/***** OVERRIDE DEFAULTS AND MISC *****/
::-webkit-scrollbar {
  width: 7px;
  background: #F5F5EF;
}
::-webkit-scrollbar-thumb {
  background: #5EC99B;
  border-radius: 12px;
}

/***** UTILS *****/
.mt-2 { margin-top: 8px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mt-3 { margin-top: 14px !important; }
.mb-3 { margin-bottom: 14px !important; }

/* END OF STYLE */
