/* CSS RESET & NORMALIZATION (MOBILE FIRST) */
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;
}
body {
    line-height: 1.5;
    background: #fff;
    color: #121212;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 0.01em;
    min-height: 100vh;
}
img {
    max-width: 100%;
    display: block;
}
a {
  color: #13397C;
  text-decoration: none;
  transition: color 0.16s;
}
a:hover, a:focus {
  color: #000;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 12px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #111;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem; /* 40px */
  line-height: 1.2;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem; /* 24px */
  margin-bottom: 14px;
}
h4 {
  font-size: 1.125rem;
}
p, .text-section {
  color: #232323;
}
p {
  margin-bottom: 16px;
}
strong {
  color: #121212;
  font-weight: 700;
}

/* MAIN LAYOUT CONTAINERS & FLEXBOX */
.container {
  width: 100%;
  max-width: 1080px;
  padding: 0 18px;
  margin: 0 auto;
  box-sizing: border-box;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 24px 0 rgba(24,24,30,0.07);
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: #f7f7f7;
    border-radius: 12px;
    box-shadow: 0 2px 18px 0 rgba(44,44,60,0.08);
    padding: 24px;
    transition: box-shadow 0.18s, transform 0.18s;
    flex: 1 1 280px;
    min-width: 240px;
}
.card:hover {
    box-shadow: 0 4px 32px 0 rgba(20,20,25,0.13);
    transform: translateY(-2px) scale(1.01);
}
.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 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 24px;
    background: #FAFAFA;
    border-radius: 12px;
    box-shadow: 0 1px 12px 0 rgba(0,0,0,0.07);
    margin-bottom: 20px;
    border: 1.5px solid #E2E2E7;
    max-width: 500px;
    color: #13202a;
}
.testimonial-card span {
    font-size: 1rem;
    color: #333;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    margin-top: 8px;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: .04em;
    padding: 12px 30px;
    font-size: 1.125rem;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 1px 8px 0 rgba(30,30,40,0.07);
    margin-top: 10px;
    transition: background 0.2s, color 0.17s, box-shadow 0.18s, transform 0.17s;
    border: none;
    outline: none;
    min-width: 160px;
}
.btn-primary {
    background: #111;
    color: #fff;
    border: 1.5px solid #111;
}
.btn-primary:hover, .btn-primary:focus {
    background: #fff;
    color: #111;
    border-color: #13397C;
    box-shadow: 0 2px 8px 0 rgba(19,57,124,0.08);
    transform: translateY(-1px);
}
.btn-secondary {
    background: #fff;
    color: #13397C;
    border: 2px solid #13397C;
}
.btn-secondary:hover, .btn-secondary:focus {
    background: #13397C;
    color: #fff;
    box-shadow: 0 3px 16px 0 rgba(19,57,124,0.12);
    transform: translateY(-1px);
}

/* NAVIGATION BAR & HEADER */
header {
    position: relative;
    background: #fff;
    box-shadow: 0 1.5px 8px 0 rgba(22,22,28,0.05);
    z-index: 100;
}
.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    padding: 18px 0 18px;
}
.main-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #21242b;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.18s, color 0.15s;
}
.main-nav a.btn-primary { margin-left: 16px; }
.main-nav a:hover, .main-nav a:focus {
    background: #EEE;
    color: #111;
}
.main-nav img {
    height: 34px;
    width: auto;
    margin-right: 10px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 201;
    background: #fff;
    border: 1.5px solid #111;
    color: #111;
    font-size: 2rem;
    border-radius: 6px;
    padding: 3px 9px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #13397C;
    color: #fff;
    box-shadow: 0 2px 18px 0 rgba(19,57,124,0.08);
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(22, 22, 27, 0.94);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(-102vw);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.23s cubic-bezier(.65,.05,.36,1.02), opacity 0.17s;
}
.mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}
.mobile-menu-close {
    align-self: flex-end;
    margin: 19px 28px 7px 0;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 210;
    transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    color: #13397C;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 40px 34px 18px 28px;
    gap: 18px;
    width: 100%;
}
.mobile-nav a {
    color: #FAFAFA;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 12px;
    border-radius: 6px;
    transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #13397C;
    color: #fff;
}

