/*--- RESET & BASE ---*/
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,main {
  display: block;
}
body {
  line-height: 1.45;
  background: #F4F6FB;
  color: #1a2b38;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
img {
  border-style: none;
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #205081;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #357A37;
  outline: none;
}
ul,ol {
  padding-left: 1.4em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
}
th,td {
  padding: 16px;
  border-bottom: 1px solid #e5e7ec;
  text-align: left;
}
th {
  background: #F4F6FB;
  font-weight: 600;
}

/* Typography scale */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 24px;
  color: #205081;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #205081;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: #205081;
  margin-bottom: 12px;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
  color: #205081;
}

/* Container & Section spacing */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Flex Layouts (No Grid/Columns!) */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(32, 80, 129, 0.08);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 300px;
  transition: box-shadow 0.15s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(32,80,129,0.14);
}
.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 {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(32,80,129,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  min-width: 240px;
  max-width: 400px;
  margin-bottom: 20px;
  color: #1a2b38;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(32,80,129,0.12);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*--- HEADER ---*/
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(120,142,174,0.05);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #205081;
  padding: 8px 4px;
  border-radius: 4px;
  transition: background-color 0.15s, color 0.15s;
}
header nav a:hover,header nav a:focus {
  background: #E3EAF4;
  color: #357A37;
}

/*--- CTA BUTTONS ---*/
.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 32px;
  color: #fff;
  background: #205081;
  text-align: center;
  box-shadow: 0 2px 8px 0 rgba(32,80,129,0.09);
  border:none;
  cursor:pointer;
  transition: background-color 0.17s,transform 0.12s,box-shadow 0.17s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #357A37;
  color: #fff;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 4px 18px 0 rgba(32,80,129,0.14);
}

/*--- HERO & SECTION STYLING ---*/
.hero, .about-hero, .services, .services-intro, .process-hero, .pricing-hero, .faq-hero, .contact-hero, .confirmation {
  background: #F4F6FB;
  padding: 48px 0 32px 0;
  border-bottom: 1.5px solid #e5e7ec;
}
.hero .container, .about-hero .container, .services .container,
.services-intro .container, .process-hero .container, .pricing-hero .container,
.faq-hero .container, .contact-hero .container, .confirmation .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap:24px;
}
.hero h1, .about-hero h1, .services h1, .process-hero h1,
.pricing-hero h1, .faq-hero h1, .contact-hero h1, .confirmation h1 {
  font-size: 2.6rem;
  color: #205081;
  margin-bottom: 16px;
}
.hero p, .about-hero p, .services p, .process-hero p, .pricing-hero p,
.faq-hero p, .contact-hero p, .confirmation p {
  color:#33445b;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/*--- FEATURES LIST ---*/
.features .content-wrapper ul,
.values .content-wrapper ul,
.services .content-wrapper ul,
.services-intro .content-wrapper ul,
.process-highlight .content-wrapper ul,
.steps .content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0px;
  list-style: none;
}
.features .content-wrapper li,
.services-intro .content-wrapper li,
.values .content-wrapper li,
.services .content-wrapper li,
.process-highlight .content-wrapper li,
.steps .content-wrapper li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0 14px 0;
  background:transparent;
  font-size: 1.05rem;
  color:#1a2b38;
}
.features .content-wrapper img,
.services .content-wrapper img,
.values .content-wrapper img,
.steps .content-wrapper img,
.process-highlight .content-wrapper img {
  width: 28px;
  height: 28px;
  margin-right: 4px;
}

/*--- SERVICES & PRICING LIST ---*/
.services .content-wrapper ul li,
.pricing-table .content-wrapper tr {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(32, 80, 129, 0.10);
  margin-bottom:12px;
  padding: 20px 18px;
}
.services .content-wrapper ul li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  min-width: 220px;
}
.services .content-wrapper ul .price {
  color: #205081;
  font-weight: bold;
  background: #E3EAF4;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 1.02rem;
  align-self: flex-start;
  margin-top: 7px;
}

/*--- PROCESS STEPS ---*/
.process-highlight .content-wrapper ol,
.steps .content-wrapper ol {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 1.3em;
  margin-bottom: 10px;
}
.process-highlight .content-wrapper ol li,
.steps .content-wrapper ol li {
  position: relative;
  color: #205081;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 18px;
  background: #F8FAFD;
  border-radius: 8px;
  padding: 10px 14px;
}

