/* RESET & NORMALIZE (Mobile-first, no grid/column properties, minimal box-model inconsistencies) */
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;
  font-size: 16px;
}
body {
  line-height: 1.4;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #1F3244;
  background: #fff;
  min-height: 100vh;
}
img, video {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
ul, ol {
  list-style: none;
}
a {
  color: #1F3244;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #F8B500;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}
strong { font-weight: bold; }
::-webkit-input-placeholder { color: #555; opacity: 1; }
::-moz-placeholder { color: #555; opacity: 1; }
:-ms-input-placeholder { color: #555; opacity: 1; }
::placeholder { color: #555; opacity: 1; }

/* TYPOGRAPHY - Bold, Geometric, Modern */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: #1F3244;
  margin-bottom: 16px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1F3244;
  margin-bottom: 16px;
  margin-top: 24px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1F3244;
  line-height: 1.2;
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: #1F3244;
  margin-bottom: 8px;
}
p, li, ul, ol, blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: #1F3244;
}
blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #1F3244;
  background: #F4F4F7;
  border-left: 4px solid #F8B500;
  margin: 12px 0 12px 0;
  padding: 14px 18px;
  border-radius: 8px;
}

/* CONTAINER & SECTIONS */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(31,50,68,0.07);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* FLEXBOX LAYOUTS - STRICTLY FLEX (Mandatory Patterns) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(31,50,68,0.06);
  padding: 28px 24px;
}
.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;
  background: #F4F4F7;
  border-radius: 16px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 430px;
  box-shadow: 0 2px 8px 0 rgba(31,50,68,0.07);
  border: 2px solid #F8B50005;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 10px 0 rgba(31,50,68,0.05);
  padding: 24px 18px;
  margin-bottom: 20px;
  border: 2px solid #F4F4F7;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

/* CARDS & GRIDS */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-card {
  flex: 1 1 270px;
  min-width: 270px;
  max-width: 400px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(31,50,68,0.07);
  padding: 28px 20px;
  margin-bottom: 20px;
  border: 2px solid #F4F4F7;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
  border-color: #F8B500;
  box-shadow: 0 4px 24px 0 rgba(248,181,0,0.14);
}
.event-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.event-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(31,50,68,0.07);
  padding: 22px 18px;
  min-width: 260px;
  max-width: 350px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 2px solid #F4F4F7;
}
.event-card:hover {
  border-color: #F8B500;
  box-shadow: 0 6px 24px 0 rgba(248,181,0,0.13);
}
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.links-grid a {
  background: #F4F4F7;
  color: #1F3244;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: background 0.18s, color 0.18s;
  margin-bottom: 20px;
}
.links-grid a:hover {
  background: #F8B500;
  color: #fff;
}

/* SLIDERS/CAROUSELS */
.testimonial-slider, .success-story-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.case-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(31,50,68,0.09);
  padding: 24px 20px;
  margin-bottom: 20px;
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 2px solid #F4F4F7;
}
.case-card blockquote {
  background: #F4F4F7;
  border-left: 4px solid #F8B500;
  color: #1F3244;
}

/* BUTTONS & CTA */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F8B500;
  color: #1F3244;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.09rem;
  padding: 16px 32px;
  border-radius: 32px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px 0 rgba(248,181,0,0.08);
  border: 2px solid #F8B500;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
  margin: 10px 0;
  z-index: 2;
}
.cta-primary:hover, .cta-primary:focus {
  background: #1F3244;
  color: #fff;
  border-color: #1F3244;
  box-shadow: 0 6px 20px 0 rgba(31,50,68,0.12);
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1F3244;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 24px;
  padding: 12px 22px;
  border: 2px solid #1F3244;
  transition: background 0.17s, color 0.17s, border-color 0.17s;
  margin: 6px 0;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #F8B500;
  color: #1F3244;
  border-color: #F8B500;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(31,50,68,0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.navigation-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.navigation-links a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1F3244;
  background: transparent;
  letter-spacing: 0.1px;
  border-radius: 16px;
  padding: 8px 14px;
  transition: background 0.13s, color 0.13s;
  position: relative;
}
.navigation-links a.cta-primary {
  padding: 10px 30px;
  font-size: 1.03rem;
}
.navigation-links a:hover, .navigation-links a:focus {
  background: #F4F4F7;
  color: #F8B500;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: flex;
  background: #F8B500;
  color: #1F3244;
  font-size: 2rem;
  border: none;
  border-radius: 14px;
  padding: 6px 16px 6px 16px;
  margin-left: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 33;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #1F3244;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 110;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(0.7,0,0.3,1);
  box-shadow: 2px 0 32px 0 rgba(31,50,68,0.21);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 30px;
  background: #F8B500;
  color: #1F3244;
  font-size: 2.2rem;
  border-radius: 14px;
  padding: 4px 16px 4px 16px;
  border: none;
  cursor: pointer;
  z-index: 111;
  box-shadow: 0 2px 8px 0 rgba(31,50,68,0.15);
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #1F3244;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 100px 38px 48px 38px;
  width: 100%;
}
.mobile-nav a {
  color: #1F3244;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.25rem;
  text-align: left;
  padding: 15px 14px;
  border-radius: 10px;
  background: #F4F4F7;
  transition: background 0.13s, color 0.13s;
  margin-bottom: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F8B500;
  color: #fff;
}

@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  .navigation-links {
    display: flex !important;
    flex-direction: row;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .navigation-links {
    display: none !important;
  }
  header nav {
    padding: 10px 0;
  }
}

/* MAIN SECTION SPACING & FLEX */
main > section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: none;
  box-shadow: none;
}

/* FOOTER */
footer {
  width: 100%;
  background: #1F3244;
  color: #fff;
  margin-top: 60px;
  padding: 32px 0 0 0;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F8B500;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}
