/* 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,
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;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
}
body {
  background: #f5f5f5;
  color: #181818;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 1.25em;
}
a {
  color: #24536B;
  text-decoration: none;
  transition: color .2s;
}
a:hover,
a:focus {
  color: #111;
  text-decoration: underline;
}

/* TYPOGRAPHY SCALE */
h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #010101;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #2d2d2d;
}
strong {
  font-weight: 600;
  color: #181818;
}
p {
  font-size: 1.0625rem;
  margin-bottom: 16px;
  color: #222;
}
blockquote {
  font-style: italic;
  color: #222;
  padding-left: 16px;
  border-left: 3px solid #222;
  margin-bottom: 12px;
}

/* CONTAINER & MAIN LAYOUT */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

main {
  margin-top: 32px;
  margin-bottom: 48px;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(30,30,30,.07), 0 1.5px 10px 0 rgba(60,60,60,.05);
}

.hero-section {
  background: #f8fafb;
  padding: 60px 0 48px 0;
  margin-bottom: 48px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 28px -14px rgba(25, 25, 25, 0.09);
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  padding: 0 0 20px 0;
}

.cta-section {
  display: flex;
  background: #292929;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 12px rgba(31,31,31, .06);
  padding: 40px 0;
  margin-bottom: 0;
}
.cta-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.cta-section .btn-primary {
  background: #fff;
  color: #181818;
  border: 2px solid #fff;
}
.cta-section .btn-primary:hover,
.cta-section .btn-primary:focus {
  background: #181818;
  color: #fff;
  border: 2px solid #fff;
}
.secondary-links a {
  color: #e0e0e0;
  font-size: 1rem;
  padding: 2px 4px;
  transition: color .2s;
}
.secondary-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* FLEXBOX LAYOUTS & GAPS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 32px 0 0 0;
  list-style: none;
}
.feature-grid > li, .feature-grid > div {
  background: #fafbfd;
  border-radius: 16px;
  box-shadow: 0 2.5px 13px 0 rgba(50,50,50,.08);
  flex: 1 1 260px;
  min-width: 225px;
  max-width: 300px;
  padding: 30px 22px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow .22s, background .22s;
}
.feature-grid > li:hover, .feature-grid > div:hover {
  background: #fff;
  box-shadow: 0 6px 20px 4px rgba(20,20,20,.09);
}
.feature-grid h3 {
  margin: 0 0 4px 0;
  color: #222;
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 9px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2.5px 10px 0 rgba(50,50,50,.08);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 18px 22px;
}

.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;
  margin-bottom: 22px;
}

.testimonials-section {
  background: #f6f8f9;
  border-radius: 32px;
  padding: 40px 0 40px 0;
  margin-bottom: 56px;
}
.testimonials-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 22px;
  box-shadow: 0 2.5px 10px 0 rgba(43,43,43,.08);
  border: 1px solid #e2e2e2;
  transition: box-shadow .18s;
  max-width: 590px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(24,24,24,0.10);
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #222;
  opacity: .88;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* MAP, CERTIFICATIONS, ETC */
.map-location {
  margin-top: 16px;
  background: #eeeeee;
  color: #2d2d2d;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 1rem;
}
.certifications {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-top: 19px;
}
.certifications img {
  width: 44px;
  height: 44px;
}

/* BUTTONS */
.btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  background: #111;
  color: #fff;
  font-size: 1.12rem;
  padding: 15px 36px;
  border: none;
  border-radius: 24px;
  letter-spacing: .04em;
  box-shadow: 0 1.5px 6px 0 rgba(38,38,38,.045);
  transition: background .21s, color .21s, box-shadow .21s, transform .19s;
  cursor: pointer;
  outline: none;
  margin-top: 12px;
  margin-bottom: 8px;
  display: inline-block;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #24536B;
  color: #fff;
  box-shadow: 0 4px 20px 2px rgba(32,32,32,.13);
  transform: translateY(-2px) scale(1.022);
  text-decoration: none;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 1.5px 16px 0 rgba(33,33,33,.05);
  padding: 0;
  z-index: 1000;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
