/* ========================== 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 {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #f6f6f6;
  color: #181818;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #181818;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style-position: inside;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: 'Roboto', Arial, sans-serif;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
}

/* ========================== TYPOGRAPHY ========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #111;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.3;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
}
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 0;
}
strong {
  font-weight: 700;
  color: #181818;
}
em {
  color: #235974;
}

/* ========================== LAYOUT ========================== */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(24,24,24,0.06);
  padding: 28px 28px 22px 28px;
  min-width: 260px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(24,24,24,0.17);
  transform: translateY(-6px) scale(1.02);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
.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;
}

/* =================== TESTIMONIALS & FEATURES =================== */
.testimonial-card {
  background: #fff;
  color: #222;
  border-left: 6px solid #181818;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(10,10,10,0.07);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 600px;
  transition: box-shadow 0.2s, border-color 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 38px rgba(16,16,16,0.15);
  border-color: #235974;
}
.testimonial-card p {
  flex: 1;
  font-size: 1.08rem;
  font-style: italic;
  color: #111;
  margin: 0 0 0.35em 0;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #606060;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-left: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* =================== CALL TO ACTION BUTTON ==================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #181818;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  border-radius: 26px;
  border: none;
  outline: none;
  padding: 14px 38px;
  box-shadow: 0 4px 20px rgba(24,24,24,0.13);
  margin-top: 15px;
  margin-bottom: 15px;
  letter-spacing: 0.02em;
  transition: background-color 0.18s, color 0.18s, box-shadow 0.22s, transform 0.13s;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #235974;
  color: #fff;
  box-shadow: 0 8px 34px rgba(35,89,116,0.18);
  transform: scale(1.03);
}

/* =================== HEADER/NAVIGATION ======================= */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(16,16,16,0.07);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 99;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px 0;
  max-width: 1200px;
  margin: 0 auto;
  gap: 18px;
}
header nav > a img {
  height: 42px;
  width: auto;
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 22px;
  list-style: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
header nav ul li {
  line-height: 1;
}
header nav ul a {
  color: #222;
  padding: 6px 4px;
  font-weight: 500;
  transition: color 0.15s, border-bottom 0.12s;
  border-bottom: 2px solid transparent;
}
header nav ul a:hover, header nav ul a:focus {
  color: #235974;
  border-bottom: 2px solid #235974;
}
header nav .cta-btn {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 28px;
}

/* ============== RESPONSIVE BURGER MENU ======================= */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: #fff;
  color: #181818;
  border-radius: 8px;
  border: 1.5px solid #ccc;
  padding: 5px 10px;
  z-index: 200;
  transition: background 0.18s, box-shadow 0.18s, color 0.1s;
  margin-left: 10px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #f4f4f4;
  color: #235974;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #181818ee;
  box-shadow: 0 8px 32px rgba(16,16,16,0.24);
  z-index: 2222;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.59,0.03,0.15,1.1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: #fff;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 18px 26px 6px 0;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.14s, color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #222;
  color: #D3A03A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 22px;
  margin: 36px 0 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.14s, border-color 0.12s;
  width: 180px;
  display: flex;
  align-items: flex-start;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D3A03A;
  border-bottom: 1.5px solid #D3A03A;
}

@media (max-width: 1024px) {
  header nav ul {
    gap: 11px;
    font-size: 0.98rem;
    margin-left: 10px;
  }
}
@media (max-width: 955px) {
  header nav .cta-btn {
    margin-left: 12px;
    font-size: 1rem;
    padding: 11px 18px;
  }
}
@media (max-width: 900px) {
  header nav ul, header nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none!important;
  }
}

