/* 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-size:100%;
  font:inherit;
  vertical-align:baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display:block;
}
body {
  line-height:1.5;
  background: linear-gradient(135deg, #F4F1EC 0%, #e2ecec 100%);
  color:#25494E;
  font-family:'Roboto', Arial, sans-serif;
  font-size:16px;
  min-height:100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width:100%;
  display:block;
  height:auto;
}
a {
  color: #25494E;
  text-decoration: none;
  transition: color .2s;
}
a:hover,
a:focus {
  color: #F1C232;
  outline: none;
}
ul,ol {
  list-style:none;
  padding:0;
  margin:0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  border: none;
  outline: none;
  background: none;
}
button {
  cursor: pointer;
}

/* TYPOGRAPHY */
h1,h2,h3,h4,h5,h6 {
  font-family:'Montserrat', Arial, sans-serif;
  font-weight:700;
  color:#25494E;
  letter-spacing:-0.5px;
}
h1 {
  font-size:2.5rem;
  margin-bottom:24px;
  line-height:1.15;
}
h2 {
  font-size:2rem;
  margin-bottom:20px;
}
h3 {
  font-size:1.3rem;
  margin:24px 0 8px 0;
  font-weight:600;
}
h4,h5,h6 {
  font-size:1.1rem;
}
.subtitle {
  font-family:'Roboto', Arial, sans-serif;
  font-size:1.1rem;
  color:#25494E;
  opacity:.8;
  margin-bottom:24px;
  font-weight:400;
}
strong {
  font-weight:700;
  color: #25494E;
}

