/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F5F2EC;
  color: #22314A;
  line-height: 1.6;
  min-height: 100vh;
  scroll-behavior: smooth;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #7BA37C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #22314A;
}
ol, ul {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #22314A;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.09;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 16px;
}

/* LAYOUT */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

/* HERO SECTION */
main > section:first-of-type {
  min-height: 350px;
  background: #7BA37C;
  color: #fff;
  border-radius: 0 0  64px 0;
  position: relative;
  box-shadow: 0 10px 32px 0 rgba(123,163,124,0.14);
}
 

/* FLEX UTILS */
.card-container,
.card-grid,
.feature-grid,
.content-grid,
.footer-columns,
.project-list,
.project-types-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card,
.feature-item {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  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;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(34,49,74,0.08);
  margin-bottom: 20px;
  border-radius: 20px 48px 20px 20px;
  border-left: 6px solid #7BA37C;
  z-index: 1;
}
.testimonial-card .testimonial-stars {
  color: #FFD700;
  font-size: 1.25em;
  letter-spacing: 2px;
  margin-left: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* USP List */
.usp-list {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.usp-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(123,163,124, 0.09);
  border-radius: 16px;
  padding: 10px 18px;
  font-size: 1.025rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* Process Steps */
.process-steps, .process-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: step;
}
.process-steps li, .process-list li {
  font-size: 1.04rem;
  padding-left: 44px;
  position: relative;
}
.process-steps li:before, .process-list li:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  background: #7BA37C;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15em;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  box-shadow: 0 2px 8px 0 rgba(123,163,124,0.15);
}
.process-steps li img,
.process-list li img {
  margin-right: 10px;
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

/* Feature Grid */
.feature-grid {
  gap: 28px;
}
.feature-grid li {
  background: #fff;
  padding: 28px 24px;
  border-radius: 24px 32px 18px 18px;
  box-shadow: 0 3px 16px 0 rgba(34,49,74,0.11);
  min-width: 240px;
  flex: 1 1 250px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-grid img {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 6px #7BA37c22);
}

/* Service List */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-list li {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(34,49,74,0.10);
  border-radius: 20px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 325px;
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
}

/* Project List */
.project-list, .project-types-list {
  flex-direction: column;
  gap: 18px;
  padding-left: 0;
}
.project-list li, .project-types-list li {
  background: #fff;
  border-left: 6px solid #22314A;
  border-radius: 0 16px 16px 0;
  padding: 16px 20px 16px 22px;
  font-size: 1rem;
}

.awards-partnerships {
  background: #22314A;
  color: #fff;
  margin-top: 22px;
  border-radius: 28px;
  padding: 28px 24px;
}
.awards-partnerships h3 {
  color: #fff;
}

/* Footer */
footer {
  background: #22314A;
  color: #fff;
  padding-top: 48px;
  padding-bottom: 20px;
  border-top-left-radius: 56px;
}
.footer-columns {
  display: flex;
  gap: 38px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-columns > div {
  flex: 1 1 180px;
  min-width: 165px;
}
footer h3, footer h3 img {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
  display: block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
footer nav a:hover, .footer-columns nav a:focus {
  color: #7BA37C;
}
.footer-columns .cta-btn {
  margin-top: 16px;
}
.footer-legal {
  text-align: center;
  font-size: 0.95rem;
  padding-top: 12px;
  color: #A9B2C8;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

/* BUTTONS & CTA */
.cta-btn {
  background: #22314A;
  color: #fff !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  outline: none;
  font-size: 1.14rem;
  font-weight: bold;
  border-radius: 28px 56px 28px 28px;
  padding: 14px 38px;
  margin-top: 12px;
  box-shadow: 0 2px 16px 0 rgba(34,49,74,0.16);
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, box-shadow 0.22s, transform 0.12s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #7BA37C;
  color: #22314A !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 30px 0 rgba(123,163,124,0.18);
}

button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

/* HEADER */
header {
  padding: 0 0 0 0;
  box-shadow: 0 2px 14px 0 rgba(34,49,74, 0.08);
  background: #fff;
  z-index: 20;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-left: 14px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #22314A;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 4px;
  position: relative;
  transition: color 0.15s;
  border-radius: 7px;
}
header nav a:hover, header nav a:focus {
  color: #7BA37C;
  background: #F5F2EC;
}
header .cta-btn {
  margin-left: auto;
}
header img {
  max-height: 54px;
  margin-right: 2vw;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  background: #7BA37C;
  border: none;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  cursor: pointer;
  margin-left: 16px;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #22314A;
  color: #fff;
}
/* Hide mobile menu button desktop */
@media (min-width: 1025px) {
  .mobile-menu-toggle { display: none;}
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #22314A;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.43s cubic-bezier(0.72, 0, 0.28, 1);
  z-index: 200;
  padding-top: 34px;
  box-shadow: 0 2px 36px 12px rgba(34,49,74,0.08);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  margin-right: 24px;
  margin-bottom: 12px;
  cursor: pointer;
  z-index: 201;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 32px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.32rem;
  padding: 16px 0;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7BA37C;
  color: #fff;
}

/* Hide main nav on mobile */
@media (max-width: 1024px) {
  header nav {
    display: none !important;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
}

/* Show mobile toggle on mobile */
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
}

/* Hide mobile menu on desktop */
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Testimonial */
.testimonial-card {
  background: #fff;
  color: #22314A;
  box-shadow: 0 4px 18px 0 rgba(34,49,74,0.07);
  border-left: 6px solid #7BA37C;
  border-radius: 20px 38px 20px 20px;
  font-size: 1.06rem;
}
/* Ensure contrast for testimonial text */
.testimonial-card p,
.testimonial-card strong,
.testimonial-card div {
  color: #22314A;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list dt {
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #22314A;
  margin-top: 10px;
  font-size: 1.1rem;
}
.faq-list dd {
  color: #22314A;
  margin-bottom: 10px;
  font-size: 1rem;
  margin-left: 8px;
}

/* Address block */
address {
  font-style: normal;
  font-size: 1.04rem;
  background: #fff;
  padding: 22px;
  border-radius: 18px 32px 18px 18px;
  box-shadow: 0 2px 8px 0 rgba(123,163,124,0.13);
  margin-bottom: 20px;
}
address p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
address a {
  color: #7BA37C;
  text-decoration: underline;
}

/* Text Section */
.text-section {
  background: #F5F2EC;
  border-radius: 24px;
  padding: 24px 20px;
  margin-bottom: 18px;
  font-size: 1.03rem;
}
.text-section ul {
  margin: 14px 0 14px 0;
  padding-left: 30px;
  list-style: disc outside;
}
.text-section ul li {
  margin-bottom: 8px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.text-section p, .text-section ul {
  color: #22314A;
}

/* Cookie Consent Banner Styles */
.cookie-banner {
  position: fixed;
  left: 0;
  right:0;
  bottom: 0;
  background: #22314A;
  color: #fff;
  padding: 20px 16px;
  z-index: 3000;
  box-shadow: 0 -2px 18px 0 rgba(34,49,74,0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: cookieBannerAppear 0.7s cubic-bezier(.55,0,.41,1) both;
}
@keyframes cookieBannerAppear {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  max-width: 620px;
  text-align: center;
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-settings-btn {
  background: #fff;
  color: #22314A;
  font-size: 1rem;
  border: none;
  border-radius: 20px;
  padding: 12px 24px;
  cursor: pointer;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 0;
  box-shadow: 0 2px 10px 0 rgba(123,163,124,0.11);
  transition: background 0.14s, color 0.14s, transform 0.13s;
}
.cookie-btn.accept {
  background: #7BA37C;
  color: #fff;
}
.cookie-btn.reject {
  background: #E65645;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #22314A;
  color: #7BA37C;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ffb7ac;
  color: #E65645;
}
.cookie-settings-btn {
  border: 2px solid #7BA37C;
  color: #7BA37C;
  background: transparent;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  color: #22314A;
  background: #7BA37C;
  border-color: #22314A;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 320px;
  max-width: 90vw;
  background: #fff;
  color: #22314A;
  padding: 32px 24px;
  border-radius: 32px;
  box-shadow: 0 6px 48px rgba(34,49,74,0.17);
  z-index: 4000;
  transform: translate(-50%, -60%) scale(1.02);
  animation: cookieModalAppear 0.4s cubic-bezier(.43,1.11,.43,1) both;
}
@keyframes cookieModalAppear {
  0% { opacity: 0; transform: translate(-50%, -110%) scale(1.12); }
  100% { opacity: 1; transform: translate(-50%, -60%) scale(1.02); }
}
.cookie-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cookie-modal .cookie-modal-close {
  border: none;
  background: none;
  font-size: 1.4rem;
  color: #22314A;
  cursor: pointer;
  margin-left: 12px;
  padding: 2px 8px;
  border-radius: 12px;
}
.cookie-modal .cookie-modal-close:hover {
  background: #7BA37C;
  color: #fff;
}
.cookie-prefs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.cookie-prefs-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
  cursor: pointer;
}
.cookie-prefs-list input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #7BA37C;
}
.cookie-prefs-list .cookie-prefs-essential {
  color: #A9B2C8;
  font-size: 0.95em;
  margin-left: 8px;
}

.cookie-modal .cookie-modal-footer {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .footer-columns {
    gap: 18px;
  }
  .feature-grid li, .service-list li {
    min-width: 170px;
    padding: 16px 8px;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    gap: 19px;
  }
  .footer-columns {
    flex-direction: column;
    gap: 28px;
  }
  .feature-grid,
  .project-list,
  .project-types-list,
  .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    padding: 24px 7px;
    margin-bottom: 38px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  main > section:first-of-type {
    border-radius: 0 0 40px 0;
    min-height: 220px;
  }
  h1 {
    font-size: 2rem;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 1.25rem;
    margin-bottom: 13px;
  }
  h2 {
    font-size: 1.07rem;
    margin-bottom: 10px;
  }
  .cta-btn {
    font-size: 0.94rem;
    padding: 11px 16px;
  }
  .cookie-btn, .cookie-settings-btn {
    font-size: 0.94rem;
    padding: 9px 12px;
  }
  .cookie-modal {
    padding: 18px 10px;
  }
}

/* Artistic/Creative Decor */
.section {
  position: relative;
  overflow: visible;
  animation: artisticFadeIn 0.65s cubic-bezier(0.17, 0.58, 0.31, 0.97) both;
}
@keyframes artisticFadeIn {
  from { opacity: 0; transform: translateY(40px) scale(0.99);}
  to { opacity: 1; transform: translateY(0) scale(1);}
}
.section::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -34px;
  left: -38px;
  width: 86px;
  height: 86px;
  border-radius: 58% 42% 70% 30%/47% 75% 25% 53%;
  background: rgba(123,163,124,0.08);
  pointer-events: none;
  filter: blur(2px);
  display: block;
}
.section:nth-child(odd)::after {
  content: '';
  position: absolute;
  z-index: 0;
  bottom: -38px; right: -33px;
  width: 60px; height: 60px;
  border-radius: 80% 38% 46% 69%/62% 65% 36% 26%;
  background: rgba(34,49,74,0.07);
  filter: blur(3px);
  pointer-events: none;
}
/* Fun, quirky underline for creative headers */
h2 {
  position: relative;
  z-index: 1;
  display: inline-block;
}
h2::after {
  content: '';
  display: block;
  width: 54px;
  height: 6px;
  border-radius: 9px;
  background: #7BA37C;
  margin-top: 6px;
  margin-left: 4px;
  opacity: 0.65;
  z-index: 2;
}

/* Artistic Fonts for Headings */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');
h1, h2, h3, .cta-btn, .cookie-banner, .mobile-nav a, .cookie-modal {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
}

/* Artistic unique shape button accents */
.cta-btn {
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -22px;
  width: 54px;
  height: 54px;
  border-radius: 70% 33% 58% 60%/70% 45% 66% 27%;
  background: rgba(123,163,124,0.15);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.23s;
}
.cta-btn:hover::after { opacity: 0.25; }

/* Scrollbar styling for immersion */
body {
  scrollbar-width: thin;
  scrollbar-color: #7BA37C #F5F2EC;
}
::-webkit-scrollbar {
  width: 10px;
  background: #F5F2EC;
}
::-webkit-scrollbar-thumb {
  background: #7BA37C;
  border-radius: 8px;
}

/* Micro-interactions & Transitions */
.feature-grid li,
.service-list li,
.card,
.testimonial-card {
  transition: transform 0.17s, box-shadow 0.18s;
}
.feature-grid li:hover, .service-list li:hover, .testimonial-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 8px 25px 0 rgba(34,49,74,0.14);
  z-index: 2;
}

/* 404 or thank you page styling */
.thankyou, .success-message {
  color: #7BA37C;
  font-size: 2rem;
  text-align: center;
  padding: 60px 0;
}

/* Accessibility focus */
a:focus-visible, .cta-btn:focus-visible, button:focus-visible, .cookie-btn:focus-visible, .cookie-settings-btn:focus-visible {
  outline: 3px solid #FFD700;
  outline-offset: 2px;
}

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

/* Prevent overlapping */
.card, .testimonial-card, .feature-grid li, .service-list li, .section, .card-container, .card {
  margin-bottom: 20px;
  z-index: 1;
}

/* END OF CSS */