/* Hide navigation on mobile, show mobile menu toggle */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}


/* FOOTER & FOOTER NAV */
footer {
    background: #FAFAFA;
    border-top: 1.5px solid #E0E0E0;
    padding: 34px 0 18px 0;
    margin-top: 38px;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin: 14px 0 8px 0; 
}
.footer-nav a {
    color: #6C6C6C;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
    color: #13397C;
}
footer img {
    height: 29px;
    width: auto;
}
footer .text-section {
    color: #444;
    font-size: 1rem;
    margin-top: 10px;
}


/* COOKIES CONSENT BANNER & MODAL */
.cookie-consent-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 500;
    width: 100vw;
    background: #23242A;
    color: #fff;
    box-shadow: 0 -6px 24px 0 rgba(0,0,0,0.11);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 24px 6vw 18px 19px;
    font-size: 1.08rem;
    font-family: 'Roboto', Arial, sans-serif;
    transition: transform 0.23s, opacity 0.14s;
    opacity: 1;
    transform: translateY(0);
}
.cookie-consent-banner.hide {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}
.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.cookie-btn {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    border-radius: 7px;
    border: none;
    padding: 9px 22px;
    margin-left: 4px;
    margin-right: 2px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.16s, color 0.14s;
}
.cookie-btn-accept {
    background: #13397C;
    color: #fff;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
    background: #fff;
    color: #13397C;
    border:1.5px solid #13397C;
}
.cookie-btn-reject {
    background: #fff;
    color: #790000;
    border:1.5px solid #790000;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
    background: #23242A;
    color: #fff;
    border:1.5px solid #fff;
}
.cookie-btn-settings {
    background: transparent;
    color: #fff;
    border: 1.5px solid #fff;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
    background: #FAFAFA;
    color: #13202a;
}
/* Cookie Modal (Overlay) */
.cookie-modal-backdrop {
    position: fixed;
    left: 0; top: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgba(20,20,20,0.67);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 501;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.19s;
}
.cookie-modal-backdrop.open {
    opacity: 1;
    pointer-events: all;
}
.cookie-modal {
    background: #fff;
    color: #121212;
    padding: 38px 32px 32px 32px;
    border-radius: 16px;
    min-width: 315px;
    max-width: 90vw;
    box-shadow: 0 2px 36px 0 rgba(44,44,60,0.17);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: 'Roboto', Arial, sans-serif;
    max-width: 440px;
}
.cookie-modal-close {
    position: absolute;
    right: 18px; top: 18px;
    font-size: 1.67rem;
    background: transparent;
    color: #111;
    border: none;
    cursor: pointer;
    transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
    color: #13397C;
}
.cookie-category {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 13px;
}
.cookie-category label {
    flex: 1;
    font-size: 1.08rem;
    color: #111;
    font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-toggle {
    width: 36px; height: 22px;
    background: #EEE;
    border-radius: 12px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
}
.cookie-toggle input {
    opacity: 0;
    width: 0; height: 0;
}
.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 3px; left: 3px;
    width: 16px; height: 16px;
    background: #FFF;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
    transition: left 0.16s;
}
.cookie-toggle input:checked ~ .cookie-slider {
    left: 17px;
    background: #13397C;
}

.essential-cookie-label {
    color: #4b4b4b;
    font-style: italic;
    font-size: 0.97rem;
}

/* MONOCHROME SOPHISTICATED GENERAL STYLE */
body, html {
    background: #F5F7FA;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.text-section {
    font-size: 1.09rem;
    color: #202124;
    line-height: 1.7;
    background: none !important;
}

/* ICON LISTS */
section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}
section ul li {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    color: #21242b;
    font-size: 1.13rem;
    margin-bottom: 19px;
    padding-bottom: 3px;
    border-bottom: 1px solid #E7E7EA;
    min-height: 38px;
}
section ul li img {
    width: 28px;
    height: 28px;
    filter: grayscale(1) brightness(0.22);
}
section ul li strong {
    color: #111;
}

