/* 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,
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  background: #F5F8FB;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #212E3E;
  min-height: 100vh;
  line-height: 1.6;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  border: 1px solid #E6ECF3;
}

/* BRAND TYPOGRAPHY & SCALE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #212E3E;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  color: #212E3E;
}
strong {
  font-weight: 700;
}
blockquote {
  border-left: 4px solid #67A2C8;
  padding: 12px 24px;
  margin: 20px 0;
  font-style: italic;
  background: #e8f4fb;
  color: #2a3d52;
  border-radius: 12px;
}

/* CONTAINER & GRID LAYOUTS */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper,
.text-section {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

/* FLEXBOX ALIGNMENTS AND GEOMETRIC STRUCTURE */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 24px rgba(33,46,62,0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(33,46,62,0.07);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2.5px solid #E6ECF3;
  transition: border-color .2s, box-shadow .2s;
}
.card:hover, .card:focus-within {
  border-color: #67A2C8;
  box-shadow: 0 8px 30px rgba(103,162,200,.18);
}
.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: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #f6fafd;
  border-radius: 18px;
  box-shadow: 0 1px 6px rgba(33,46,62,.07);
  border-left: 6px solid #67A2C8;
  max-width: 550px;
}
.testimonial-card p {
  font-size: 1.125rem;
  color: #212E3E;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #FFD400;
  font-size: 1.3rem;
  letter-spacing: .1em;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #2a3d52;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

/* TABLES */
table {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  margin: 30px 0 10px;
  font-size: 1rem;
}
th {
  background: #fafdff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
tr:nth-child(even) {
  background: #f9fafb;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #212E3E;
  color: #fff;
  padding: 0;
  box-shadow: 0 4px 12px rgba(33,46,62,.05);
  position: sticky;
  top: 0;
  z-index: 40;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
  height: 68px;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: #67A2C8;
  color: #212E3E;
}
header nav img {
  height: 38px;
  margin-right: 18px;
  border-radius: 9px;
}
.cta-primary {
  background: #F8E16C;
  color: #212E3E !important;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  padding: 10px 30px;
  font-size: 1.08rem;
  box-shadow: 0 4px 14px rgba(248,225,108,0.13);
  text-transform: uppercase;
  margin-left: 8px;
  cursor: pointer;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
  letter-spacing: 0.035em;
  border: 2px solid transparent;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #ffe45d;
  box-shadow: 0 8px 24px rgba(248,225,108,0.26);
  border-color: #212E3E;
  color: #212E3E;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #F8E16C;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 10px;
  margin-left: auto;
  outline: none;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #2e3e54;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,46,62,0.98);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform .36s cubic-bezier(.77,.2,.05,1), opacity .16s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F8E16C;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 24px 26px 12px 0;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #222d3a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin-left: 46px;
  margin-top: 32px;
  width: 90vw;
}
.mobile-nav a {
  color: #F8E16C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 5px;
  border-radius: 10px;
  transition: background 0.13s, color 0.13s;
  width: 100%;
  display: block;
  margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #212E3E;
}

/* SECTIONS & CARDS */
section .container {
  padding: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
  border: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: none;
  box-shadow: none;
}
.text-section {
  background: #fafdff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(103,162,200,0.025);
  padding: 32px 22px;
  margin-bottom: 30px;
}

/* ICONS IN LISTS */
ul li img {
  width: 32px;
  height: 32px;
  margin-right: 18px;
  vertical-align: middle;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(33,46,62,0.11);
}
ul li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  line-height: 1.7;
  font-size: 1.06rem;
  gap: 16px;
}

/* FOOTER */
footer {
  background: #212E3E;
  color: #fff;
  padding: 40px 0 16px 0;
  margin-top: 44px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
footer nav {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
}
footer nav a {
  color: #67A2C8;
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: color 0.19s;
}
footer nav a:hover, footer nav a:focus {
  color: #F8E16C;
}
footer img {
  height: 32px;
  width: auto;
  margin-right: 12px;
  vertical-align: middle;
}
footer span {
  font-size: .98rem;
  color: #fefefe;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #212E3E;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 22px 18px 22px;
  z-index: 200;
  box-shadow: 0 -2px 14px rgba(33,46,62,0.16);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity .3s, transform .35s cubic-bezier(.77,.2,.05,1);
  max-width: 486px;
  margin-left: auto;
  margin-right: 26px;
}
.cookie-banner.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.cookie-banner button {
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid transparent;
  background: #F8E16C;
  color: #212E3E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background .18s, border-color .15s;
  letter-spacing: .025em;
}
.cookie-banner button.cookie-reject {
  background: #fff;
  color: #212E3E;
  border: 2px solid #E6ECF3;
}
.cookie-banner button.cookie-settings {
  background: #67A2C8;
  color: #fff;
  border: 2px solid #67A2C8;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #ffe45d;
  border-color: #F8E16C;
  color: #212E3E;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #fff;
  color: #212E3E;
  border-color: #67A2C8;
}

/* COOKIE CONSENT MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(33,46,62,0.82);
  z-index: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .29s cubic-bezier(.77,.2,.05,1);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  padding: 44px 28px 32px 28px;
  border-radius: 22px;
  box-shadow: 0 6px 40px rgba(33,46,62,0.19);
  max-width: 430px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.35rem;
  color: #212E3E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 4px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 28px;
  font-size: 1rem;
}
.cookie-category span {
  font-weight: 600;
}
.cookie-toggle {
  cursor: pointer;
  width: 48px;
  height: 26px;
  background: #E6ECF3;
  border-radius: 14px;
  position: relative;
  transition: background 0.17s;
}
.cookie-toggle.enabled {
  background: #67A2C8;
}
.cookie-toggle .toggle-knob {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(3,6,8,0.05);
  transition: left 0.16s;
}
.cookie-toggle.enabled .toggle-knob {
  left: 25px;
}
.cookie-modal-content .cookie-modal-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-content button {
  padding: 10px 26px;
  font-weight: 600;
  border-radius: 11px;
  border: 2px solid transparent;
  background: #F8E16C;
  color: #212E3E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background .18s, border-color .15s;
  letter-spacing: .025em;
}
.cookie-modal-content button.cookie-cancel {
  background: #fff;
  color: #212E3E;
  border: 2px solid #E6ECF3;
}
.cookie-modal-content button.cookie-save {
  background: #67A2C8;
  color: #fff;
  border: 2px solid #67A2C8;
}
.cookie-modal-content button:hover, .cookie-modal-content button:focus {
  background: #ffe45d;
  color: #212E3E;
  border-color: #F8E16C;
}
.cookie-modal-content button.cookie-save:hover, .cookie-modal-content button.cookie-save:focus {
  background: #fff;
  color: #212E3E;
  border-color: #67A2C8;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 15px;
  background: none;
  border: none;
  color: #212E3E;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 8px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E6ECF3;
}

/* BUTTONS */
button, .btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 11px 26px;
  border-radius: 11px;
  border: 2px solid transparent;
  background: #67A2C8;
  color: #fff;
  cursor: pointer;
  transition: background .16s, color .17s, box-shadow 0.12s, border-color .15s;
  letter-spacing: .02em;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: #212E3E;
  color: #F8E16C;
  border-color: #F8E16C;
  outline: none;
}

/* MEDIA QUERIES - RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  .testimonial-card { max-width: 100%; }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 25px 5px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .content-wrapper, .text-section {
    max-width: 94vw;
    padding: 18px 6px 18px 6px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 0 8px;
  }
  .card {
    padding: 18px 8px;
    border-radius: 13px;
  }
}
@media (max-width: 580px) {
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.15rem; }
  .cta-primary, button, .btn {
    padding: 10px 12px;
    font-size: .98rem;
    border-radius: 8px;
  }
  .testimonial-card {
    padding: 13px;
    border-radius: 11px;
  }
  .cookie-banner {
    max-width: 95vw;
    margin-right: 2vw;
    font-size: .97rem;
    padding: 12px 6px;
    border-radius: 11px 11px 0 0;
  }
  .cookie-modal-content{
    padding: 18px 5px 19px 8px;
    border-radius: 13px;
    max-width: 97vw;
  }
}

/* FORM ELEMENTS */
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  padding: 12px 14px;
  border: 2px solid #E6ECF3;
  border-radius: 9px;
  font-size: 1rem;
  margin-bottom: 16px;
  width: 100%;
  background: #fafdff;
  color: #212E3E;
  transition: border-color .15s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #67A2C8;
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #212E3E;
  margin-bottom: 7px;
  display: block;
}

