/* CSS RESET & BASE STYLES */
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, main, 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;
}
footer img {
  width: 50px;
}
footer p {
  color: white;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: #FFFFFF;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.65;
  background: #FFFFFF;
  color: #162012;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #145A32;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E67E22;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #145A32;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-top: 16px;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #2C3E50;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
  color: #145A32;
}
.text-section p {
  margin-bottom: 12px;
}

/* CONTAINER & LAYOUTS */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F4F6F7;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(34, 34, 34, 0.04);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 12px;
  }
  .content-wrapper {
    gap: 10px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  position: relative;
  border-radius: 14px;
  background: #FFF;
  box-shadow: 0 2px 10px rgba(20,90,50,0.07);
  margin-bottom: 20px;
  padding: 28px 20px;
  min-width: 240px;
  flex: 1 1 250px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(20,90,50,0.13);
  z-index: 1;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: flex-start;
}
.service-card {
  background: #FFF;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(20,90,50,0.08);
  padding: 28px 24px 22px 24px;
  flex: 1 1 234px;
  min-width: 220px;
  max-width: 264px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.12s;
  border: 1px solid #F4F6F7;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.service-card p {
  flex: 1;
  margin-bottom: 14px;
  color: #34495E;
}
.service-card .price {
  font-weight: 700;
  color: #E67E22;
  font-size: 1.05rem;
}
.service-card:hover {
  box-shadow: 0 6px 32px rgba(20,90,50,0.13);
  transform: translateY(-3px) scale(1.02);
  border: 1.5px solid #E67E2244;
}

/* FLEX CONTAINERS PATTERNS */
.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;
    align-items: flex-start;
    gap: 20px;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .service-cards {
    flex-direction: column;
    gap: 18px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 0 8px 0 0;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFF;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(20,90,50,0.08);
  border-left: 4px solid #E67E22;
  transition: box-shadow 0.2s;
  color: #212B21;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(20,90,50,0.14);
}
.testimonial-card p {
  margin-bottom: 0;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #333;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
}

/* BUTTONS */
.primary-cta, .accent-cta, button, .cookie-banner button, .cookie-modal-footer button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border: none;
  border-radius: 28px;
  background: #145A32;
  color: #FFF;
  cursor: pointer;
  outline: none;
  margin: 8px 0 0 0;
  line-height: 1.2;
  transition: background 0.2s, color 0.18s, box-shadow 0.14s;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(20,90,50,0.07);
  min-width: 140px;
}
.primary-cta:hover, .accent-cta:hover, button:hover, .cookie-banner button:hover, .cookie-modal-footer button:hover {
  background: #E67E22;
  color: #FFF;
  box-shadow: 0 4px 18px rgba(230,126,34,0.10);
}
.accent-cta {
  background: #E67E22;
  color: #FFF;
}
.accent-cta:hover, .accent-cta:focus {
  background: #145A32;
  color: #FFF;
}
.secondary-button, .cookie-banner .reject-btn {
  background: #F4F6F7;
  color: #145A32;
}
.secondary-button:hover, .cookie-banner .reject-btn:hover {
  background: #E67E22;
  color: #FFF;
}

