/* ----------------------------------
   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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: #F1FAEE;
  color: #1D3557;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #1D3557;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover,
a:focus {
  color: #E63946;
  outline: none;
}
ul, ol {
  margin-left: 1.4em;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1D3557;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
p {
  margin-bottom: 16px;
}
strong, b {
  font-weight: 600;
}
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(46,76,109,0.06);
  display: block;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section {
  padding: 0 0 20px 0;
  gap: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(29,53,87,0.08);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.hero-section {
  background: #1D3557;
  color: #fff;
  width: 100%;
  padding: 60px 0;
  border-radius: 0 0 22px 22px;
}
.hero-section h1,
.hero-section h2 {
  color: #fff;
}
.hero-section .cta-btn {
  margin-top: 26px;
}
/* ----------------------------------
   HEADER & NAVIGATION
---------------------------------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(46,76,109,0.04);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  min-height: 72px;
}
.logo-link img {
  height: 46px;
  width: auto;
  display: block;
}
.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.desktop-nav a {
  padding: 8px 0;
  transition: color 0.16s, border-color 0.16s;
  color: #1D3557;
  border-bottom: 2px solid transparent;
  position: relative;
}
.desktop-nav a:hover,
.desktop-nav a:focus {
  border-color: #E63946;
  color: #E63946;
}
.cta-btn {
  background: #1D3557;
  color: #fff;
  border-radius: 36px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 600;
  padding: 14px 36px;
  box-shadow: 0 2px 12px 0 rgba(29,53,87,0.08);
  display: inline-block;
  border: none;
  cursor: pointer;
  margin-left: 32px;
  letter-spacing: 0.02em;
  transition: background 0.22s, color 0.17s, transform 0.14s;
  outline: none;
  text-align: center;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #E63946;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #1D3557;
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 22px;
  z-index: 1390;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus {
  color: #E63946;
}
/* ----------------------------------
   MOBILE MENU
---------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(29,53,87,0.98);
  color: #fff;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.73,.09,.46,1.25);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  transition: transform 0.32s cubic-bezier(.73,.09,.46,1.25);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  cursor: pointer;
  margin-top: 28px;
  margin-left: 22px;
  margin-bottom: 16px;
  align-self: flex-start;
  z-index: 1600;
  transition: color 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #E63946;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 32px;
  margin-top: 14px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #fff;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.17s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #E63946;
  border-bottom: 2px solid #E63946;
}
@media (max-width: 1070px) {
  .container {
    max-width: 880px;
    padding: 0 9px;
  }
  .content-wrapper {
    max-width: 99%;
  }
  .desktop-nav {
    gap: 18px;
  }
  .cta-btn {
    margin-left: 14px;
    font-size: 16px;
    padding: 13px 26px;
  }
}
@media (max-width: 900px) {
  section, .section {
    padding: 33px 8px;
  }
  .container {
    max-width: 98vw;
    padding: 0 5px;
  }
  .hero-section {
    padding: 38px 0 44px 0;
  }
}
@media (max-width: 820px) {
  .desktop-nav,
  .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    padding-right: 7px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.11rem;
  }
  .hero-section {
    min-height: 60vw;
    padding: 28px 0 23px 0;
    border-radius: 0 0 12px 12px;
  }
  .card {
    padding: 16px 10px;
    min-width: 130px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 2px;
    padding-right: 2px;
  }
  .content-wrapper {
    max-width: 99vw;
    gap: 9px;
    padding: 0 2px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    min-width: 0;
  }
  .card-container, .content-grid, .services-list {
    flex-direction: column;
    gap: 17px;
  }
  .hero-section {
    padding: 29px 0 33px 0;
  }
}
/* ----------------------------------
   SERVICES & CARDS
---------------------------------- */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0;
}
.service-item {
  background: #F1FAEE;
  border: 1px solid #dde5ed;
  border-radius: 16px;
  flex: 1 1 255px;
  min-width: 205px;
  max-width: 330px;
  padding: 22px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(46,76,109,0.10);
  transition: box-shadow 0.22s, border 0.19s, transform 0.19s;
  position: relative;
}
.service-item:hover,
.service-item:focus-within {
  box-shadow: 0 4px 32px rgba(46,76,109,0.13);
  border: 1.5px solid #1D3557;
  transform: translateY(-2px) scale(1.01);
  z-index: 2;
}
.price {
  color: #1D3557;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 8px;
}
.card {
  border: 1px solid #dde5ed;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* ----------------------------------
   TESTIMONIALS
---------------------------------- */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 0 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  color: #1D3557;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(29,53,87,0.09);
  padding: 20px 28px 21px 20px;
  min-width: 235px;
  max-width: 380px;
  border: 1px solid #dde5ed;
}
.testimonial-card p {
  font-size: 1.08rem;
  margin-bottom: 8px !important;
  color: #1D3557;
  font-weight: 500;
}
.testimonial-name {
  font-size: 0.98rem;
  color: #4b5875;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
/* Proper contrast: dark text, light bg */
@media (max-width: 830px) {
  .testimonials-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 97vw;
  }
}
/* ----------------------------------
   FOOTER
---------------------------------- */
footer {
  width: 100%;
  background: #1D3557;
  color: #fff;
  padding: 44px 0 36px 0;
  margin-top: 48px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}