/* MICRO-INTERACTIONS & ACCESSIBILITY */
.card, .cta-primary, button, .btn, .mobile-menu-close, .cookie-banner button, .cookie-modal-content button {
  transition: 
    background .17s,
    color .15s,
    box-shadow .13s,
    border-color .16s,
    transform .21s;
}
.card:active, .cta-primary:active, button:active, .btn:active, .cookie-banner button:active {
  transform: scale(0.97);
}
.mobile-nav a:active {
  background: #ffe45d;
  color: #212E3E;
}

/* GEOMETRIC VISUALS - ANGULAR DECORATIONS */
.card, .testimonial-card, .section, .text-section {
  border-bottom-right-radius: 44px 22px;
}
.card {
  border-top-left-radius: 44px 22px;
}
.testimonial-card {
  border-top-right-radius: 28px 12px;
}

/* ACCESSIBILITY: FOCUS VISIBLE */
a:focus-visible, button:focus-visible, .cta-primary:focus-visible {
  outline: 3px solid #F8E16C;
  outline-offset: 3px;
}

/* Z-INDEX LAYERING */
header {
  z-index: 50;
}
.mobile-menu {
  z-index: 100;
}
.cookie-banner {
  z-index: 200;
}
.cookie-modal {
  z-index: 300;
}

/* Custom utility classes for geometric_structured alignment */
.m-b-20 {
  margin-bottom: 20px !important;
}
.m-b-40 {
  margin-bottom: 40px !important;
}
.gap-20 {
  gap: 20px !important;
}
-------------------------------------------
/* END OF style.css FOR GLEAM SHIFT - geometric_structured aesthetic */
