/* ======================= 
  CSS RESET & BASE STYLES 
   ======================= */
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;
}
/* HTML5 display-role reset */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F6F8FA;
  color: #24344D;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: #24344D;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
a:hover, a:focus {
  color: #F2A900;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
::-webkit-input-placeholder {
  color: #9CA6B4;
}
::-moz-placeholder {
  color: #9CA6B4;
}
:-ms-input-placeholder {
  color: #9CA6B4;
}
::placeholder {
  color: #9CA6B4;
}

/* ===================
   BRAND TYPOGRAPHY
   =================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  color: #24344D;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  text-transform: none;
}
h1 {
  font-size: 2.35rem;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
h2 {
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  margin-bottom: 12px;
}
p, li, cite {
  font-size: 1rem;
  color: #273958;
}
b, strong {
  font-weight: 700;
}
i, em {
  font-style: italic;
}
cite {
  font-size: 0.98rem;
  color: #8491A6;
  font-style: normal;
}

/* ===================
   CONTAINER & LAYOUT
   =================== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

main {
  min-height: 60vh;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 5px 24px 0 rgba(35,50,81,0.07);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 12px 0 rgba(35,50,81,0.08);
  padding: 28px 24px;
  min-width: 280px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
}
.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;
  padding: 20px;
  background: #FAFAFE;
  border-radius: 14px;
  border: 2.7px solid #F2A900;
  box-shadow: 0 2px 7px 0 rgba(36,52,77,0.04);
  margin-bottom: 22px;
  position: relative;
  flex: 1 1 320px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===================
    BRAND BUTTONS
   =================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 8px;
  border: none;
  background: #F2A900;
  color: #24344D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 13px 28px;
  transition: background 0.23s cubic-bezier(.7,.2,.34,1), box-shadow 0.18s;
  box-shadow: 0 2px 11px 0 rgba(36,52,77,0.08);
  cursor: pointer;
  outline: none;
  margin-top: 10px;
  text-transform: uppercase;
}
.btn-primary {
  background: #24344D;
  color: #fff;
}
.btn:hover, .btn:focus {
  background: #FFE17D;
  color: #24344D;
  box-shadow: 0 4px 20px 0 rgba(36,52,77,0.12);
}
.btn-primary:hover, .btn-primary:focus {
  background: #F2A900;
  color: #24344D;
}

/* ===================
    HEADER & NAV
   =================== */
header {
  background: #fff;
  box-shadow: 0 3px 11px 0 rgba(36,52,77,0.07);
  padding: 0;
  position: relative;
  z-index: 51;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
header nav a {
  padding: 8px 10px;
  border-radius: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.028em;
  color: #24344D;
  transition: background 0.16s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #F2A900;
  color: #24344D;
}
header img {
  max-height: 56px;
  width: auto;
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
}

/* ===================
    MOBILE NAVIGATION
   =================== */
.mobile-menu-toggle {
  position: fixed;
  top: 24px;
  right: 22px;
  z-index: 140;
  display: none;
  background: #F2A900;
  border: none;
  color: #24344D;
  width: 47px;
  height: 47px;
  border-radius: 8px;
  font-size: 2.1rem;
  box-shadow: 0 2px 6px 0 rgba(36,52,77,0.08);
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #24344D;
  color: #F2A900;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #24344D;
  color: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.77,.01,.22,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.15rem;
  margin: 20px 24px 0 0;
  background: none;
  border: none;
  color: #F2A900;
  cursor: pointer;
  padding: 7px 13px;
  border-radius: 7px;
  transition: background 0.18s, color 0.14s;
  z-index: 250;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F2A900;
  color: #24344D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 48px 0 0 0;
  padding: 0 32px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.38rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 14px 0 13px 0;
  border-bottom: 1.8px solid rgba(242,169,0,0.18);
  transition: color 0.19s, background 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F2A900;
  background: #1D2841;
}
@media (max-width: 1023px) {
  header nav {
    display: none;
  }
  .btn.btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 1023px) {
  header .container {
    padding-right: 62px;
  }
}
@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none!important;
  }
}

/* ===================
    MAIN SECTIONS & FLEX LAYOUTS
   =================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 5px 24px 0 rgba(36,52,77,0.06);
}
section:last-child {
  margin-bottom: 36px;
}
@media (max-width: 640px) {
  section {
    padding: 30px 7px;
    border-radius: 12px;
    margin-bottom: 36px;
  }
}

.card-container, .content-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* ===================
    TESTIMONIALS & CARDS
   =================== */