/*--- TESTIMONIALS ---*/
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 14px;
}
.testimonial-card {
  min-height: 170px;
  background: #fff;
  color:#1A2B38;
  border-left: 4px solid #357A37;
}
.testimonial-card p {
  font-size: 1.05rem;
  color:#1A2B38;
}
.testimonial-card img {
  width:20px;
  height:20px;
  vertical-align:middle;
}
.testimonial-card strong { color:#205081 }

/*--- CTA SECTION ---*/
.cta {
  display: flex;
  background: #205081;
  color: #fff;
  border-radius: 0 0 28px 28px;
  margin-bottom: 56px;
  padding: 40px 0 32px 0;
}
.cta .btn-primary {
  background: #357A37;
  color: #fff;
  margin-top: 20px;
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: #205081;
}
.cta h2 {
  color: #fff;
  margin-bottom: 8px;
}

/*--- FAQ ---*/
.faq-list .content-wrapper dl {
  display: flex;
  flex-direction: column;
  gap:0;
}
.faq-list dt {
  font-weight: bold;
  margin-top: 22px;
  color: #205081;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-list dd {
  margin: 0 0 9px 0;
  color:#33445b;
}
.contact-prompt {
  margin-top: 28px;
  background: #F8FAFD;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/*--- LEGAL TEXT ---*/
.legal-text .container {
  padding-top: 36px;
  padding-bottom:36px;
}
.legal-text .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 32px 22px;
  box-shadow: 0 2px 18px 0 rgba(32,80,129,0.07);
}

/*--- CONFIRMATION ---*/
.confirmation .content-wrapper {
  background: #F8FAFD;
  border-radius: 14px;
  padding: 28px 22px;
  align-items: flex-start;
}
.confirmation h1 {
  color: #357A37;
}

/* CONTACT INFO */
.contact-info .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  padding: 18px 0;
}
.contact-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 210px;
}
.contact-info li { font-size:1.06rem; display: flex; align-items: center; gap: 12px;}
.contact-info img { width: 22px; }

/*--- FOOTER ---*/
footer {
  background: #F4F6FB;
  border-top: 1px solid #dde1e7;
  padding: 32px 0 16px 0;
  font-size: 0.975rem;
  color: #205081;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #205081;
}
footer nav a {
  color: #205081;
  transition: color 0.15s;
}
footer nav a:hover,footer nav a:focus {
  color: #357A37;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}
.footer-contact address {
  font-style: normal;
  margin-bottom: 3px;
}
.footer-contact img {
  width: 30px;
  vertical-align: middle;
  margin-right: 8px;
}
.footer-info {
  color: #7b8aa5;
  margin-top: 8px;
}

/*--- INPUTS ---*/
input[type="search"] {
  width: 100%;
  max-width: 360px;
  padding: 12px 16px;
  border: 1px solid #dde1e7;
  border-radius: 24px;
  font-size: 1rem;
  margin-top: 4px;
  background: #fff;
  outline: none;
  transition: border-color 0.18s;
}
input[type="search"]:focus {
  border-color: #205081;
}

/*--- RESPONSIVE ---*/
@media (max-width: 1000px) {
  .container {
    max-width: 94vw;
    padding-left: 10px; padding-right: 10px;
  }
  header .container{ gap: 11px; }
  .footer-contact{ gap: 16px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 5px;
  }
  header nav, header .btn-primary {
    display: none;
  }
  .cta{
    border-radius: 0 0 20px 20px;
    padding: 32px 0 26px 0;
    margin-bottom: 32px;
  }
  .features .content-wrapper ul, .services .content-wrapper ul, .process-highlight .content-wrapper ol {
    gap:11px;
  }
  .content-wrapper, .content-grid { gap: 14px; }
  .container { max-width: 99vw; }
  .content-wrapper, .legal-text .content-wrapper, .confirmation .content-wrapper {
    padding: 18px 8px;
  }
  .card-container, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
  }
  .contact-info .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .section { padding: 18px 5px; }
  .text-image-section { flex-direction: column; gap: 16px; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.14rem; }
  p, li, dd, .btn-primary{ font-size: 0.97rem; }
  .section { margin-bottom: 36px; padding: 12px 3px; }
}

/*--- FLEX LAYOUT OVERRIDES FOR SAFETY ---*/
.card-container,.content-grid,.features .content-wrapper ul,.testimonials .content-wrapper,.footer-contact,.contact-info .content-wrapper{gap:20px;}
.section:not(:last-child){margin-bottom:60px;}
.card:not(:last-child),.testimonial-card:not(:last-child){margin-bottom:20px;}

