/* --- RESET & BASE --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  outline: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  background: #F0F5F9;
  line-height: 1.65;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1A365D;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.6,.01,.8,.6);
  font-weight: 500;
}
a:hover, a:focus {
  color: #52B788;
}
ul,ol {
  padding-left: 1.25em;
}
hr {
  border: 0;
  border-top: 2px solid #E0E5F2;
  margin: 32px 0;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  color: #1A365D;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, table, td, th {
  font-size: 1rem;
}
p, ul, ol {
  margin-bottom: 16px;
  color: #222;
}

strong, b {
  font-weight: 800;
}

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(26,54,93,0.07),0 1.5px 6px 0 rgba(26,54,93,.04);
  padding: 32px 24px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(82,183,136,0.12),0 3px 12px 0 rgba(26,54,93,.09);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.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) {
  .container {
    padding: 0 8px;
  }
  .section {
    padding: 28px 6px;
    margin-bottom: 32px;
  }
  .content-wrapper {
    gap: 10px;
  }
  .card-container, .content-grid, .text-image-section { flex-direction: column; gap: 16px; }
}

/* --- HEADER / NAV --- */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(26,54,93,0.05);
  position: sticky;
  top: 0; z-index: 100;
  width: 100%;
}
nav {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 20px;
}
nav > a img {
  height: 38px;
  width: auto;
}
nav ul {
  display: flex;
  gap: 14px;
  list-style: none;
}
nav ul li a {
  display: block;
  padding: 8px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A365D;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
nav ul li a:hover,
nav ul li a:focus {
  background: #F0F5F9;
  color: #52B788;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #52B788;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 800;
  border: none;
  border-radius: 15px;
  padding: 12px 28px;
  margin-left: 20px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px 0 rgba(26,54,93,0.09);
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.17s;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #1A365D;
  color: #fff !important;
  box-shadow: 0 4px 16px 0 rgba(82,183,136,0.12);
}
.cta-link {
  color: #52B788;
  font-weight: 800;
  text-decoration: underline;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  transition: color 0.16s;
}
.cta-link:hover,.cta-link:focus{
  color: #1A365D;
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 1000px) {
  nav ul { display: none; }
  .cta-button { display: none !important; }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: #52B788;
    color: #fff;
    border-radius: 12px;
    border: none;
    width: 48px;
    height: 48px;
    cursor: pointer;
    margin-left: auto;
    transition: background 0.18s;
    z-index: 203;
  }
  .mobile-menu-toggle:hover,.mobile-menu-toggle:focus {
    background: #1A365D;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #fff;
  z-index: 202;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.6,0,.3,1);
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: 4px 0 32px 0 rgba(26,54,93,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #1A365D;
  font-size: 2.1rem;
  margin: 20px 22px 20px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  color: #52B788;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  align-items: flex-start;
  padding-left: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A365D;
  font-size: 1.18rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 22px 10px 8px;
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:hover,.mobile-nav a:focus{
  background: #F0F5F9;
  color: #52B788;
}
@media (min-width: 1001px){
  .mobile-menu-toggle{
    display: none;
  }
  .mobile-menu{ display: none !important; }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(135deg,#F0F5F9 45%,#e6f5ed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  margin-bottom: 60px;
  border-bottom: 6px solid #52B788;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: #1A365D;
  font-size: 2.6rem;
  font-weight: 900;
}
.hero p {
  color: #1A365D;
  font-size: 1.15rem;
  margin-bottom: 18px;
  max-width: 650px;
}
@media (max-width: 700px) {
  .hero{
    min-height: 210px;
    margin-bottom: 36px;
    padding-top: 16px;
    padding-bottom: 12px;
  }
  .hero h1 {
    font-size: 1.7rem;
    line-height: 1.15;
  }
}

/* --- HOME: WHY US, SERVICES, FEATURES --- */
section > .container > .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  list-style: none;
  margin-bottom: 14px;
  margin-top: 10px;
}
section > .container > .content-wrapper > ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  border-radius: 15px;
  padding: 18px 26px 18px 18px;
  box-shadow: 0 2px 8px #d4e6e2;
  font-size: 1.09rem;
  font-weight: 700;
  color: #1A365D;
  min-width: 230px;
  flex: 1 1 260px;
  transition: box-shadow .18s, background .17s;
  flex-direction: column;
}
section {
  padding: 20px 0;
}
section > .container > .content-wrapper > ul li:hover {
  background: #F0F5F9;
  box-shadow: 0 5px 22px #bae6d4;
}
section > .container > .content-wrapper > ul li img {
  width: 32px;
  height: 32px;
}
@media (max-width: 800px) {
  section > .container > .content-wrapper > ul { gap: 14px; }
  section > .container > .content-wrapper > ul li {
    min-width: 160px;
    font-size: 1rem;
    padding: 13px 15px 13px 13px;
  }
  section > .container > .content-wrapper > ul li img { width: 24px; height: 24px; }
}

/* --- SERVICES LIST --- */
section > .container > .content-wrapper > ul li h3 {
  font-size: 1.18rem;
  margin-bottom: 4px;
  font-weight: 800;
  color: #1A365D;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
section > .container > .content-wrapper > ul li h3 span {
  color: #52B788;
  font-weight: 700;
  font-size: 1rem;
}
section > .container > .content-wrapper > ul li p {
  color: #222;
  font-size: 1rem;
  margin-bottom: 6px;
  margin-top: 1px;
}
/* Allow vertical stacking of services on mobile */
@media (max-width: 1160px){
  section > .container > .content-wrapper > ul li {
    flex: 1 1 99%;
    min-width: 99%;
  }
}

/* --- TABLE --- */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px #d4e6e2;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
thead tr {
  background: #52B788;
  color: #fff;
}
th, td {
  padding: 14px 12px;
  text-align: left;
}
th {
  font-weight: 900;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
}
tbody tr{
  border-bottom: 1px solid #F0F5F9;
}
tbody tr:last-child{
  border-bottom:none;
}
tbody td{
  color: #1A365D;
  font-weight: 500;
}

/* --- CARDS --- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  box-shadow: 0 2px 10px #d4e6e2;
  border-radius: 14px;
  padding: 28px 20px;
  margin-bottom: 20px;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  color: #1A365D;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(26,54,93,0.09);
  margin-bottom: 20px;
  min-height: 88px;
  transition: box-shadow 0.13s;
  font-size: 1.05rem;
  position: relative;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 7px 24px 0 rgba(82,183,136,0.16);
}
.testimonial-card p {
  font-weight: 700;
  color: #1A365D;
  margin-right: 0.75em;
  margin-bottom: 0;
}
.testimonial-card span {
  font-weight: 600;
  font-size: 1rem;
  color: #52B788;
  margin-left: auto;
  letter-spacing: 0.01em;
}
@media (max-width: 650px) {
  .testimonial-card { flex-direction: column; gap: 8px; padding: 14px 10px; align-items: flex-start; }
  .testimonial-card p { margin-right: 0; }
  .testimonial-card span { margin-left: 0; }
}

/* --- TEXT SECTIONS --- */
.text-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px #d4e6e2;
  padding: 28px 22px;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1A365D;
}
.text-section h3 {
  margin-bottom: 6px;
  font-size: 1.12rem;
  font-weight: 800;
  color: #1A365D;
}


/* --- BUTTONS --- */
button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 11px 34px;
  border-radius: 13px;
  background: #52B788;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 9px 0 rgba(26,54,93,0.05);
  transition: background 0.15s, box-shadow 0.15s;
}
button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: #1A365D;
}