.footer-brand img {
  height: 36px;
  width: auto;
  margin-right: 4px;
}

/* GENERAL UTILITY */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.contact-direct {
  font-size: 1.05rem;
  background: #F4F4F7;
  padding: 18px 22px;
  border-radius: 16px;
  margin-bottom: 12px;
  line-height: 1.65;
  color: #1F3244;
  box-shadow: 0 2px 10px 0 rgba(31,50,68,0.05);
}

ul li, ol li {
  margin-bottom: 7px;
  padding-left: 20px;
  position: relative;
}
ul li:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #F8B500;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

/* MICRO-INTERACTIONS (hover effects, transitions)*/
.card, .feature-item, .testimonial-card, .case-card {
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.13s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover, .case-card:hover {
  box-shadow: 0 6px 28px 0 rgba(248,181,0,0.11);
  border-color: #F8B50018;
  transform: translateY(-2px) scale(1.012);
}

/* TESTIMONIALS - always high contrast */
.testimonial-card, .case-card blockquote {
  background: #F4F4F7 !important;
  color: #1F3244 !important;
}
.testimonial-card blockquote, .case-card blockquote {
  color: #1F3244;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1020px) {
  .feature-grid, .service-cards, .event-cards, .card-container, .content-grid, .testimonial-slider, .success-story-slider {
    gap: 18px;
  }
  .container {
    max-width: 96vw;
    padding: 0 10px;
  }
}
@media (max-width: 820px) {
  .feature-grid, .service-cards, .event-cards, .card-container, .content-grid, .testimonial-slider, .success-story-slider {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .service-cards, .event-cards, .card-container, .content-grid, .testimonial-slider, .success-story-slider {
    flex-direction: column !important;
    gap: 10px;
  }
  .container {
    padding: 0 8px;
  }
  .section {
    padding: 28px 6px;
    margin-bottom: 40px;
  }
  .footer-nav {
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.99rem;
  }
  .footer-brand span {
    font-size: 0.96rem;
  }
  .contact-direct {
    font-size: 0.98rem;
    padding: 13px 11px;
  }
  .testimonal-card, .case-card {
    min-width: 0;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 16px;
    align-items: stretch !important;
  }
  .links-grid {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 2px;
  }
  .section {
    padding: 14px 2px;
  }
h1, .h1 {
  font-size: 1.34rem;
}
h2, .h2 {
  font-size: 1.01rem;
}
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #1F3244;
  color: #fff;
  box-shadow: 0 -3px 24px 0 rgba(31,50,68,0.14);
  padding: 18px 3vw 22px 3vw;
  z-index: 2000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  animation: cookieSlideUp 0.6s cubic-bezier(0.77,0,0.18,1);
}
.cookie-banner__text {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 610px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-btn, .cookie-btn-primary, .cookie-btn-outline {
  appearance: none;
  border-radius: 22px;
  border: 2px solid #F8B500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 22px;
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border-color 0.12s;
}
.cookie-btn-primary {
  background: #F8B500;
  color: #1F3244;
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: #fff;
  color: #1F3244;
  border-color: #1F3244;
}
.cookie-btn-outline {
  background: #1F3244;
  color: #F8B500;
  border: 2px solid #F8B500;
}
.cookie-btn-outline:hover, .cookie-btn-outline:focus {
  background: #F4F4F7;
  color: #1F3244;
  border-color: #F4F4F7;
}
@keyframes cookieSlideUp {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -58%) scale(1);
  background: #fff;
  color: #1F3244;
  border-radius: 22px;
  box-shadow: 0 8px 48px 0 rgba(31,50,68,0.18);
  z-index: 3000;
  max-width: 456px;
  width: 96vw;
  padding: 32px 30px 26px 30px;
  animation: modalPop 0.46s cubic-bezier(0.77,0,0.18,1);
  gap: 16px;
}
@keyframes modalPop {
  from { opacity: 0; transform: translate(-50%,-58%) scale(0.7); }
  to   { opacity: 1; transform: translate(-50%,-58%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.cookie-modal__close {
  position: absolute;
  right: 16px;
  top: 14px;
  background: #F8B500;
  color: #1F3244;
  border-radius: 12px;
  font-size: 1.22rem;
  padding: 4px 10px;
  border: none;
  cursor: pointer;
  z-index: 3010;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}
.cookie-modal__category label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch-slider {
  position: absolute;
  cursor: pointer;
  left: 0; right: 0; top: 0; bottom: 0;
  background-color: #EAEAEA;
  border-radius: 24px;
  transition: background 0.19s;
}
.switch-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #F8B500;
  border-radius: 50%;
  transition: transform 0.19s;
}
.switch input:checked + .switch-slider {
  background-color: #F8B500;
}
.switch input:checked + .switch-slider:before {
  transform: translateX(20px);
  background: #1F3244;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 8px;
}
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(31,50,68,0.19);
  z-index: 2990;
  animation: modalFadeIn 0.2s cubic-bezier(0.9,0,0.2,1);
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (max-width: 570px) {
  .cookie-modal {
    padding: 17px 7px 12px 9px;
  }
}

/* GEOMETRIC ACCENTS (optional, for modern_bold identity) */
.card, .feature-item, .testimonial-card, .service-card, .event-card, .case-card {
  border-radius: 18px;
  /* optional geometric accent block at top-right, could add :before for visual cue */
}

/* ERROR/THANK-YOU/INFO PAGES */
.content-wrapper[style*='text-align:center'], .centered-content {
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
  background: #F4F4F7;
}
::-webkit-scrollbar-thumb {
  background: #F8B500;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #1F3244;
}

/* PRINT, MISC */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-overlay { display:none !important; }
  body { background: #fff !important; }
}

/* END OF STYLE.CSS */