/* 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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {line-height:1.15; -webkit-text-size-adjust:100%;}
body {background:#F5F4F0; color:#134859; min-height:100vh; font-family:'Roboto', Arial, sans-serif; font-size:16px; font-weight:400;}
article,aside,footer,header,nav,section,main{display:block;}
ol, ul {list-style:none; padding-left:0;}
a {color:inherit; text-decoration:none; transition:color .2s, background .2s;}
img {max-width:100%; height:auto; display:block; border:0;}
table {border-collapse:collapse; border-spacing:0;}
input,button,select,textarea{font-family:inherit;}
:focus{outline:2px solid #134859; outline-offset:2px;}

/* VARIABLES (provide fallback for browsers not supporting custom properties) */
:root {
  --primary: #134859;
  --secondary: #ffffff;
  --accent: #5C9A47;
  --bg: #F5F4F0;
  --danger: #e84949;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --shadow: 0 6px 32px rgba(19,72,89,0.10), 0 2px 8px rgba(19,72,89,0.06);
  --radius: 14px;
  --transition: .18s cubic-bezier(.4,0,.2,1);
}

body { 
  background: var(--bg, #F5F4F0);
  color: var(--primary, #134859);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: var(--font-display, Montserrat), Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: var(--primary);
}
h2, .h2 {
  font-family: var(--font-display, Montserrat), Arial, Helvetica, sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}
h3, .h3 {
  font-family: var(--font-display, Montserrat), Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}
h4, .h4 {font-family:var(--font-display,Montserrat),Arial,sans-serif;font-size:1rem;font-weight:600;margin-bottom:8px;}
p,li,span,address {
  font-family: var(--font-body, Roboto), Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--primary, #134859);
}
.tagline {
  color: var(--accent, #5C9A47);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .01em;
  font-size: 1.15rem;
  margin-bottom: 18px;
  text-transform: uppercase;
}
strong,b {
  font-weight:700;
  color: var(--primary);
  letter-spacing:.03em;
}

/* UTILITY SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary, #fff);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.features li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 170px;
  background: #F6FFF4;
  border-radius: var(--radius);
  padding: 20px 18px; 
  box-shadow: 0 2px 9px rgba(92,154,71,0.07);
  font-size: 1rem;
  font-weight:500;
}
.features img {
  width:38px;
  height:38px;
  margin-bottom: 6px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.services-list > div {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 26px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 210px;
  flex: 1 1 220px;
  max-width:340px;
  margin-bottom: 20px;
}
.price {
  display: inline-block;
  font-family: var(--font-display);
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  border-radius: 20px;
  padding: 4px 16px 3px 16px;
  font-weight: 600;
  margin-top: 6px;
  letter-spacing:.04em;
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact-info li {
  font-size: 1rem;
  color: var(--primary);
}

ul li a, .text-section ul li a {
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-display);
  text-decoration: underline;
  transition:color var(--transition);
}
ul li a:hover, .text-section ul li a:hover {color: var(--primary);}

/* TESTIMONIALS */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px;
  background: #FCFCFC;
  border-left: 7px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(19,72,89, 0.05);
  margin-bottom:20px;
  min-width: 270px;
  max-width:355px;
  flex: 1 1 260px;
  color: #212529;
}
.testimonial-card p {
  font-size:1.06rem;
  color: #134859;
  font-weight: 500;
}
.testimonial-card span {
  color: #5C9A47;
  font-family: var(--font-display);
  font-weight:600;
  font-size:.99rem;
}

/* BUTTONS */
.cta, button, .cta.primary, .cta.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  border-radius: 40px;
  padding: 13px 36px 12px 36px;
  margin-top: 18px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 3px 18px rgba(92,154,71,0.08);
  cursor: pointer;
  letter-spacing:.05em;
  outline: none;
  transition: background .15s cubic-bezier(.4,0,.2,1), box-shadow .17s;
}
.cta.primary {
  background: var(--accent);
  color: #fff;
}
.cta.secondary {
  background: var(--primary);
  color: #fff;
}
.cta:hover, button:hover, .cta.primary:hover, .cta.secondary:hover {
  background: #212529;
  color: #fff;
  box-shadow: 0 6px 36px rgba(19,72,89,0.08);
}

/* HEADER */
header {
  background: var(--secondary);
  border-bottom: 3px solid #ECECEC;
  width:100%;
  z-index: 12;
  position:relative;
}
header .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 19px 20px 15px 20px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  font-family: var(--font-display);
  font-weight:800;
  font-size: 1.10rem;
  letter-spacing: .03em;
}
.main-nav a {
  color: var(--primary);
  position:relative;
  overflow:hidden;
  padding:9px 4px;
  border-radius:7px;
  transition:background .16s,color .16s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--accent);
  color:#fff;
}
header .cta.primary {
  margin-top:0;
  font-size:1.07rem;
  padding:10px 25px 10px 25px;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  padding: 44px 0 30px 0;
  border-top: 5px solid #EEF7ED;
  margin-top:60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom:7px;
  font-size:.97rem;
}
.footer-navigation a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  opacity: .92;
  transition: opacity 0.14s;
}
.footer-navigation a:hover {opacity: 1;}
footer address {
  color: #c3ece4;
  font-size: .96rem;
  font-style: normal;
  letter-spacing: .01em;
  opacity: .93;
  margin-bottom:12px;
}
.brand-footer img {height:54px;}