.testimonial-card {
  background: #fffdf8;
  border-radius: 14px;
  padding: 22px 28px;
  border-left: 6px solid #F2A900;
  box-shadow: 0 2px 14px 0 rgba(36,52,77,0.08);
  margin-bottom: 24px;
  color: #273958;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
}
.testimonial-card p {
  color: #273958;
  font-size: 1.1rem;
}
.testimonial-card cite {
  color: #B78D00;
  font-size: 0.95rem;
  font-style: normal;
}

.card {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 3px 12px 0 rgba(36,52,77,0.09);
  margin-bottom: 20px;
  border: 2px solid #F2A900;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* ===================
   FOOTER
   =================== */
footer {
  background: #24344D;
  color: #fff;
  padding: 48px 0 22px 0;
  margin-top: 32px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 7px;
}
footer nav a {
  color: #F2A900;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: underline;
  transition: color 0.17s, text-decoration 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  text-decoration: none;
}
footer p {
  color: #fff;
  font-size: 0.99rem;
  line-height: 1.5;
}
@media (max-width: 640px) {
  footer {
    padding: 29px 0 14px 0;
  }
  footer .container {
    gap: 12px;
  }
  footer nav {
    gap: 15px;
    font-size: 1rem;
  }
}

/* ===================
   SPACING & FLEX CONSISTENCY
   =================== */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Typography and card gap for all lists */
ul, ol {
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 16px;
}
li {
  margin-bottom: 13px;
  padding-left: 0.5em;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #273958;
  position: relative;
}
ul li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: #F2A900;
  margin-left: -19px;
  position: relative;
  top: -1.5px;
}
ul li b, ul li strong {
  color: #24344D;
  font-weight: 700;
}

/* ===================
   RESPONSIVENESS
   =================== */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.15rem;
  }
}
@media (max-width: 700px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonials {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item {
    gap: 8px;
  }
  .btn, .btn.btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 13px 0;
  }
  .section {
    padding: 26px 6px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.36rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .container {
    padding: 0 2px;
    max-width: 100vw;
  }
  .card {
    min-width: 0;
    padding: 18px 8px;
  }
}

/* ===================
   GEOMETRIC STRUCTURED ELEMENTS
   =================== */
/* Geometric accent (diamond) for headings */
h2::before, h3::before {
  content: '';
  display: inline-block;
  margin-right: 9px;
  width: 13px;
  height: 13px;
  background: #F2A900;
  transform: rotate(45deg);
  border-radius: 3px;
  vertical-align: middle;
}

/* Geometric shape for section backgrounds (angle overlay) */
.section::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -20px;
  right: -26px;
  width: 75px;
  height: 75px;
  background: #F2A90022;
  transform: rotate(-23deg);
  border-radius: 19% 56% 35% 60%/49% 34% 66% 51%;
  z-index: 1;
  pointer-events: none;
}
.section {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

/* Visual geometric pattern on accent elements */
.btn::after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  width: 13px;
  height: 13px;
  background: #F2A900;
  border-radius: 2.5px;
  transform: rotate(45deg);
  vertical-align: middle;
  opacity: 0.75;
  transition: background 0.2s;
}
.btn.btn-primary::after {
  background: #fff;
}
.btn:focus::after {
  background: #24344D;
}
.btn.btn-primary:focus::after {
  background: #F2A900;
}

/* ===================
   MICRO-INTERACTIONS
   =================== */
.btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.22s, color 0.20s, box-shadow 0.18s;
}
.card, .testimonial-card {
  transition: box-shadow 0.19s, border 0.19s, transform 0.14s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 36px 0 rgba(36,52,77,0.13);
  border-color: #FFE177;
  transform: translateY(-3px) scale(1.017);
}
input, select, textarea {
  outline: none;
  border-radius: 6px;
  border: 1.5px solid #DFE3EA;
  padding: 14px 11px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
input:focus, select:focus, textarea:focus {
  border-color: #F2A900;
  background: #FFFDF2;
  transition: border 0.18s, background 0.15s;
}

/* ===================
   COOKIE CONSENT BANNER
   =================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #24344D;
  color: #fff;
  padding: 24px 12px 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 18px 0 rgba(36,52,77,0.13);
  z-index: 5000;
  gap: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  animation: cookieFadeIn 0.7s cubic-bezier(.19,1,.22,1);
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 22px;
  border: none;
  margin: 0 0 5px 0;
  cursor: pointer;
  transition: background 0.19s, color 0.17s;
}
.cookie-banner__accept {
  background: #F2A900;
  color: #24344D;
}
.cookie-banner__accept:hover {
  background: #fff;
  color: #24344D;
}
.cookie-banner__reject {
  background: #FFF;
  color: #24344D;
  border: 2px solid #F2A900;
}
.cookie-banner__reject:hover {
  background: #F2A900;
  color: #24344D;
}
.cookie-banner__settings {
  background: none;
  color: #F2A900;
  border: 2px solid #F2A900;
}
.cookie-banner__settings:hover {
  background: #F2A900;
  color: #24344D;
}

/* COOKIE MODAL STYLES */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(36,52,77,.44);
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  animation: modalFadeIn 0.23s;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #24344D;
  min-width: 330px;
  max-width: 96vw;
  border-radius: 17px;
  box-shadow: 0 7px 36px 0 rgba(36,52,77,0.17);
  padding: 32px 27px 22px 27px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 5200;
  animation: modalBounce 0.31s cubic-bezier(.8,-0.4,.2,1.4);
}
@keyframes modalBounce {
  0% { transform: scale(0.88); opacity: 0;}
  44% { transform: scale(1.04);}
  70% {transform: scale(0.97);}
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #24344D;
  font-size: 1.28rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 14px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
  padding: 3px 0 0 3px;
  font-size: 1rem;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #F6F8FA;
  padding: 11px 12px;
  border-radius: 7px;
}
.cookie-category__label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #24344D;
}
.cookie-category__toggle {
  margin-left: auto;
}
.cookie-category__toggle input[type='checkbox' i] {
  width: 36px; 
  height: 19px;
  -webkit-appearance: none;
  border-radius: 11px;
  background: #F2A90033;
  outline: none;
  position: relative;
  transition: background 0.1s;
}
.cookie-category__toggle input[type='checkbox']:checked {
  background: #F2A900;
}
.cookie-category__toggle input[type='checkbox' i]::before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.15s;
}
.cookie-category__toggle input[type='checkbox' i]:checked:before {
  transform: translateX(16px);
}
.cookie-modal__actions {
  display: flex;
  gap: 16px;
  margin-top: 7px;
  flex-wrap: wrap;
  width: 100%;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  margin: 0 0 5px 0;
  transition: background 0.19s, color 0.16s;
}
.cookie-modal__accept {
  background: #F2A900;
  color: #24344D;
}
.cookie-modal__accept:hover {
  background: #24344D;
  color: #FFE177;
}
.cookie-modal__reject {
  background: #fff;
  color: #24344D;
  border: 2px solid #F2A900;
}
.cookie-modal__reject:hover {
  background: #F2A900;
  color: #24344D;
}
.cookie-modal__close {
  background: none;
  color: #F2A900;
  border: 2px solid #F2A900;
}
.cookie-modal__close:hover {
  background: #F2A900;
  color: #24344D;
}
.cookie-modal__note {
  font-size: 0.91rem;
  color: #8491A6;
  margin-top: 10px;
  line-height: 1.4;
}
@media (max-width: 520px) {
  .cookie-modal {
    padding: 20px 8px 16px 8px;
    min-width: 0;
    width: 97vw;
  }
}

/* ===============
   SCROLLBAR
   =============== */
::-webkit-scrollbar {
  width: 10px;
  background: #E7EBF0;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: #F2A90099;
  border-radius: 4px;
}

body {
  scrollbar-width: thin;
  scrollbar-color: #F2A900 #E7EBF0;
}

/* ===============
   UTILS
   =============== */
.hide {
  display: none !important;
}
.flex {
  display: flex !important;
}
.flex-col {
  flex-direction: column !important;
}
.flex-row {
  flex-direction: row !important;
}
.w-100 {
  width: 100% !important;
}
.align-center {
  align-items: center !important;
}
.justify-center {
  justify-content: center !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mt-20 {
  margin-top: 20px !important;
}

/* ===============
   CUSTOM FORMS & INPUTS (if any used in future)
   =============== */
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #24344D;
  margin-bottom: 7px;
  display: inline-block;
  letter-spacing: 0.015em;
}
input, textarea, select {
  border: 1.5px solid #E2E6EE;
  border-radius: 5.5px;
  padding: 11px 14px;
  font-size: 1rem;
  margin-bottom: 16px;
  background: #fff;
  color: #24344D;
}
input:focus, textarea:focus, select:focus {
  border-color: #F2A900;
  box-shadow: 0 2px 8px #F2A90022;
  background: #FEFFF5;
}

/* ===============
   PRINT STYLES
   =============== */
@media print {
  header, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal-backdrop, footer {
    display: none !important;
  }
  section, .section, .card, .testimonial-card {
    box-shadow: none !important;
    background: #fff !important;
  }
  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }
}

/* =========================
    END OF STYLE.CSS FILE
   ========================= */
