/* --- CLEARFIXTURES MONOCHROME SOPHISTICATED STYLE.CSS --- */
/* RESET & BASELINE ---------------------------------------------------------- */
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, figcaption, figure, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #181B1F;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*::selection {
  background: #1B4268;
  color: #fff;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1B4268;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #000;
}
ul, ol {
  list-style: none;
}

/* TYPOGRAPHY --------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #181B1F;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 32px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 500;
}
p, .text-section, .content-wrapper, .content-grid {
  font-size: 1rem;
  color: #222;
  line-height: 1.7;
}
.text-section {
  margin-bottom: 20px;
}
strong {
  color: #000;
  font-weight: 600;
}

/* LAYOUT: CONTAINER & SECTIONS --------------------------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section,
main section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section:last-child, main section:last-child {
  margin-bottom: 0;
}

/* FLEX PATTERNS ------------------------------------------------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(23, 27, 31, 0.06);
  position: relative;
  padding: 32px 28px;
  min-width: 260px;
  flex: 1 1 320px;
  transition: box-shadow 0.18s cubic-bezier(.4,0,.2,1);
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(23, 27, 31, 0.15);
}
.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;
  align-items: center;
  gap: 20px;
  background: #F6F8FA;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  color: #181B1F;
  padding: 20px;
  margin-bottom: 20px;
  transition: background 0.2s, box-shadow 0.2s;
  border-left: 4px solid #1B4268;
}
.testimonial-card span {
  font-weight: 700;
  color: #000;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* NAVIGATION --------------------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #E5E8EC;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 40;
}
header .container {
  padding-top: 0;
  padding-bottom: 0;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
nav ul li {
  margin-bottom: 0;
}
nav a img {
  height: 36px;
  margin-right: 30px;
}
nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1B4268;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
nav ul li a.active, nav ul li a:focus, nav ul li a:hover {
  color: #000;
  border-bottom: 2px solid #1B4268;
}
.btn {
  padding: 12px 32px;
  border-radius: 8px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.16s, color 0.18s, box-shadow 0.18s;
  display: inline-block;
  background: none;
}
.btn-primary {
  color: #fff;
  background: #1B4268;
  box-shadow: 0 2px 10px 0 rgba(27,66,104,0.08);
}
.btn-primary:hover, .btn-primary:focus {
  background: #000;
  color: #FFD600;
  box-shadow: 0 4px 24px 0 rgba(27,66,104,0.15);
}
.btn-secondary {
  color: #181B1F;
  background: #F6F8FA;
  border: 1px solid #D2D5DA;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #fff;
  color: #1B4268;
  border: 1px solid #1B4268;
}

/* HERO / ABOUT ------------------------------------------------------------- */
.hero {
  background: #181B1F;
  color: #fff;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 32px 0 rgba(23,27,31,0.09);
  margin-bottom: 60px;
  padding: 70px 20px 60px 20px;
}
.hero .content-wrapper {
  gap: 22px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 16px;
}
.hero p {
  color: #ECECEC;
}
.hero .btn-primary {
  background: #FFD600;
  color: #181B1F;
  box-shadow: 0 4px 24px 0 rgba(255,214,0,0.10);
}
.hero .btn-primary:hover, .hero .btn-primary:focus {
  background: #fff;
  color: #1B4268;
}

/* SERVICE LIST & FEATURES -------------------------------------------------- */
section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
section ul li {
  background: #FAFAFB;
  border-radius: 10px;
  flex: 1 1 270px;
  min-width: 220px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.03);
  padding: 18px 22px 18px 22px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  transition: box-shadow 0.18s, border-color 0.18s;
  border-left: 4px solid #1B4268;
}
section ul li:hover {
  box-shadow: 0 8px 26px rgba(27,66,104,0.11);
}
section ul li img {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}
section ul li h3, section ul li h2 {
  margin-bottom: 8px;
}
section ul li span {
  margin-top: 8px;
  display: inline-block;
  font-weight: 600;
  color: #1B4268;
  background: #fff;
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 1rem;
}