/* NAVIGATION (DESKTOP)*/
header {
  background: #FFF;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(20,90,50,0.04);
}
.main-nav {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-nav > a img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.main-nav li {
  margin: 0;
  display: flex;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #145A32;
  padding: 8px 12px;
  border-radius: 18px;
  transition: color 0.18s, background 0.14s;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.main-nav .primary-cta {
  background: #E67E22;
  color: #FFF;
  border-radius: 32px;
  padding: 12px 22px;
  box-shadow: 0 1px 8px rgba(230,126,34,0.08);
  margin-left: 10px;
}
.main-nav .primary-cta:hover, .main-nav li a:hover, .main-nav li a:focus {
  background: #F4F6F7;
  color: #E67E22;
}
@media (max-width: 1024px) {
  .main-nav ul {
    gap: 18px;
  }
}
@media (max-width: 870px) {
  .main-nav ul {
    gap: 6px;
  }
}
@media (max-width: 800px) {
  header {
    height: 64px;
  }
  .main-nav {
    height: 64px;
    padding: 0 6px;
  }
  .main-nav ul {
    gap: 0px;
  }
  .main-nav li {
    font-size: 0.94rem;
  }
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 16px;
  z-index: 201;
  background: #145A32;
  color: #FFF;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(20,90,50,0.13);
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E67E22;
  color: #FFF;
}
@media (max-width: 850px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .main-nav ul {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,90,50,0.92);
  z-index: 202;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.75,.05,.33,1.4);
  will-change: transform;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #FFF;
  font-size: 2.2rem;
  border: none;
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
  z-index: 210;
  padding: 3px 12px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #E67E22;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 90px;
  align-items: flex-start;
  width: 100%;
  padding: 0 32px;
  gap: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #FFF;
  padding: 13px 0;
  display: block;
  width: 100%;
  border-radius: 8px;
  transition: color 0.16s, background 0.13s;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E67E22;
  color: #FFF;
}

/* MAIN & SECTIONS */
main {
  background: #FFF;
  min-height: 400px;
  padding-bottom: 24px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F4F6F7;
  border-radius: 18px;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 36px;
    padding: 24px 8px;
    border-radius: 9px;
  }
}
/* FOOTER */
footer {
  background: #145A32;
  padding: 36px 0 16px 0;
  color: #FFF;
  letter-spacing: 0.01em;
  font-size: 1rem;
}
footer .container {
  max-width: 1180px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.footer-brand p {
  color: #E9F1EA;
  font-weight: 600;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #E9F1EA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #E67E22;
  color: #FFF;
}
.footer-contact {
  color: #E9F1EA;
  margin-bottom: 12px;
}
.footer-contact strong {
  color: #FFF;
}
.footer-legal {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-legal a {
  color: #B9D7C9;
  font-size: 0.96rem;
  padding: 3px 8px;
  border-radius: 7px;
  transition: background 0.16s, color 0.14s;
}
.footer-legal a:hover {
  background: #F4F6F7;
  color: #145A32;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.footer-social a {
  display: flex;
  align-items: center;
  background: #E67E22;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  justify-content: center;
  transition: background 0.18s;
  box-shadow: 0 2px 10px rgba(20,90,50,0.09);
}
.footer-social a:hover, .footer-social a:focus {
  background: #FFF;
}
.footer-social img {
  width: 20px;
  height: 20px;
}
@media (max-width: 850px) {
  .footer-nav {
    gap: 11px;
  }
}
@media (max-width: 600px) {
  .footer-nav {
    flex-direction: column;
    gap: 6px;
  }
  footer {
    font-size: 0.98rem;
    padding-top: 20px;
  }
  .footer-social {
    margin-top: 10px;
    gap: 8px;
  }
}

/* LIST STYLES */
ul, ol {
  padding-left: 22px;
  margin-bottom: 12px;
  color: #333;
  font-size: 1rem;
}
li {
  margin-bottom: 8px;
  position: relative;
  color: #35403A;
  padding-left: 0;
}
ul > li:before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #E67E22;
  margin-right: 11px;
  vertical-align: middle;
  margin-bottom: 2px;
}
ul > li {
  display: flex;
  align-items: flex-start;
}

/* PRICING TAGS */
.price {
  color: #BF6000;
  font-weight: 600;
  padding-left: 1px;
  font-size: 1.01rem;
}

/* FORMS – (extend if needed) */
input, textarea, select {
  border: 1px solid #BFD7CB;
  background: #F4F6F7;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.16s, background 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #E67E22;
  background: #FFF;
}

/* UTILITY */
.mt-24 { margin-top: 24px!important; }
.mt-16 { margin-top: 16px!important; }
.mb-24 { margin-bottom: 24px!important; }
.mb-16 { margin-bottom: 16px!important; }
.text-center { text-align: center!important; }
.rounded { border-radius: 12px!important; }
.shadow {
  box-shadow: 0 2px 12px rgba(20,90,50,0.07);
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #F4F6F7;
  color: #212B21;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 -2px 20px rgba(20,90,50,0.09);
  z-index: 9999;
  padding: 22px 10px 22px 10px;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(.77,.16,.34,1.19), opacity 0.16s;
  font-size: 1rem;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner-message {
  max-width: 660px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #212B21;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-size: 1rem;
  padding: 9px 22px;
  min-width: 110px;
  margin: 0;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  background: #145A32;
  color: #FFF;
  transition: background 0.15s, color 0.13s;
  cursor: pointer;
}
.cookie-banner .accept-btn {
  background: #E67E22;
}
.cookie-banner .accept-btn:hover {
  background: #145A32;
}
.cookie-banner .reject-btn {
  background: #FFF;
  color: #145A32;
  border: 1px solid #DFE8E2;
}
.cookie-banner .reject-btn:hover {
  background: #E67E22;
  color: #FFF;
}
.cookie-banner .settings-btn {
  background: #F4F6F7;
  color: #145A32;
}
.cookie-banner .settings-btn:hover {
  background: #E67E22;
  color: #FFF;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,90,50, 0.47);
  z-index: 10001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 60%) scale(0.98);
  background: #FFF;
  color: #23231F;
  min-width: 94vw;
  max-width: 440px;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(20,90,50,0.14);
  padding: 34px 32px 22px 32px;
  z-index: 10002;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.37s cubic-bezier(.69,.12,.38,1.22);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: #145A32;
  margin-bottom: 10px;
  margin-top: 5px;
}
.cookie-category {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-bottom: 1px solid #F4F6F7;
  padding-bottom: 14px;
  margin-bottom: 10px;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cookie-category label {
  font-size: 1.04rem;
  font-weight: 600;
  color: #145A32;
}
.cookie-category-desc {
  font-size: 0.98rem;
  color: #445;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 21px;
  border-radius: 16px;
  background: #EAF2EF;
  outline: none;
  transition: background 0.13s;
  position: relative;
  cursor: pointer;
  border: 1px solid #BFD7CB;
  margin-left: 8px;
  margin-right: 2px;
  vertical-align: middle;
}
.cookie-toggle:checked {
  background: #145A32;
  border-color: #145A32;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 17px;
  height: 17px;
  background: #FFF;
  border-radius: 100%;
  transition: left 0.18s;
}
.cookie-toggle:checked:before {
  left: 18px;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-footer button {
  padding: 8px 20px;
  font-size: 0.96rem;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  background: #F4F6F7;
  color: #145A32;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal-footer .save-btn {
  background: #E67E22;
  color: #FFF;
}
.cookie-modal-footer .save-btn:hover {
  background: #145A32;
  color: #FFF;
}
.cookie-modal-footer .cancel-btn:hover {
  background: #E67E22;
  color: #FFF;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .container {
    max-width: 92vw;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.21rem;
    margin-bottom: 14px;
  }
  .service-card {
    min-width: 90vw;
    max-width: 99vw;
    padding: 18px 10px;
    margin-bottom: 16px;
  }
  .testimonial-card {
    padding: 14px 12px;
    margin-bottom: 14px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 4px;
    max-width: 100vw;
  }
  footer {
    font-size: 0.91rem;
    padding-top: 15px;
  }
  .main-nav > a img {
    height: 28px;
  }
  .cookie-modal {
    padding: 16px 6px 14px 8px;
    min-width: 99vw;
    max-width: 99vw;
  }
}

/* ANIMATION HELPERS */
.fade-in {
  animation: fade-in 0.32s both cubic-bezier(.77,.16,.34,1.19);
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* MICRO-INTERACTIONS */
button, .primary-cta, .accent-cta {
  transition: background 0.19s, color 0.13s, box-shadow 0.15s, transform 0.14s;
}
button:active, .primary-cta:active, .accent-cta:active {
  transform: scale(0.97);
}

/* SCROLLBAR (minimalist+brand) */
::-webkit-scrollbar {
  width: 7px;
  background: #F4F6F7;
}
::-webkit-scrollbar-thumb {
  background: #D3E6DA;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #BF6000;
}