.footer-logo img {
  width: 54px;
  height: auto;
  display: block;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #F1FAEE;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 0.97rem;
  transition: color 0.19s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #E63946;
}
.footer-contact ul {
  list-style: none;
  font-size: 0.95rem;
  color: #F1FAEE;
}
.footer-contact li {
  margin-bottom: 7px;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-left: 14px;
  }
  footer {
    padding: 28px 0 22px 0;
  }
  .footer-logo {
    margin-bottom: 8px;
  }
}
/* ----------------------------------
   TYPOGRAPHY & GENERAL SPACING
---------------------------------- */
body, p, ul, ol, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
h1, h2, h3, .logo-link, .footer-nav a, .testimonial-name, .cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
h1 {
  font-size: 2.25rem;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.125rem;
}
p, .content-wrapper ul, .content-wrapper ol {
  font-size: 1rem;
  margin-bottom: 14px;
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.08rem;
  }
  .cta-btn {
    font-size: 0.98rem;
    padding: 11px 16px;
  }
}
/* ----------------------------------
   MICROTRANSACTIONS & BUTTONS
---------------------------------- */
button, .cta-btn {
  transition: background 0.18s, color 0.13s, box-shadow 0.17s, border 0.17s, transform 0.16s;
}
button:focus, .cta-btn:focus {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}
/* ----------------------------------
   COOKIE CONSENT BANNER
---------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #1D3557;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 22px 20px 18px 20px;
  box-shadow: 0 -3px 18px 0 rgba(29,53,87,0.10);
  z-index: 3000;
  font-size: 1rem;
  gap: 25px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.17s, transform 0.23s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 14px;
  margin-left: 14px;
}
.cookie-btn {
  background: #fff;
  color: #1D3557;
  border-radius: 24px;
  border: none;
  padding: 8px 20px;
  margin: 0 1px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.13s, box-shadow 0.18s;
  box-shadow: 0 2px 6px rgba(29,53,87,0.09);
  outline: none;
}
.cookie-btn.cookie-settings {
  background: #E63946;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #E63946;
  color: #fff;
}
.cookie-btn.cookie-settings:hover,
.cookie-btn.cookie-settings:focus {
  background: #fff;
  color: #E63946;
  border: 1.2px solid #E63946;
}
@media (max-width: 720px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 7px 14px 8px;
    font-size: 0.97rem;
    gap: 13px;
  }
  .cookie-consent-banner .cookie-actions {
    flex-direction: row;
    gap: 7px;
    margin-left: 0;
    margin-bottom: 3px;
  }
}
/* Cookie preferences modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3400;
  background: rgba(29,53,87,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.21s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: #1D3557;
  padding: 32px 28px 24px 38px;
  border-radius: 14px;
  box-shadow: 0 2px 32px 0 rgba(29,53,87,0.23);
  min-width: 315px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  animation: cookieModalAppear 0.25s cubic-bezier(.44,.4,.54,1.2);
}
@keyframes cookieModalAppear {
  0%   { transform: scale(0.92) translateY(18px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.23rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1D3557;
  margin-bottom: 6px;
  margin-top: 0;
}
.cookie-preference-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 18px 0 0 0;
}
.cookie-preference-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-preference-label {
  font-size: 1rem;
  color: #1D3557;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.cookie-switch {
  appearance: none;
  outline: none;
  width: 38px;
  height: 20px;
  background: #dde5ed;
  border-radius: 12px;
  position: relative;
  transition: background 0.18s;
  cursor: pointer;
  border: none;
}
.cookie-switch:checked {
  background: #1D3557;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.17s;
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.cookie-switch:checked:before {
  left: 21px;
}
.cookie-modal-close {
  background: none;
  border: none;
  position: absolute;
  right: 17px;
  top: 12px;
  color: #E63946;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #1D3557;
}
.cookie-modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 11px;
}
/* ----------------------------------
   UTILITY CLASSES
---------------------------------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.pt-20 { padding-top: 20px; }
.pb-20 { padding-bottom: 20px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.rounded { border-radius: 9px; }
.shadow {
  box-shadow: 0 2px 18px rgba(29,53,87,0.07);
}
@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 14px 7px 13px 7px;
    min-width: 90vw;
    max-width: 98vw;
  }
  .cookie-modal-content h2 {
    font-size: 1rem;
  }
}
/* ----------------------------------
   MISC
---------------------------------- */
::-webkit-input-placeholder {color: #4b5875;}
::-moz-placeholder {color: #4b5875;}
:-ms-input-placeholder {color: #4b5875;}
::placeholder {color: #4b5875;}
::-webkit-scrollbar {width:8px;background:#e9eff5;}
::-webkit-scrollbar-thumb {background:#dde5ed;border-radius:4px;}

/* ----------------------------------
   END OF STYLE.CSS
---------------------------------- */