/* ======================== MAIN & SECTION SPACING ===================== */
main {
  background: #fafbfc;
  flex: 1;
  min-height: 64vh;
  width: 100%;
  padding-bottom: 50px;
}
section {
  width: 100%;
  background: transparent;
  margin-bottom: 0;
  padding: 0;
}
.section {
  background: #fcfcfc;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(24,24,24,0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

/* ========================== FOOTER =============================== */
footer {
  background: #181818;
  color: #f5f5f5;
  padding: 42px 0 29px 0;
  width: 100%;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-logo img {
  width: 48px;
  height: auto;
}
.footer-menu {
  color: #f7f7f7;
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  justify-content: center;
  margin-bottom: 9px;
}
.footer-menu a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: underline dotted #606060;
  opacity: 0.93;
  transition: color 0.15s, text-decoration-color 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #D3A03A;
  text-decoration-color: #D3A03A;
}
.legal-info p {
  color: #bbbbbb;
  font-size: 0.93rem;
  text-align: center;
}

/* =================== COOKIE CONSENT BANNER ==================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #181818cc;
  color: #fff;
  padding: 24px 10px 18px 10px;
  box-shadow: 0 -4px 24px rgba(24, 24, 24, 0.18);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.3s, opacity 0.29s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
.cookie-btn {
  min-width: 130px;
  padding: 11px 21px;
  background: #fff;
  color: #181818;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  margin-right: 3px;
  box-shadow: 0 2px 8px rgba(24,24,24,0.14);
  transition: background 0.19s, color 0.14s, box-shadow 0.18s, outline-color 0.13s;
  outline: 2px solid transparent;
}
.cookie-btn.cookie-accept {
  background: #235974;
  color: #fff;
}
.cookie-btn.cookie-accept:hover, .cookie-btn.cookie-accept:focus {
  background: #D3A03A;
  color: #181818;
  box-shadow: 0 6px 16px rgba(211,160,58,0.18);
}
.cookie-btn.cookie-reject {
  background: #eee;
  color: #222;
}
.cookie-btn.cookie-reject:hover, .cookie-btn.cookie-reject:focus {
  background: #e6e6e6;
  color: #666;
}
.cookie-btn.cookie-settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
  box-shadow: none;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  color: #D3A03A;
  border-color: #D3A03A;
  background: transparent;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5100;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #181818dd;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadein 0.21s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #f5f5f5;
  color: #111;
  border-radius: 22px;
  box-shadow: 0 10px 48px rgba(24,24,24,0.21);
  padding: 36px 30px 26px 30px;
  min-width: 295px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  margin-bottom: 14px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #235974;
  width: 22px;
  height: 22px;
}
.cookie-modal .cookie-btns-modal {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .cookie-btn {
  min-width: 90px;
  padding: 8px 17px;
  font-size: 1rem;
}
.cookie-modal .cookie-essential-label {
  font-size: 1rem;
  color: #444;
  font-weight: 600;
}
@keyframes fadein {
  from { opacity: 0; } to { opacity: 1; }
}

/* ========================== FORMS (if any) ========================== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #111;
  border: 1.5px solid #c9c9c9;
  border-radius: 8px;
  background: #fff;
  padding: 10px 13px;
  margin-bottom: 18px;
  outline: 2px solid transparent;
  transition: border 0.18s, outline-color 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #235974;
  outline-color: #23597433;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
  font-weight: 500;
}

/* ======================= RESPONSIVE STYLES =========================== */
@media (max-width: 1100px){
  .container{
    max-width: 98vw;
    padding: 0 8px;
  }
  .section{
    padding: 32px 8px;
  }
}
@media (max-width: 900px){
  .container{max-width: 100vw; padding: 0 0.5vw;}
  h1{font-size: 2rem;}
  h2{font-size: 1.3rem;}
  .section{padding: 32px 4px;}
}
@media (max-width: 768px){
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .testimonial-card{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 10px;
  }
  header nav {
    gap: 8px;
    padding: 12px 0;
  }
  .footer-logo img {
    width: 34px;
  }
  .card{
    padding: 18px 10px 13px 10px;
    min-width: 160px;
    border-radius: 10px;
  }
}
@media (max-width: 530px) {
  h1{font-size:1.1rem}
  h2{font-size:1rem}
  .footer-menu {
    font-size: 0.9rem;
    flex-direction: column;
    gap: 2px 0;
  }
  .cookie-banner {
    font-size: 0.94rem;
    padding: 17px 2px 7px 2px;
    gap: 10px;
  }
}

/* ================== MISC: MONOCHROME & BRAND EFFECTS =================== */
body {
  background: #fafbfc;
}
main, .section, .container, .text-section, .content-wrapper {
  /* white backgrounds, high contrast, subtle dividers */
}
hr {
  border: none;
  border-top: 1.5px solid #e2e2e2;
  margin: 24px 0;
}
::-webkit-scrollbar {
  width: 10px;
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* ================ VISUAL HIERARCHY & HOVER TWEAKS ================== */
section:not(:last-child), .card:not(:last-child), .testimonial-card:not(:last-child) {
  margin-bottom: 24px;
}
.card, .testimonial-card {
  border: 1.5px solid #e6e6e6;
  box-shadow: 0 2px 8px rgba(35,89,116,0.04);
  background: #fff;
}
.card:hover, .card:focus {
  border-color: #235974;
  box-shadow: 0 8px 22px rgba(35,89,116,0.15);
}

/* =================== MONOCHROME FOCUS ========================= */
header, .section, .card, .testimonial-card {
  background: #fff;
  color: #111;
}
body, main {
  background: #f6f6f6;
}

.blockquote, blockquote {
  border-left: 3px solid #181818;
  margin: 16px 0;
  padding: 8px 16px;
  font-style: italic;
  color: #333;
  background: #f3f3f3;
  border-radius: 10px;
}

/* =================== ACCESSIBILITY HIGHLIGHTS ================= */
:focus-visible {
  outline: 3px solid #D3A03A;
  outline-offset: 2px;
}

/* =================== Z-INDEX LAYERS ========================= */
header { z-index: 99; }
footer { z-index: 90; }
.mobile-menu { z-index: 2222; }
.cookie-banner { z-index: 5000; }
.cookie-modal-overlay { z-index: 5100; }

/* ===================== END ===================== */