/* CARD & FLEX UTILITY */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 200px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6FFF4;
  border-radius: var(--radius);
  padding: 18px 16px;
  min-width:180px;
}

/* MOBILE HEADER NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 26px;
  right: 22px;
  z-index: 21;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 2.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(19,72,89,0.13);
  align-items: center;
  justify-content: center;
  transition: background .12s, color .12s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--accent);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content:flex-start;
  position:fixed;
  top:0; left:0;
  width:100vw; height:100vh;
  background: #fff;
  z-index: 1003;
  padding:40px 32px 28px 32px;
  transform: translateX(-105%);
  transition: transform .26s cubic-bezier(.6,0,.3,1);
  box-shadow: 0 10px 48px rgba(19,72,89,0.14);
}
.mobile-menu.open {transform: translateX(0);}
.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 26px;
  background: var(--danger);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.45rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .16s;
  z-index:1004;
}
.mobile-menu-close:hover {
  background: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 64px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary);
  padding: 6px 0;
  border-radius: 6px;
  transition: background .12s, color .12s;
}
.mobile-nav a:hover {
  background: var(--accent);
  color: #fff;
}

/* HIDE MAIN NAV/SHOW BURGER ON MOBILE */
@media (max-width: 1000px) {
  .main-nav, header .cta.primary {display:none;}
  .mobile-menu-toggle {display: flex;}
}
@media (min-width: 1001px) {
  .mobile-menu {display:none!important;}
}