/*--- MOBILE MENU ---*/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 22px;
  top: 20px;
  background: #205081;
  border: none;
  color: #fff;
  border-radius: 6px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  z-index: 1002;
  cursor: pointer;
  box-shadow: 0px 2px 8px #20508118;
  transition: background 0.18s, color 0.15s;
}
.mobile-menu-toggle:focus {
  background: #357A37;
}
@media (max-width: 900px) {
  .mobile-menu-toggle { display: block; }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(32,80,129,0.98);
  color: #fff;
  z-index: 1010;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100vw);
  transition: transform 0.32s cubic-bezier(.8,.3,.2,1.2);
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  border: none;
  background: none;
  color: #fff;
  font-size: 2.1rem;
  padding: 18px 24px 0 0;
  cursor: pointer;
  z-index: 1011;
  align-self: flex-end;
}
.mobile-nav {
  margin-top: 34px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
  background: none;
  border-radius: 9px;
  padding: 10px 12px;
  min-width: 180px;
  transition: background 0.17s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #357A37;
  color: #fff;
  outline: none;
}

/*--- COOKIE CONSENT BANNER ---*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #fff;
  color: #205081;
  border-top: 2px solid #20508144;
  box-shadow: 0 -1px 16px rgba(32,80,129,0.07);
  padding: 24px 12px 18px 12px;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  animation: fadeInUp 0.65s cubic-bezier(.23,1.49,.58,.94);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(38px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-text {
  flex: 1 1 320px;
  font-size: 1.02rem;
  color: #205081;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.btn-cookie {
  padding: 9px 24px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.14s, color 0.13s;
}
.btn-cookie-accept {
  background: #357A37;
  color: #fff;
}
.btn-cookie-accept:hover, .btn-cookie-accept:focus {
  background: #205081;
}
.btn-cookie-reject {
  background: #F4F6FB;
  color: #205081;
  border:1.5px solid #20508144;
}
.btn-cookie-reject:hover, .btn-cookie-reject:focus {
  background: #E3EAF4;
  color: #357A37;
}
.btn-cookie-settings {
  background: #fff;
  color: #357A37;
  border:1.5px solid #357A37;
}
.btn-cookie-settings:hover, .btn-cookie-settings:focus {
  background: #F4F6FB;
  color: #205081;
}

@media (max-width:600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap:10px; padding: 18px 4px 14px 7px; }
  .cookie-banner-actions { gap:7px; flex-wrap:wrap; }
}

/*--- COOKIE MODAL ---*/
.cookie-modal-backdrop {
  display:none;
  position:fixed;
  z-index:10001;
  left:0; top:0;width:100vw; height:100vh;
  background:rgba(32,80,129,0.30);
  align-items:center;justify-content:center;
}
.cookie-modal-backdrop.active {
  display:flex;
  animation:fadeIn .26s both;
}
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
.cookie-modal {
  background:#fff;
  border-radius:18px;
  box-shadow: 0 6px 42px 0 rgba(32,80,129,0.22);
  padding:36px 26px 26px 26px;
  min-width:260px; max-width:98vw;
  width:390px;
  color: #205081;
  display:flex; flex-direction:column; gap:11px;
  font-size:1rem;
  animation:fadeInUp .35s;
}
.cookie-modal h2 {
  margin-bottom: 15px;
  color: #205081;
  font-size: 1.25rem;
}
.cookie-modal .cookie-category {
  display:flex;align-items:center;gap:12px;
  margin-bottom:15px;
}
.cookie-modal .cookie-category label {
  font-size:1rem;
}
.cookie-modal .cookie-toggle {
  width: 36px;
  height: 20px;
  border-radius: 12px;
  background: #dde1e7;
  position: relative;
  margin-right: 6px;
  border:none;
  outline:none;
  appearance: none;
  cursor:pointer;
  transition: background 0.14s;
}
.cookie-modal .cookie-toggle:checked {
  background: #357A37;
}
.cookie-modal .cookie-toggle::after {
  content:"";
  position:absolute;left:3px;top:3px;
  width:14px;height:14px;border-radius:50%;
  background:#fff;
  transition:transform .18s;
}
.cookie-modal .cookie-toggle:checked::after {
  transform:translateX(16px);
}
.cookie-modal .cookie-modal-actions {
  margin-top:18px;
  display:flex;gap:9px;justify-content:flex-end;
}
.cookie-modal .btn-primary, .cookie-modal .btn-cookie {
  min-width:110px;
}

/*--- SHADOWS & RADIUS FOR CARDS ---*/
.card, .testimonial-card, .legal-text .content-wrapper, .confirmation .content-wrapper {
  border-radius: 15px;
  box-shadow: 0 2px 16px 0 rgba(32,80,129,0.07);
}

/*--- UTILITIES ---*/
.text-center { text-align:center; }
.flex-center { display:flex; align-items:center; justify-content:center; }
.nowrap{ white-space:nowrap; }

/* --- Montserrat and Open Sans Webfonts --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

/*--- PRINT STYLES ---*/
@media print { 
  header, .mobile-menu, .mobile-menu-toggle, .cta, footer, .cookie-banner, .cookie-modal-backdrop { display: none !important; } 
}