/* ARTICLE & TAGS ----------------------------------------------------------- */
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.article-list article {
  background: #F5F6F9;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(23,27,31,0.09);
  padding: 30px 28px;
  flex: 1 1 300px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 4px solid #1B4268;
}
.article-list article h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.article-list article a {
  font-size: 1rem;
  color: #1B4268;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.18s;
  margin-top: 8px;
}
.article-list article a:hover {
  color: #000;
}
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.category-tags span {
  color: #222;
  font-size: 0.98rem;
  background: #F6F8FA;
  padding: 4px 16px;
  border-radius: 20px;
  border: 1px solid #ECECEC;
}

/* TABLES ------------------------------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 32px;
  font-size: 1rem;
  box-shadow: 0 1px 10px 0 rgba(23,27,31,0.08);
}
thead {
  background: #F6F8FA;
  color: #181B1F;
}
th, td {
  padding: 18px 14px;
  text-align: left;
  border-bottom: 1px solid #ECECEC;
}
th {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* MAP PLACEHOLDER ---------------------------------------------------------- */
.map-placeholder {
  width: 100%;
  height: 220px;
  background: repeating-linear-gradient(135deg, #EBECF0, #EBECF0 7px, #F6F8FA 7px, #F6F8FA 14px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AAB3BC;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* FOOTER ------------------------------------------------------------------- */
footer {
  background: #F6F8FA;
  border-top: 1px solid #E5E8EC;
  padding: 40px 0 0 0;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
footer nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
footer nav a img {
  height: 32px;
  margin-right: 0;
}
footer nav ul {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav ul li a {
  color: #222;
  font-size: 0.97rem;
  opacity: 0.85;
  border: none;
  font-weight: 500;
}
footer nav ul li a:hover {
  color: #181B1F;
  opacity: 1;
  text-decoration: underline;
}
footer .text-section {
  text-align: right;
  font-size: 0.97rem;
  color: #888;
  margin-bottom: 0;
}

/* FORM & SEARCH ------------------------------------------------------------ */
input[type="text"] {
  padding: 10px 16px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #D2D5DA;
  background: #FAFAFB;
  color: #181B1F;
  outline: none;
  margin-bottom: 20px;
  width: 100%;
  transition: border 0.18s;
}
input[type="text"]:focus {
  border-color: #1B4268;
  background: #fff;
}

/* MOBILE MENU -------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 24px;
  z-index: 101;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #1B4268;
  padding: 8px;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #000;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,27,31,0.94);
  z-index: 9999;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 22px 22px 22px;
  transition: transform 0.3s cubic-bezier(.68,-0.55,.27,1.55);
  transform: translateX(100%);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: slideInMobileMenu 0.25s cubic-bezier(.77,0,.18,1) forwards;
}
@keyframes slideInMobileMenu {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.mobile-menu-close {
  background: transparent;
  color: #FFD600;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  padding: 2px 12px;
  z-index: 10002;
  transition: color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 12px 5px 8px 2px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #181B1F;
  color: #FFD600;
}
@media (max-width: 1050px) {
  nav ul {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  nav, footer nav { gap: 18px; }
  nav ul, footer nav ul { gap: 10px; }
}
@media (max-width: 850px) {
  nav ul { display: none; }
  .btn-primary { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  .container { padding-left: 6px; padding-right: 6px; }
}

/* RESPONSIVE FLEX / SECTIONS ----------------------------------------------- */
@media (max-width: 768px) {
  .section, main section {
    padding: 32px 8px;
    margin-bottom: 42px;
  }
  .row, .content-grid, .card-container, .article-list, section ul {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch !important;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: stretch !important;
  }
  footer .container {
    align-items: flex-start;
    gap: 12px;
  }
  footer nav {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer .text-section {
    text-align: left;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
}
@media (max-width: 540px) {
  .hero { padding: 36px 2px 32px 2px; }
  h1 { font-size: 1.36rem; margin-bottom: 16px; }
}

/* MICROINTERACTIONS & ANIMATIONS ------------------------------------------- */
.btn, .btn-primary, .btn-secondary, .testimonial-card, .card {
  transition: box-shadow 0.20s, color 0.15s, background 0.19s, border 0.19s;
}
tbody tr:hover td {
  background: #F6F8FA;
}

/* FOCUS STYLES ------------------------------------------------------------- */
a:focus, button:focus, input:focus {
  outline: 2px dashed #FFD600;
  outline-offset: 2px;
  z-index: 1;
}

/* COOKIE CONSENT BANNER ---------------------------------------------------- */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #181B1F;
  color: #fff;
  z-index: 15000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 22px 16px 22px 16px;
  box-shadow: 0 -3px 16px rgba(23,27,31,0.13);
  font-size: 1rem;
  transition: transform 0.24s cubic-bezier(.4,0,.2,1);
}
#cookie-banner.hide {
  transform: translateY(130%);
}
#cookie-banner .cookie-message {
  flex: 1 1 340px;
  max-width: 660px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
}
#cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}
#cookie-banner button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  border-radius: 4px;
  padding: 10px 22px;
  outline: none;
  border: none;
  margin: 0;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
#cookie-banner .accept {
  background: #FFD600;
  color: #1B4268;
}
#cookie-banner .accept:hover, #cookie-banner .accept:focus {
  background: #fff;
  color: #000;
}
#cookie-banner .reject {
  background: #fff;
  color: #1B4268;
  border: 1px solid #FFD600;
}
#cookie-banner .reject:hover, #cookie-banner .reject:focus {
  background: #FFD600;
  color: #181B1F;
}
#cookie-banner .settings {
  background: #181B1F;
  color: #FFD600;
  border: 1px solid #FFD600;
}
#cookie-banner .settings:hover, #cookie-banner .settings:focus {
  background: #FFD600;
  color: #181B1F;
}
@media (max-width: 640px) {
  #cookie-banner { flex-direction: column; gap: 18px; align-items: flex-start; }
  #cookie-banner .cookie-actions { gap: 8px; }
}
/* COOKIE MODAL ------------------------------------------------------------- */
#cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 15100;
  transform: translate(-50%, -50%) scale(0.97);
  background: #fff;
  color: #222;
  border-radius: 14px;
  min-width: 350px;
  box-shadow: 0 9px 40px 0 rgba(23,27,31,0.18);
  padding: 38px 32px;
  display: none;
  flex-direction: column;
  gap: 28px;
  max-width: 99vw;
  max-height: 90vh;
  overflow-y: auto;
  transition: opacity 0.24s cubic-bezier(.4,0,.2,1);
}
#cookie-modal.open {
  display: flex;
}
#cookie-modal h2 {
  margin-bottom: 14px;
  font-size: 1.4rem;
  color: #181B1F;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  padding: 6px 0;
}
.cookie-switch {
  --switch-width: 46px;
  --switch-height: 26px;
  --switch-color-on: #1B4268;
  --switch-color-off: #ECECEC;
  width: var(--switch-width);
  height: var(--switch-height);
  border-radius: var(--switch-height);
  background: var(--switch-color-off);
  position: relative;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.5px 3px #ccc;
  transition: left 0.16s;
}
.cookie-switch input:checked + .slider {
  left: 22px;
  background: #1B4268;
}
.cookie-option .desc {
  color: #555;
  font-size: 0.94rem;
}
.cookie-buttons {
  display: flex;
  gap: 15px;
}
#cookie-modal .btn-modal {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 11px 22px;
  background: #1B4268;
  color: #fff;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
#cookie-modal .btn-modal.alt {
  background: #FFD600;
  color: #1B4268;
}
#cookie-modal .btn-modal:hover, #cookie-modal .btn-modal:focus {
  background: #FFD600;
  color: #181B1F;
}
#cookie-modal .btn-modal.alt:hover, #cookie-modal .btn-modal.alt:focus {
  background: #1B4268;
  color: #FFD600;
}
#cookie-modal .close-modal {
  position: absolute;
  right: 18px; top: 18px;
  background: transparent;
  border: none;
  color: #181B1F;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 15001;
}
@media (max-width: 480px) {
  #cookie-modal { min-width: 95vw; padding: 22px 7px; }
}
/* MISC --------------------------------------------------------------------- */
::-webkit-scrollbar { width: 6px; background: #ECECEC; }
::-webkit-scrollbar-thumb { background: #CBCDD1; border-radius: 4px; }

hr {
  border: none;
  border-top: 1px solid #ECECEC;
  margin: 28px 0;
}
/* Ensure no grid, column or absolute layouts for content */
/* END OF STYLE.CSS */