/* RESET & BASE TYPOGRAPHY */
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;
  background: linear-gradient(135deg, #f1f6ed 0%, #e0eafc 100%);
  min-height:100vh;
  font-family:'Open Sans', Arial, sans-serif;
  color:#274058;
  font-size:16px;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
ul,ol{
  list-style:none;
}
a{
  color:#274058;
  text-decoration:none;
  transition:color 0.2s;
}
a:hover,a:focus{
  color:#80B156;
  outline:none;
}
img{
  max-width:100%;
  display:block;
}

/* TYPOGRAPHY SCALE */
h1{
  font-family:'Montserrat', Arial, sans-serif;
  font-weight:700;
  font-size:2.25rem;
  line-height:1.2;
  margin-bottom:24px;
}
h2{
  font-family:'Montserrat', Arial, sans-serif;
  font-weight:600;
  font-size:1.5rem;
  margin-bottom:20px;
  color:#274058;
}
h3{
  font-family:'Montserrat', Arial, sans-serif;
  font-weight:500;
  font-size:1.125rem;
  margin-bottom:12px;
  color:#274058;
}
p{
  font-size:1rem;
  margin-bottom:16px;
  color:#274058;
}
strong,b{
  font-weight:700;
  color:#274058;
}

/* CONTAINER & WRAPPERS */
.container{
  width:100%;
  max-width:1100px;
  margin:0 auto;
  padding-left:20px;
  padding-right:20px;
  display:flex;
  flex-direction:column;
}
.content-wrapper{
  padding:0;
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* SECTIONS & LAYOUTS */
section{
  margin-bottom:60px;
  padding:40px 0 40px 0;
  background:transparent;
  border-radius:20px;
}
.card-container{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  justify-content:space-between;
  align-items:stretch;
}
.card{
  background:#fff;
  box-shadow:0 2px 12px rgba(39,64,88,0.08), 0 1.5px 4px rgba(128,177,86,0.08);
  border-radius:18px;
  margin-bottom:20px;
  padding:28px 22px;
  display:flex;
  flex-direction:column;
  transition:box-shadow 0.25s, transform 0.2s;
  position:relative;
  min-width:260px;
}
.card:hover,
.card:focus-within{
  box-shadow:0 6px 28px rgba(128,177,86,0.16), 0 2px 8px rgba(39,64,88,0.08);
  transform:translateY(-4px) scale(1.025);
  z-index:1;
}
.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;
  flex-direction:column;
  align-items:flex-start;
  gap:20px;
  background:#F1F6ED;
  border-radius:16px;
  padding:24px 26px;
  margin-bottom:20px;
  box-shadow:0 1.5px 10px rgba(39,64,88,0.07);
  position:relative;
  max-width:600px;
}
.testimonial-card blockquote{
  font-family:'Montserrat', Arial, sans-serif;
  font-size:1.15rem;
  color:#274058;
  font-style:italic;
  line-height:1.5;
  margin:0 0 6px 0;
}
.testimonial-card span{
  font-size:0.98rem;
  color:#274058;
  font-weight:600;
}
.feature-item{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:15px;
  margin-bottom:10px;
}
.text-section{
  margin-bottom:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.text-section ul, .text-section ol {
  padding-left:20px;
  margin-bottom:10px;
}
.text-section li{
  margin-bottom:8px;
  line-height:1.6;
}

/* NAVIGATION STYLES */
header{
  width:100%;
  background:#fff;
  box-shadow:0 1.5px 18px rgba(39,64,88,0.04);
  position:relative;
  z-index:20;
}
header nav{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:20px;
  padding:18px 0;
}
header nav img{
  height:38px;
  width:auto;
  margin-right:8px;
}
header nav a{
  font-family:'Montserrat', Arial, sans-serif;
  font-size:1rem;
  font-weight:500;
  padding:7px 14px;
  border-radius:7px;
  transition:background 0.18s, color 0.2s;
}
header nav a:hover, header nav a:focus{
  background:#F1F6ED;
  color:#80B156;
}
.btn-primary{
  background:linear-gradient(90deg, #80B156 0%, #274058 100%);
  color:#fff!important;
  font-family:'Montserrat', Arial, sans-serif;
  font-weight:600;
  font-size:1rem;
  padding:10px 30px;
  border-radius:100px;
  border:none;
  box-shadow:0 2px 8px rgba(39,64,88,0.13);
  transition:background 0.2s, box-shadow 0.2s, transform 0.14s;
  display:inline-block;
  cursor:pointer;
  margin-top:8px;
  text-align:center;
}
.btn-primary:hover, .btn-primary:focus{
  background:linear-gradient(90deg, #274058 0%, #80B156 100%);
  color:#fff!important;
  box-shadow:0 4px 22px rgba(128,177,86,0.25);
  transform:translateY(-2px) scale(1.03);
  outline:none;
}

/* FOOTER */
footer{
  background:linear-gradient(90deg, #274058 0%, #80B156 100%);
  color:#fff;
  width:100%;
  padding:0;
}
footer .container{
  padding:0 20px;
}
footer .content-wrapper{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  padding:36px 0 32px 0;
}
footer nav{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
}
footer nav a{
  color:#fff;
  font-size:0.99rem;
  font-weight:500;
  border-radius:8px;
  padding:6px 11px;
  transition:background 0.2s, color 0.18s;
}
footer nav a:hover,footer nav a:focus{
  background:rgba(241,246,237,0.10);
  color:#F1F6ED;
}
footer img{
  height:32px;
  width:auto;
}
footer .text-section{
  font-size:0.96rem;
  color:#fff;
  margin:0;
  gap:2px;
  display:flex;
  flex-direction:column;
}
footer .text-section img{
  height:15px;
  width:15px;
  display:inline-block;
  margin-right:8px;
  vertical-align:text-top;
}

/* MOBILE MENU */
.mobile-menu-toggle{
  display:none;
  background:transparent;
  border:none;
  font-size:2rem;
  cursor:pointer;
  color:#274058;
  position:absolute;
  top:15px;
  right:20px;
  z-index:50;
  padding:8px 12px;
  border-radius:50%;
  transition:background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover{
  background:#F1F6ED;
}
.mobile-menu{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100vw;
  height:100vh;
  background:#fff;
  z-index:9999;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-end;
  transform:translateX(100%);
  transition:transform 0.35s cubic-bezier(.77,0,.18,1);
  box-shadow:-2px 0 28px rgba(39,64,88,0.09);
}
.mobile-menu.mobile-menu-active{
  display:flex;
  transform:translateX(0);
}
.mobile-menu-close{
  background:transparent;
  border:none;
  font-size:2.3rem;
  color:#274058;
  position:absolute;
  top:18px;
  right:24px;
  cursor:pointer;
  padding:8px 12px;
  border-radius:50%;
  transition:background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover{
  background:#F1F6ED;
}
.mobile-nav{
  display:flex;
  flex-direction:column;
  gap:20px;
  width:100%;
  padding:60px 32px 32px 32px;
  align-items:flex-start;
}
.mobile-nav a{
  font-family:'Montserrat', Arial, sans-serif;
  font-size:1.2rem;
  color:#274058;
  padding:14px 0;
  width:100%;
  border-radius:10px;
  transition:background 0.17s, color 0.16s;
  font-weight:600;
}
.mobile-nav a:hover, .mobile-nav a:focus{
  background:#F1F6ED;
  color:#80B156;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width:1100px){
  .container{
    max-width:97vw;
    padding-left:8px;
    padding-right:8px;
  }
}
@media (max-width:880px){
  .content-wrapper, .footer .content-wrapper{
    flex-direction:column;
    align-items:flex-start;
    gap:24px;
  }
}
@media (max-width:784px){
  h1{font-size:1.65rem;}
  h2{font-size:1.2rem;}
  .container{padding:0 4vw;}
  .content-wrapper{gap:14px;}
}
@media (max-width:660px){
  .content-wrapper, footer .content-wrapper{
    gap:18px;
    flex-direction:column;
    align-items:flex-start;
  }
}
@media (max-width:768px){
  .text-image-section,
  .content-grid,
  .card-container{
    flex-direction:column;
    gap:16px;
    align-items:stretch;
  }
  .testimonial-card{
    max-width:100%;
    margin:0 0 20px 0;
  }
}
@media (max-width:900px){
  .card-container,
  .content-grid{
    flex-direction:column;
    gap:16px;
  }
}
@media (max-width:1044px){
  header nav{
    gap:12px;
    flex-wrap:wrap;
  }
}

/* MOBILE NAV SHOW/HIDE */
@media (max-width:1024px){
  header nav{
    display:none;
  }
  .mobile-menu-toggle{
    display:block;
  }
}
@media (min-width:1025px){
  .mobile-menu{
    display:none!important;
  }
  .mobile-menu-toggle{
    display:none!important;
  }
}

/* SPACING PATTERNS */
.section{
  margin-bottom:60px;
  padding:40px 20px;
}
.card-container{
  gap:24px;
}
.card{
  margin-bottom:20px;
  position:relative;
}
.content-grid{
  gap:20px;
  justify-content:space-between;
}
.text-image-section{
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
}
.testimonial-card{
  align-items:center;
  gap:20px;
  padding:20px;
}
.feature-item{
  flex-direction:column;
  align-items:flex-start;
  gap:15px;
}


/* CTA & HOVERABLE ELEMENTS */
.card, .btn-primary, .testimonial-card{
  box-shadow:0 1.5px 8px rgba(39,64,88,0.05);
}
.card:active, .btn-primary:active{
  transform:scale(0.98);
}

/* ICON STYLING */
li span img{
  height:24px;
  width:24px;
  margin-right:10px;
  vertical-align:middle;
  display:inline-block;
}
li span{display:inline-block;vertical-align:middle;}

/* OL & UL */
ul, ol{
  padding-left:24px;
  color:#274058;
}

/* FOCUS VISIBLE */
:focus{
  outline:2px solid #80B156;
  outline-offset:2px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner{
  position:fixed;
  left:0;right:0;bottom:0;
  width:100vw;
  z-index:20000;
  background:#274058;
  color:#fff;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  padding:18px 16px;
  gap:20px;
  box-shadow:0 -1.5px 18px rgba(39,64,88,0.12);
  min-height:64px;
  font-size:1rem;
  animation:cookie-slide-up 0.6s cubic-bezier(.32,1.56,.36,.87);
}
@keyframes cookie-slide-up{
  0%{transform:translateY(100%);opacity:0;}
  70%{transform:translateY(-7%);opacity:1;}
  100%{transform:translateY(0);opacity:1;}
}
.cookie-banner .cookie-message{
  flex:1;
  min-width:170px;
  margin-right:20px;
}
.cookie-banner button{
  margin-left:10px;
}
.cookie-btn{
  background:#80B156;
  color:#fff;
  border:none;
  border-radius:40px;
  padding:8px 22px;
  font-family:'Montserrat', Arial, sans-serif;
  font-size:1rem;
  font-weight:600;
  margin-right:5px;
  cursor:pointer;
  transition:background 0.16s, color 0.13s, box-shadow 0.16s;
  margin-bottom:8px;
}
.cookie-btn:focus, .cookie-btn:hover{
  background:#fff;
  color:#80B156;
  box-shadow:0 1.5px 17px rgba(128,177,86,0.15);
}
.cookie-btn.reject{
  background:transparent;
  border:2px solid #F1F6ED;
  color:#fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus{
  background:#F1F6ED;
  color:#274058;
}
.cookie-btn.settings{
  background:transparent;
  color:#fff;
  border:2px solid #80B156;
}
.cookie-btn.settings:hover,.cookie-btn.settings:focus{
  background:#80B156;
  color:#f1f6ed;
}
@media(max-width:640px){
  .cookie-banner{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    font-size:0.98rem;
    padding:17px 12px;
  }
  .cookie-banner .cookie-message{
    margin-right:0;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay{
  position:fixed;
  left:0;top:0;right:0;bottom:0;
  width:100vw;height:100vh;
  background:rgba(39,64,88,0.41);
  z-index:21000;
  display:flex;
  align-items:center;
  justify-content:center;
  animation:cookie-fadein 0.4s;
}
@keyframes cookie-fadein{
  0%{opacity:0;} 100%{opacity:1;}
}
.cookie-modal{
  background:#fff;
  border-radius:22px;
  box-shadow:0 4px 48px rgba(39,64,88,0.15);
  padding:40px 28px 34px 28px;
  max-width:420px;
  width:95vw;
  color:#274058;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  font-size:1.07rem;
  animation:cookie-modal-pop 0.5s;
}
@keyframes cookie-modal-pop{
  0%{transform:scale(0.94) translateY(80px);opacity:0.5;}
  80%{transform:scale(1.03);} 100%{transform:scale(1) translateY(0);opacity:1;}
}
.cookie-modal h2{
  font-size:1.26rem;
  margin-bottom:9px;
  color:#274058;
  font-family:'Montserrat', Arial, sans-serif;
}
.cookie-modal label{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
  font-size:1rem;
}
.cookie-modal input[type=checkbox]{
  accent-color:#80B156;
  width:18px;height:18px;
}
.cookie-modal .cookie-category{
  font-weight:600;
  margin-right:6px;
  color:#274058;
}
.cookie-modal .cookie-modal-actions{
  width:100%;
  margin-top:18px;
  display:flex;
  gap:14px;
  justify-content:flex-end;
}
.cookie-modal .cookie-btn{
  min-width:110px;
  margin:0;
}
.cookie-modal .cookie-modal-close{
  position:absolute;
  right:24px;top:24px;
  background:transparent;
  border:none;
  font-size:1.8rem;
  color:#274058;
  cursor:pointer;
  padding:4px 8px;
  border-radius:50%;
  transition:background 0.15s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus{
  background:#F1F6ED;
}
@media(max-width:544px){
  .cookie-modal{
    padding:25px 8px;
    font-size:0.98rem;
  }}

/* TRANSITIONS & MICRO-INTERACTIONS */
a, .btn-primary, .cookie-btn, .card, .mobile-menu, .mobile-nav a{
  transition:.21s cubic-bezier(.65,-0.2,.25,1.8);
}

/* UTILITIES & GENERIC */
.mt-1{margin-top:8px;}
.mt-2{margin-top:16px;}
.mt-3{margin-top:24px;}
.mt-4{margin-top:32px;}
.mb-1{margin-bottom:8px;}
.mb-2{margin-bottom:16px;}
.mb-3{margin-bottom:24px;}
.mb-4{margin-bottom:32px;}
.flex{
  display:flex;
}
.flex-column{
  flex-direction:column;
}
.flex-row{
  flex-direction:row;
}
.gap-1{
  gap:8px;
}
.gap-2{
  gap:16px;
}
.gap-3{
  gap:24px;
}
.gap-4{
  gap:32px;
}

/* SELECT FORM ELEMENTS IN CONTENT (if present) */
input[type=text], input[type=email], textarea{
  font-family:'Open Sans', Arial, sans-serif;
  font-size:1rem;
  padding:10px 13px;
  border:1.5px solid #E0EAF0;
  border-radius:8px;
  background:#fff;
  margin-bottom:16px;
  color:#274058;
  outline:none;
  transition:border 0.16s;
  box-shadow:0 0.5px 2px rgba(128,177,86,.08);
}
input[type=text]:focus, input[type=email]:focus, textarea:focus{
  border-color:#80B156;
}

/* SCROLLBARS (modern look, but non-blocking) */
body::-webkit-scrollbar{
  width:10px;
  background:#F1F6ED;
}
body::-webkit-scrollbar-thumb{
  background:#E3ECEB;
  border-radius:8px;
}

/* ACCESSIBILITY: Accessibility tip: enough focus/high contrast on testimonial cards */
.testimonial-card, .testimonial-card *{
  color:#274058!important;
  background:#F1F6ED!important;
}

/* END CSS */