/* --- FORMS (if any) --- */
input[type="text"], input[type="email"], textarea {
  border-radius: 10px;
  border: 2px solid #E0E5F2;
  background: #fff;
  padding: 12px 14px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
  transition: border-color 0.15s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border: 2px solid #52B788;
}
label {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A365D;
  margin-bottom: 4px;
  display: block;
  font-size: 1.08rem;
}

/* --- FOOTER --- */
footer {
  background: #1A365D;
  color: #fff;
  padding: 32px 0 16px 0;
}
footer .container {
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
footer .content-wrapper {
  gap: 14px;
  align-items: center;
}
.footer-nav {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.footer-nav a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-nav a:hover,.footer-nav a:focus {
  color: #52B788;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  align-items: center;
  font-size: 1rem;
}
.contact-info img {
  height: 20px;
  width: 20px;
  margin-right: 7px;
}
.social-links {
  display: flex;
  gap: 18px;
  margin-bottom: 5px;
}
.social-links a img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: filter 0.15s;
}
.social-links a:hover img, .social-links a:focus img {
  filter: brightness(1)
          saturate(2) hue-rotate(87deg) drop-shadow(0 0 4px #52B78866);
}
footer p {
  font-size: 0.95rem;
  color: #C5D1E3;
  text-align: center;
}
@media (max-width: 650px) {
  .footer-nav {font-size: .97rem; gap: 6px;}
  .contact-info { font-size: 0.98rem; }
  .social-links { gap: 10px;}
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #1A365D;
  color: #fff;
  z-index: 2100;
  padding: 22px 16px 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -3px 22px 0 rgba(26,54,93,0.22);
  transition: transform 0.25s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1050px;
  justify-content: space-between;
}
.cookie-banner p {
  margin-bottom: 0;
  color: #fff;
  font-size: 1rem;
  max-width: 710px;
  line-height: 1.6;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-buttons button {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border-radius: 9px;
  padding: 10px 20px;
  min-width: 116px;
  box-shadow: 0 2px 4px #2b3b58a8;
  border: none;
  transition: background 0.14s;
}
.cookie-buttons .accept {
  background: #52B788;
  color: #fff;
}
.cookie-buttons .accept:hover, .cookie-buttons .accept:focus {
  background: #419d6e;
}
.cookie-buttons .reject {
  background: #fff;
  color: #1A365D;
  border: 2px solid #52B788;
}
.cookie-buttons .reject:hover, .cookie-buttons .reject:focus {
  background: #e8e8e8;
}
.cookie-buttons .settings {
  background: #1A365D;
  color: #fff;
  border: 2px solid #52B788;
}
.cookie-buttons .settings:hover, .cookie-buttons .settings:focus {
  background: #222d41;
}
@media (max-width: 910px) {
  .cookie-banner-content { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-buttons { gap: 11px; }
}
@media (max-width:550px) {
  .cookie-banner { padding: 15px 4px 12px 4px; }
  .cookie-banner p { font-size: 0.96rem; }
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2200;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 30px #3c557f46;
  width: 94%;
  max-width: 420px;
  padding: 32px 28px 24px 28px;
  display: none;
  flex-direction: column;
  gap: 16px;
  animation: cookieModalShow 0.25s cubic-bezier(.7,.04,.18,.97)
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookieModalShow {
  from { opacity: 0; transform: translate(-50%,-46%); }
  to { opacity: 1; transform: translate(-50%,-50%); }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif; color: #1A365D; font-weight: 800; font-size: 1.24rem; margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #1A365D;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category input[type='checkbox'] {
  accent-color: #52B788;
  width: 22px; height: 22px;
  border-radius: 4px;
}
.cookie-category .always-on {
  font-weight: 800;
  color: #52B788;
}
.cookie-modal-buttons {
  display: flex;
  gap: 14px;
  margin-top: 7px;
  flex-wrap: wrap;
}
.cookie-modal-buttons button {
  min-width: 110px;
  font-size: 1rem;
  padding: 10px 16px;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 18px; right: 24px;
  background: transparent;
  border: none;
  color: #1A365D;
  font-size: 1.7rem;
  cursor: pointer;
  font-weight: 900;
}
.cookie-modal .close-btn:hover{
  color: #52B788;
}
@media (max-width: 533px){
  .cookie-modal { padding: 17px 8px 16px 9px; max-width: 99vw; font-size: 0.97rem; }
}

/* --- GENERAL UTILITY --- */
.mt-20 { margin-top: 20px; }
.mb-24 { margin-bottom: 24px; }
.rounded { border-radius: 15px; }
.shadow { box-shadow: 0 3px 18px 0 rgba(26,54,93,0.09); }
.text-center { text-align: center !important; }

/* --- VISUAL HIERARCHY --- */
.section, .card, .testimonial-card, .feature-item, .text-section {
  margin-bottom: 20px;
}
@media (max-width: 650px) {
  .section, .card, .testimonial-card, .feature-item, .text-section { margin-bottom: 13px; }
}

/* --- COLORS --- */
.bg-primary { background: #1A365D!important; color:#fff!important; }
.bg-secondary { background: #52B788!important; color:#fff!important; }
.bg-accent { background: #F0F5F9!important; color:#1A365D!important; }
.text-primary { color: #1A365D!important; }
.text-secondary { color: #52B788!important; }
.text-accent { color: #F0F5F9!important; }

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
  width: 9px; background: #F0F5F9;
}
::-webkit-scrollbar-thumb {
  background: #52B788; border-radius: 16px;
}

/* --- ANIMATIONS --- */
.cta-button, button, .card, .testimonial-card, .feature-item, .mobile-menu, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.13s, background 0.17s, color 0.18s, transform 0.26s, border 0.13s;
}
.card, .testimonial-card { transition: box-shadow 0.13s; }

/* --- RESPONSIVE -- */
@media (max-width: 1110px) {
  .container { max-width: 94vw; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.05rem; }
}