/* RESPONSIVE: CARDS, SECTIONS, FLEX UTILS */
@media (max-width: 990px) {
  .features, .testimonial-list, .services-list, .card-container, .content-grid {
    flex-direction:column;
    gap: 20px;
    align-items:stretch;
  }
  .testimonial-list {
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .section{padding:28px 7px;margin-bottom:38px;}
  h1 {font-size:2rem;}
  h2 {font-size:1.36rem;}
  .features li, .feature-item, .services-list > div, .card, .testimonial-card {
    min-width:160px;
    max-width:100%;
    padding:18px 13px;
  }
  .testimonial-card {padding:15px 10px;}
  .content-wrapper {gap:20px;}
  .main-nav {gap:12px;font-size:.99rem;}
}
@media (max-width:580px) {
  .container {padding:0 7px;}
  header img {height:41px;}
  footer .brand-footer img {height:40px;}
  .footer-navigation {gap:15px;}
}

/* RESPONSIVE: LAYOUTS */
@media (max-width:820px) {
  .text-image-section {
    flex-direction:column;
    gap:19px;
    align-items: flex-start;
  }
}

/* LISTS WITH CIRCLE BULLETS FOR ABOUT/LEGAL */
.text-section ul, .content-wrapper ul {
  margin-left:0;
  padding-left:18px;
  list-style: disc outside;
  color: var(--accent);
  font-weight:500;
  margin-bottom:9px;
}
.text-section ul li, .content-wrapper ul li {
  color: var(--primary);
  margin-bottom: 5px;
  font-size:1rem;
}

/* FORM ELEMENTS (for possible contact forms) */
input, textarea, select {
  font-family: var(--font-body);
  font-size:1.05rem;
  border-radius:9px;
  border:2px solid #E6ECF2;
  padding:10px 13px;
  background:#fff;
  margin-bottom:14px;
  transition: border .18s;
  box-shadow: 0 1px 5px rgba(19,72,89,0.04);
}
input:focus, textarea:focus, select:focus {border-color:var(--primary);}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content:space-between;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 3px solid var(--accent);
  box-shadow: 0 -8px 32px rgba(19,72,89,0.14);
  padding: 23px 30px 23px 23px;
  z-index: 2000;
  min-height: 70px;
  gap: 36px;
  font-family: var(--font-body);
  animation: fadeinbanner .37s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeinbanner {
  from {transform:translateY(120%); opacity:0;}
  to {transform:translateY(0); opacity:1;}
}
.cookie-banner p{
  font-size:1.03rem;
  font-weight:500;
  color:var(--primary);
  margin-right:20px;
  flex:1 1 220px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-banner button {
  padding: 10px 22px;
  font-family: var(--font-display);
  font-weight:700;
  font-size: 1.09rem;
  border:none;
  border-radius: 24px;
  cursor:pointer;
  transition:background .15s,color .14s;
}
.cookie-banner .accept {
  background: var(--accent);
  color:#fff;
}
.cookie-banner .accept:hover {background: #134859;}
.cookie-banner .reject {
  background: #E6ECF2;
  color: #134859;
  font-weight:700;
}
.cookie-banner .reject:hover {background:#FFEBEB; color:#BD2525;}
.cookie-banner .settings {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .settings:hover {background:#21597b;}
@media (max-width:600px) {
  .cookie-banner {
    flex-direction: column;
    padding: 16px 10px 17px 10px;
    gap: 24px;
    align-items: flex-start;
  }
  .cookie-banner .cookie-actions {
    gap:10px;
    flex-wrap:wrap;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  display:none;
  position:fixed;
  top:0; left:0; width:100vw; height:100vh;
  background:rgba(19, 72, 89, 0.37);
  z-index:2001;
  align-items:center;
  justify-content:center;
  padding:0;
  animation: fadeinmodal_bg .29s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeinmodal_bg {from{ opacity:0;}to{ opacity:1;}}
.cookie-modal-overlay.active {display:flex;}
.cookie-modal {
  background:#fff;
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(19,72,89,0.19);
  padding: 38px 32px 30px 32px;
  max-width: 420px;
  width:90vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap:23px;
  position: relative;
  animation: fadeinmodal .37s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeinmodal {from {transform:scale(.86); opacity:0} to {transform:scale(1); opacity:1}}
.cookie-modal h2 {
  font-size: 1.42rem;
  margin-bottom: 7px;
}
.cookie-modal .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom:12px;
}
.cookie-modal .category label {
  font-weight: 600;
  font-family:var(--font-display);
  letter-spacing:.01em;
  color: var(--primary);
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #E6ECF2;
  border-radius: 24px;
  transition: background .14s;
}
.cookie-modal .switch input:checked + .slider {
  background: var(--accent);
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(19,72,89,0.06);
  transition: .13s;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal .essential {
  color: #b7c2c1;
  font-weight: 600;
  margin-left: 8px;
  font-size: .97rem;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top:18px;
}
.cookie-modal-close {
  position:absolute;
  top:12px; right:18px;
  background:var(--danger);
  color: #fff;
  border: none;
  border-radius: 50%;
  width:31px;height:31px;
  text-align:center;
  font-size:1.13rem;
  font-weight:700;
  cursor:pointer;
  transition:background .11s;
}
.cookie-modal-close:hover{background:var(--accent);}

@media (max-width:480px){
  .cookie-modal {padding:17px 8px 17px 8px;}
}

/* MISC */
::-webkit-input-placeholder {color:#bccad3;}
::-moz-placeholder {color:#bccad3;}
:-ms-input-placeholder {color:#bccad3;}
::placeholder {color:#bccad3;}

/* MICROINTERACTIONS & HOVER */
.card, .testimonial-card, .services-list > div, .features li {
  transition: box-shadow 0.23s, transform 0.20s;
}
.card:hover, .testimonial-card:hover, .features li:hover, .services-list > div:hover {
  box-shadow: 0 9px 36px rgba(19,72,89,0.12);
  transform:translateY(-4px) scale(1.025);
}

main a {
  text-decoration: underline;
  color: var(--accent);
  font-weight: 700;
  transition: color 0.14s;
}
main a:hover {
  color: var(--primary);
}

/* SCROLLBAR */
body {
  scrollbar-color: var(--primary) #e7ecef;
}
::-webkit-scrollbar {width: 10px;}
::-webkit-scrollbar-thumb {background: var(--primary); border-radius: 8px;}
::-webkit-scrollbar-track {background: #e7ecef;}

/* Z-INDEX SAFE LAYERING */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, .cookie-modal,.mobile-menu-toggle{z-index:99;}

/* VISUAL GEOMETRIC ELEMENTS/DECOR */
.section {
  position: relative;
  overflow: hidden;
}
.section::before {
  content: "";
  display: block;
  position: absolute;
  top: -42px; right: -62px;
  width: 180px; height: 150px;
  background: rgba(92,154,71,0.07);
  border-radius: 54% 46% 83% 17% / 73% 18% 82% 27%;
  z-index: 0;
}
.section > * {position:relative;z-index:2;}

/* Hide deco on mobile for space */
@media(max-width:600px){.section::before{display:none;}}

/* LEGAL PAGES */
.text-section h3 {
  margin-top: 13px;
  color: var(--primary);
  font-size:1.09rem;
  font-weight:600;
}
.text-section h2 {
  font-size:1.28rem;
  font-weight:700;
}

/* END OF CSS */