header a img {
  height: 44px;
  margin-right: 18px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #222;
  font-size: 1.06rem;
  text-decoration: none;
  transition: color .18s;
  letter-spacing: 0.01em;
  padding: 3px 6px;
}
header nav a:hover,
header nav a:focus {
  color: #24536B;
}
header .btn-primary {
  margin-left: 24px;
  font-size: 1.02rem;
  padding: 11px 30px;
  background: #24536B;
  color: #fff;
  border-radius: 20px;
  border: none;
}
header .btn-primary:hover,
header .btn-primary:focus {
  background: #181818;
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #181818;
  cursor: pointer;
  line-height: 1;
  z-index: 1201;
  padding: 8px;
  transition: color .2s;
}
.mobile-menu-toggle:focus {
  color: #24536B;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(15, 15, 15, 0.98);
  color: #fff;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform .34s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 22px 0px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: color .2s;
  z-index: 1202;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #47A15D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin: 50px 0 0 0;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.37rem;
  color: #fff;
  font-weight: 600;
  padding: 15px 0;
  width: 100%;
  text-align: center;
  transition: color .18s, background .12s;
  border-radius: 8px;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #F5F7FA;
  background: #24536B;
}
@media (max-width: 1024px) {
  header nav {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    margin-left: 16px;
  }
  header .btn-primary {
    margin-left: 12px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}

/* FOOTER */
footer {
  background: #181818;
  color: #fff;
  padding: 44px 0 22px 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 46px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .97rem;
}
.footer-brand img {
  width: 56px;
  height: auto;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #e4e4e4;
  font-size: 1rem;
  transition: color .2s;
  text-decoration: none;
}
.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.social-media {
  display: flex;
  gap: 18px;
}
.social-media a img {
  width: 30px;
  height: 30px;
  filter: grayscale(100%);
  opacity: .75;
  transition: filter .18s, opacity .17s;
}
.social-media a:hover img {
  filter: grayscale(10%);
  opacity: 1;
}
footer small {
  color: #b5b5b5;
  font-size: .98em;
  margin-top: 15px;
}

/* LISTS, ICONS, ETC */
ul li, ol li {
  margin-bottom: 10px;
  line-height: 1.7;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
ul li img {
  width: 22px;
  height: 22px;
  display: inline-block;
}

/* TEXT SECTIONS */
.text-section {
  background: #fbfbfb;
  padding: 24px 18px;
  border-radius: 10px;
  margin-bottom: 24px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #252525;
  color: #fff;
  font-size: 1rem;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 24px;
  box-shadow: 0 -4px 22px 0 rgba(0,0,0,.18);
  opacity: .98;
  transition: transform .28s;
}
.cookie-banner .cookie-text {
  flex: 1 1 0;
  font-size: 1.02rem;
  color: #f3f3f3;
  margin-right: 14px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  background: #fff;
  color: #181818;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  padding: 9px 22px;
  cursor: pointer;
  margin: 0 2px;
  font-size: 1rem;
  transition: background .18s, color .18s, box-shadow .19s;
  box-shadow: 0 1px 6px 0 rgba(50,50,50,0.06);
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #24536B;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #ececec;
  color: #181818;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #181818;
  color: #fff;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15,15,15,0.67);
  z-index: 2020;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .3s;
}
.cookie-modal .cookie-modal-box {
  background: #fff;
  color: #222;
  border-radius: 22px;
  max-width: 420px;
  width: 94%;
  padding: 34px 26px 22px 26px;
  box-shadow: 0 8px 40px 0 rgba(33,33,33,.18);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #333;
  cursor: pointer;
  z-index: 10;
  transition: color .18s;
}
.cookie-modal-close:hover {
  color: #24536B;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #e7e7e7;
  font-size: 1.05rem;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  color: #181818;
}
.cookie-category input[type="checkbox"] {
  accent-color: #24536B;
  width: 18px;
  height: 18px;
}
.cookie-category .essential {
  color: #5e5e5e;
  font-size: .97em;
  margin-left: 2px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 9px 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  background: #24536B;
  color: #fff;
  transition: background .17s, color .17s;
}
.cookie-modal-actions button.reject {
  background: #ececec;
  color: #222;
}
.cookie-modal-actions button.reject:hover {
  background: #222;
  color: #fff;
}
.cookie-modal-actions button:hover,
.cookie-modal-actions button:focus {
  background: #47A15D;
  color: #fff;
}

/* ANIMATION KEYFRAMES */
@keyframes mobileMenuIn {
  0% { transform: translateX(-100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes bannerSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.mobile-menu.open {
  animation: mobileMenuIn .28s cubic-bezier(.66,0,.22,1) 1;
}
.cookie-modal {
  animation: modalFadeIn .25s cubic-bezier(.66,0,.22,1) 1;
}
.cookie-banner {
  animation: bannerSlideUp .28s cubic-bezier(.66,0,.22,1) 1;
}

/* ACCESSIBILITY FOCUS STYLE */
a:focus, button:focus, .btn-primary:focus, .cookie-btn:focus, .mobile-menu-close:focus {
  outline: 2px solid #24536B !important;
  outline-offset: 2px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
  }
  .footer-brand, .footer-nav, .social-media {
    margin-bottom: 16px;
  }
  .footer-brand img {
    width: 48px;
  }
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .cta-section {
    border-radius: 20px;
    padding: 30px 0;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.22rem; }
  .hero-section { padding: 44px 0 32px 0; border-radius: 0 0 25px 25px; }
  .cta-section { padding: 24px 0; border-radius: 10px; }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > li, .feature-grid > div {
    min-width: 0;
    max-width: 100%;
    padding: 18px 12px 15px 12px;
    font-size: 1rem;
  }
  .testimonials-section { padding: 24px 0 20px 0; border-radius: 13px; }
  .testimonials-section .content-wrapper {
    gap: 14px;
  }
  .testimonial-card {
    padding: 13px;
    border-radius: 8px;
    max-width: 100%;
  }
  .section {
    margin-bottom: 32px;
    padding: 24px 8px;
    border-radius: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .map-location {
    padding: 9px;
    font-size: .98rem;
  }
  .cta-section .content-wrapper {
    gap: 12px;
    padding: 0 2px;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 6px;
  }
  .hero-section {
    padding: 21px 0 18px 0;
  }
  .btn-primary, header .btn-primary, .cookie-banner .cookie-btn {
    padding: 10px 16px;
    font-size: .98rem;
    border-radius: 14px;
  }
  .cookie-modal .cookie-modal-box {
    padding: 15px 6px 16px 6px;
  }
}