/* Responsive tables (potential future) */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 28px;
}
th, td {
    padding: 12px;
    border-bottom: 1.5px solid #E2E2E7;
    text-align: left;
}
th {
    background: #F7F7FA;
}

/* Forms (for contact page/future) */
input, textarea, select {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.08rem;
    padding: 11px 14px;
    border-radius: 7px;
    border: 1.5px solid #D2D2D9;
    margin-bottom: 16px;
    outline: none;
    background: #FAFAFB;
    color: #111;
    width: 100%;
    transition: border 0.16s;
    box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
    border-color: #13397C;
}
label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
    color: #10213d;
}

/* Spacing and Utility */
.mt-10 { margin-top: 10px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-32 { margin-bottom: 32px !important; }
.gap-10 { gap: 10px !important; }

/* LISTS & LISTS IN TEXT SECTIONS */
.text-section ul {
    list-style: disc inside;
    color: #3f3f41;
    padding-left: 26px;
}
.text-section ul li {
    border-bottom: none;
    gap: 7px;
    font-size: 1.09rem;
    padding-bottom: 1px;
}
.text-section h2, .text-section h3, .text-section h4 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: #19191A;
}

/* HOVER/ACTIVE LINK MICROINTERACTION */
a:focus {
    outline: 1.5px dashed #13397C;
    outline-offset: 1.5px;
}

/* Hide outline for mouse, keep for keyboard */
:focus:not(:focus-visible) { outline: none; }


/* MEDIA QUERIES RESPONSIVE (MOBILE FIRST, SM TO XL) */
@media (max-width: 768px) {
    h1 { font-size: 1.65rem; }
    h2 { font-size: 1.24rem; }
    .container { padding: 0 7px; }
    .section, section { padding: 24px 2vw 24px 2vw; margin-bottom: 38px; }
    .testimonial-card { padding: 16px 9px; }
    .card { padding: 14px 5px; }
    .content-grid, .card-container { gap: 12px; }
    .footer-nav { gap: 8px; }
    .content-wrapper { gap: 11px; }
    .main-nav img, footer img { height: 27px; }
    .mobile-menu-close { margin: 12px 12px 6px 0; font-size: 1.72rem; }
    .mobile-nav { padding: 28px 14px 8px 18px; gap: 12px; }
    .cookie-consent-banner { padding: 17px 5vw 10px 8px; font-size: 0.97rem; gap: 13px; }
    .cookie-modal { padding: 16px 7vw 18px 7vw; }
    .cookie-modal-close { top: 9px; right: 9px; font-size: 1.29rem; }
    .btn-primary, .btn-secondary { font-size: 1rem; min-width: 120px; padding: 9px 18px; }
    .text-image-section {
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;
    }
}
@media (min-width: 900px) {
    .text-image-section { flex-direction: row; gap: 34px; }
}

/* VISUAL HIERARCHY & CONTRAST */
.card, .testimonial-card {
    border: 1.5px solid #CCCCCF;
}
.card {
  background: #F7F8FB;
}
section {
  background: #FCFCFD;
}

/* SHADOWS & MICRO-INTERACTIONS */
section, .card, .testimonial-card {
  box-shadow: 0 2px 16px 0 rgba(32,32,32,0.08);
  transition: box-shadow 0.18s, background 0.13s;
}
.card:hover, .btn-primary:active, .btn-secondary:active {
  box-shadow: 0 4px 32px 0 rgba(10,10,15,0.11);
}

/* ACCENT COLOR FOR VISUAL EMPHASIS*/
mark, .accent {
    background: none;
    color: #B45300;
    font-weight: 700;
}

/* Miscellaneous */
::-webkit-scrollbar { width: 8px; background: #E5E8F0; }
::-webkit-scrollbar-thumb { background: #C7CAD0; border-radius: 8px; }

/* --- IMPORTANT: NO CSS GRID USED, ALL LAYOUT IS FLEXBOX --- */
/* --- END OF STYLE.CSS --- */