/* CONTAINERS & SPACING */
.container {
  width:100%;
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
  display: flex;
  flex-direction: column;
  gap:0;
}
.content-wrapper {
  display:flex;
  flex-direction:column;
  gap:24px;
}
.section {
  margin-bottom:60px;
  padding:40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap:24px;
  margin:0 -12px;
}
.card {
  margin-bottom:20px;
  position:relative;
  background: #fff;
  border-radius:18px;
  box-shadow:0 4px 14px rgba(37,73,78,0.07),0 1.5px 8px rgba(241,194,50,0.07);
  padding:32px 24px;
  min-width:250px;
  flex:1 1 280px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow:0 12px 32px rgba(37,73,78,0.14),0 3px 20px rgba(241,194,50,0.09);
  transform: translateY(-3px) scale(1.02);
}
.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:center;
  gap:20px;
  padding:20px 24px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 4px 12px rgba(37,73,78,0.06);
  margin-bottom:20px;
  font-style:italic;
  min-width:220px;
  max-width:430px;
  color:#25494E;
}
.testimonial-card span {
  font-size:1rem;
  font-family:'Roboto',Arial,sans-serif;
  color:#25494E;
  opacity:.8;
  font-style:normal;
  align-self:flex-end;
}
.feature-item {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:15px;
}
.text-section {
  display:flex;
  flex-direction:column;
  gap:16px;
}
.info-box {
  background:#F4F1EC;
  border-left:4px solid #F1C232;
  border-radius:12px;
  padding:20px 20px 20px 24px;
  margin-top:24px;
  box-shadow:0 2px 8px rgba(37,73,78,0.07);
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* HERO STYLES */
section:first-of-type {
  background: linear-gradient(110deg, #F1C232 0%, #fff 60%, #E4F1EF 100%);
  border-bottom-left-radius:64px;
  border-bottom-right-radius:64px;
  box-shadow:0 2px 24px rgba(37,73,78,0.05);
  padding-top:48px;
  padding-bottom:56px;
}

/* CTA BUTTON */
.cta-button {
  display:inline-block;
  background: linear-gradient(100deg, #25494E 20%, #25494E 80%);
  color:#fff;
  font-family:'Montserrat',Arial,sans-serif;
  font-size:1.15rem;
  font-weight:600;
  border-radius:32px;
  padding:14px 36px;
  box-shadow:0 2px 12px rgba(37,73,78,0.12);
  transition: background .25s, box-shadow .25s, transform .2s;
  border:none;
  margin-top:12px;
  outline:none;
  letter-spacing:0.4px;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(100deg, #F1C232 20%, #25494E 80%);
  color:#25494E;
  box-shadow:0 6px 24px rgba(241,194,50,0.14);
  transform: translateY(-2px) scale(1.03);
}

/* NAVIGATION */
header {
  background:#fff;
  box-shadow:0 2px 16px rgba(37,73,78,0.05);
  position:relative;
  z-index:22;
}
header .container {
  flex-direction:row;
  align-items:center;
  justify-content:space-between;
  min-height:72px;
  gap:0;
}
header nav {
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:32px;
}
header nav a {
  font-family:'Montserrat',Arial,sans-serif;
  font-size:1.07rem;
  font-weight:500;
  color:#25494E;
  padding:4px 0;
  position:relative;
  transition:color .2s;
}
header nav a:after {
  content: '';
  display:block;
  width:0;
  height:2px;
  background:#F1C232;
  transition: width 0.24s;
  position:absolute;
  left:0;
  bottom: -2px;
}
header nav a:hover:after, header nav a:focus:after {
  width:100%;
}
header nav a:hover,
header nav a:focus {
  color:#F1C232;
}
header a.cta-button {
  margin-left:30px;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display:none;
  background:none;
  font-size:2.1rem;
  color:#25494E;
  border:none;
  border-radius:50%;
  padding:6px 12px 7px 12px;
  margin-left:14px;
  transition: background .18s, box-shadow .18s;
}
.mobile-menu-toggle:focus {
  background:#D8EBE6;
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  position:fixed;
  top:0; left:0;
  width:100vw; height:100vh;
  background: #25494E;
  color: #fff;
  z-index:9999;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.69,0.01,0.31,1);
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  padding:0;
  pointer-events:none;
  opacity:0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events:auto;
  opacity:1;
  transition: transform .40s cubic-bezier(0.48,0.04,0.21,1), opacity .22s;
}
.mobile-menu-close {
  background: none;
  color: #F1C232;
  font-size: 2.7rem;
  border: none;
  margin: 24px 30px 0 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color .23s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin: 48px 0 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-family:'Montserrat',Arial,sans-serif;
  font-size:1.4rem;
  font-weight:600;
  letter-spacing:1.2px;
  padding: 6px 0;
  transition: color .22s, background .22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F1C232;
  background: rgba(244,241,236,0.05);
  border-radius: 8px;
  padding-left: 8px;
}

/* --- FOOTER --- */
footer {
  background: #25494E;
  color: #fff;
  padding: 36px 0 16px 0;
  border-top-left-radius:32px;
  border-top-right-radius:32px;
}
footer .container {
  flex-direction:column;
  align-items:center;
  gap:22px;
}
footer nav {
  display:flex;
  flex-direction:row;
  gap:24px;
  margin-bottom:6px;
}
footer nav a {
  color:#F1C232;
  font-size:1rem;
  font-weight:500;
  transition: color .16s;
}
footer nav a:hover,
footer nav a:focus {
  color:#fff;
  text-decoration:underline;
}
footer p {
  color:#F4F1EC;
  font-size:0.98rem;
}
footer address {
  font-size:0.97rem;
  color:#E2ECEC;
  font-style:normal;
  letter-spacing:0.3px;
  text-align:center;
}

/* LISTS / FEATURES / SERVICE ITEMS */
ul li {
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:16px;
  font-size:1.05rem;
  line-height:1.5;
}
ul li:last-child {
  margin-bottom:0;
}
ul li img {
  width:28px;
  height:28px;
  flex-shrink:0;
  margin-top:3px;
}

/* SERVICE ENTRIES */
.content-wrapper > ul {
  display:flex;
  flex-direction:column;
  gap:20px;
}
.content-wrapper > ul li > a {
  background: #25494E;
  color: #fff;
  border-radius:16px;
  font-size:0.98rem;
  padding:8px 20px;
  font-weight:600;
  margin-left:14px;
  font-family:'Montserrat',Arial,sans-serif;
  transition:background .18s, color .18s;
  display: inline-block;
}
.content-wrapper > ul li > a:hover, .content-wrapper > ul li > a:focus {
  background: #F1C232;
  color: #25494E;
  outline: none;
}
.content-wrapper > ul li > span {
  color:#F1C232;
  margin-left:8px;
  font-size:1.01rem;
  font-weight:600;
  font-family:'Montserrat',Arial,sans-serif;
}

/* CARD & LIST GRID FLEXBOX */
.card-content, .text-section {
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:16px;
}

/* FAQ STYLES */
.content-wrapper > ul li {
  background:#F4F1EC;
  border-radius:13px;
  padding:18px 22px;
  font-size:1.06rem;
  color:#25494E;
  margin-bottom:16px;
  box-shadow:0 0.5px 2px rgba(37,73,78,0.03);
}
.content-wrapper > ul li strong {
  color:#25494E;
  font-weight:700;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
  h1 { font-size:2rem; }
  h2 { font-size:1.5rem; }
  .container { max-width:98vw; }
  section { padding:30px 10px; }
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  footer .container { padding: 0 6px; }
  section { padding:26px 2px; }
  .content-wrapper, .text-section, .card-content {
    gap:18px;
  }
  .content-wrapper { padding:0 1px; }
  .card-container, .content-grid {
    gap:14px; flex-direction:column;
  }
  .mobile-menu-toggle {
    display:inline-block;
  }
  header nav, header a.cta-button {
    display:none;
  }
  .text-image-section {
    flex-direction:column; gap:20px;
  }
  .testimonial-card {
    max-width:100%; min-width:0; padding:16px 9px;
  }
}
@media (max-width:500px) {
  h1 { font-size:1.38rem; }
  h2 { font-size:1.04rem; }
  h3 { font-size:1rem; }
  .subtitle { font-size:0.95rem; }
  .cta-button {
    padding:11px 19px;
    font-size:0.98rem;
  }
  .mobile-nav a { font-size:1.01rem; }
}

/* SHADOW EFFECTS & HOVER */
.card, .info-box, .testimonial-card {
  transition: box-shadow .18s, transform .15s;
}
.card:hover, .testimonial-card:hover, .info-box:hover {
  box-shadow:0 8px 36px 0 rgba(37,73,78,0.11);
  transform: translateY(-4px) scale(1.01);
}

/* TRANSITIONS & MICRO-INTERACTIONS */
.cta-button, .card, .info-box, .mobile-nav a {
  transition: all .22s cubic-bezier(.53,.15,.18,1.14);
}

/* ACCESSIBILITY: HIGH CONTRAST text on testimonials & reviews */
.testimonial-card p,
.testimonial-card span {
  color: #25494E;
  background: transparent;
  font-weight: 500;
  text-shadow:0 1px 3px rgba(255,255,255,0.06);
}

/* COOKIE BANNER BOTTOM FIXED */
.cookie-banner {
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  z-index:10011;
  background:#25494E;
  color:#fff;
  padding:18px 24px;
  display:flex;
  flex-direction:row;
  justify-content:center;
  align-items:center;
  gap:26px;
  box-shadow:0 -2px 18px rgba(37,73,78,0.15);
  font-size:1.08rem;
  opacity:0.98;
}
.cookie-banner__text {
  flex:1 1 300px;
  max-width:700px;
}
.cookie-banner__actions {
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:14px;
}
.cookie-banner button {
  border:none;
  border-radius:22px;
  padding:8px 20px;
  font-family:'Montserrat',Arial,sans-serif;
  font-size:1rem;
  font-weight:600;
  margin:0 6px 0 0;
  box-shadow:0 1.5px 6px rgba(244,241,236,0.11);
  transition: background .17s, color .17s;
}
.cookie-banner .cookie-accept {
  background:#F1C232;
  color:#25494E;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background:#fff;
  color:#25494E;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #25494E;
  border: 1.2px solid #F1C232;
}
.cookie-banner .cookie-reject:hover,.cookie-banner .cookie-reject:focus {
  background:#F1C232;
  color:#25494E;
}
.cookie-banner .cookie-settings {
  background: none;
  color: #F1C232;
  border:1.2px solid #F1C232;
  box-shadow:none;
}
.cookie-banner .cookie-settings:hover,.cookie-banner .cookie-settings:focus {
  background: #F1C232;
  color:#25494E;
}
@media (max-width:800px){
  .cookie-banner {
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    font-size:0.98rem;
    padding:16px 10px 14px 10px;
  }
  .cookie-banner__text {
    max-width:100%;
    font-size:0.99rem;
  }
  .cookie-banner__actions {
    gap:9px;
    flex-wrap:wrap;
    margin-top:2px;
  }
}
@media (max-width:480px){
  .cookie-banner__text { font-size:0.89rem; }
  .cookie-banner button { font-size:0.97rem;padding:7px 13px; }
}

/* COOKIE MODAL/PREFERENCES */
.cookie-modal {
  position:fixed;
  left:50%;
  top:50%;
  transform:translate(-50%,-54%) scale(0.97);
  z-index:11001;
  background:#fff;
  color:#25494E;
  border-radius:18px;
  box-shadow:0 10px 64px rgba(37,73,78,.18);
  min-width:320px;
  max-width:96vw;
  padding:36px 28px 26px 28px;
  display:flex;
  flex-direction:column;
  gap:22px;
  opacity:0;
  pointer-events:none;
  transition: opacity .26s, transform .26s cubic-bezier(.31,.81,.59,1.2);
}
.cookie-modal.open {
  opacity:1;
  pointer-events:auto;
  transform:translate(-50%,-54%) scale(1);
}
.cookie-modal h2 {
  font-size:1.4rem;
  margin-bottom:8px;
  color:#25494E;
}
.cookie-modal .cookie-category {
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  border-bottom:1px solid #E2ECEC;
}
.cookie-modal .cookie-category:last-child {
  border-bottom:none;
}
.cookie-modal label {
  font-family:'Roboto',Arial,sans-serif;
  font-size:1.03rem;
  font-weight:500;
  color:#25494E;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #F1C232;
  width:21px;
  height:21px;
  border-radius:8px;
  border:1.2px solid #25494E;
}
.cookie-modal .category-required {
  font-size:0.98rem;
  color:#F1C232;
  margin-left:9px;
  font-weight:600;
}
.cookie-modal .cookie-modal-actions {
  display:flex;
  flex-direction:row;
  gap:13px;
  margin-top:19px;
}
.cookie-modal button {
  border:none;
  border-radius:22px;
  padding:8px 20px;
  font-family:'Montserrat',Arial,sans-serif;
  font-size:1rem;
  font-weight:600;
  margin-right:8px;
  box-shadow:0 1.5px 6px rgba(244,241,236,0.09);
  transition: background .17s, color .17s;
}
.cookie-modal .cookie-accept {
  background:#F1C232;
  color:#25494E;
}
.cookie-modal .cookie-accept:hover, .cookie-modal .cookie-accept:focus {
  background:#25494E;
  color:#F1C232;
}
.cookie-modal .cookie-close {
  background:none;
  color:#25494E;
  border:1.2px solid #F1C232;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  background:#F1C232;
  color:#25494E;
}
@media (max-width:540px){
  .cookie-modal { min-width:0; padding:17px 6px; }
  .cookie-modal h2 { font-size:1.1rem; }
  .cookie-modal label { font-size:0.96rem; }
  .cookie-modal .cookie-modal-actions { flex-direction:column; gap:8px; }
}

/* UTILITY CLASSES (margin/gap helpers) */
.mt-24 { margin-top:24px; }
.mb-10 { margin-bottom:10px; }
.mb-20 { margin-bottom:20px; }
.mt-32 { margin-top:32px; }
.gap-20 { gap:20px !important; }

/* HIDE CLASSES (for menu/modal JS) */
.hidden { display:none !important; }

/* END CSS */
