/* CSS RESET & BASE TYPOGRAPHY */
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, main, 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 {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: #212B45;
  color: #F5F7FA;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #6EC1E4;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #F6D155;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F6D155;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.4rem; margin-bottom: 18px; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; color: #6EC1E4; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; }
p, ul, ol { margin-bottom: 16px; }
strong { color: #6EC1E4; font-weight: 600; }

/* CONTAINER LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* HEADER & MAIN NAVIGATION */
header {
  width: 100%;
  background: #283A6B;
  position: relative;
  box-shadow: 0 4px 20px 0 rgba(40,58,107,0.13);
  z-index: 199;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 0;
}
header img {
  height: 46px;
  width: auto;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  color: #F6D155;
  font-size: 1rem;
  font-weight: 500;
  margin-right: 0;
  letter-spacing: 0.01em;
  transition: color 0.18s;
  padding: 4px 0;
  position: relative;
}
nav a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #6EC1E4;
  transition: width .2s;
  border-radius: 1px;
}
nav a:hover::after, nav a:focus::after {
  width: 90%;
}
nav a:hover, nav a:focus {
  color: #6EC1E4;
}

/* CTA BUTTON STYLES */
.cta-button {
  background: linear-gradient(90deg, #6EC1E4 0%, #F6D155 100%);
  color: #283A6B;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 32px;
  border: none;
  border-radius: 24px;
  transition: background 0.22s, box-shadow 0.22s, color 0.22s;
  box-shadow: 0 2px 12px 0 rgba(110,193,228,0.10), 0 0 0 0 #6EC1E4;
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #F6D155 0%, #6EC1E4 100%);
  color: #283A6B;
  box-shadow: 0 2px 18px 0 #6EC1E4AA;
  outline: none;
}

/* FLEX UTILITY CLASSES (MANDATORY PATTERNS) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #223155;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 #283A6B20;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.21s, border-color 0.18s;
  border: 1.5px solid #283A6B80;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 22px 0 #6EC1E430;
  border-color: #6EC1E4;
  z-index: 2;
}
.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: #F6D155;
  color: #283A6B;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  border-radius: 16px;
  box-shadow: 0 2px 10px #283A6B11;
  min-width: 260px;
  max-width: 400px;
  margin-bottom: 28px;
  border-left: 5px solid #6EC1E4;
}
.testimonial-card strong {
  color: #283A6B;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* MAIN AND SECTION BACKGROUNDS */
main section {
  background: #212B45;
  border-radius: 24px;
  margin-bottom: 32px;
  box-shadow: 0 4px 38px 0 #283A6B18;
}
main section:nth-child(2n) {
  background: #223155;
}

/* SERVICE CARDS */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.service-cards > div {
  background: #283A6B;
  color: #F5F7FA;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 #6ec1e42a;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 280px;
  min-width: 260px;
  transition: box-shadow 0.22s, border 0.18s;
  border: 1.5px solid #F6D15533;
  position: relative;
}
.service-cards > div:hover {
  box-shadow: 0 6px 24px #F6D15566, 0 2px 18px #6EC1E455;
  border: 1.5px solid #6EC1E4;
  z-index: 2;
}
.service-cards h3 {
  font-size: 1.25rem;
  color: #F6D155;
}

/* LISTS & FEATURE GRID */
ul, ol {
  padding-left: 22px;
}
.section ul {
  list-style-type: disc;
}
ul li, ol li {
  margin-bottom: 10px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.6;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.feature-grid > div {
  background: #283A6B;
  color: #F5F7FA;
  border-radius: 16px;
  flex: 1 1 220px;
  min-width: 180px;
  padding: 24px 18px 20px;
  box-shadow: 0 2px 10px #6EC1E41A;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  border-left: 4px solid #F6D155;
}
.feature-grid h3, .feature-grid h4 { color: #6EC1E4; }
.feature-grid > div img {
  height: 36px; width: 36px; margin-bottom: 4px;
  filter: drop-shadow(0 0 2px #6EC1E499);
}

/* NUMBERS & STATS */
.numbers-stats ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding-left: 0;
}
.numbers-stats li {
  background: #6EC1E4;
  color: #283A6B;
  border-radius: 15px;
  padding: 16px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.numbers-stats strong {
  font-size: 1.35rem;
  color: #283A6B;
}

/* TESTIMONIAL LAYOUTS */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.testimonial-slider .testimonial-card, .testimonial-list .testimonial-card {
  margin-bottom: 0;
  min-width: 240px;
}

.text-section {
  background: #223155;
  color: #F5F7FA;
  border-radius: 15px;
  padding: 24px;
  margin-bottom: 22px;
  box-shadow: 0 1px 8px #283A6B14;
}
.notice-block {
  background: #F6D155;
  border-radius: 8px;
  padding: 14px 18px;
  color: #283A6B;
  font-weight: 500;
  box-shadow: 0 1px 6px #F6D15533;
  margin-bottom: 16px;
  font-family: 'Montserrat', 'Roboto', sans-serif;
}

/* CONTACT LAYOUTS */
.contact-details, .address_display, .working_hours {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #6EC1E4;
  background: #223155;
  border-radius: 9px;
  padding: 16px;
  font-size: 1rem;
}
.contact-details strong, .address_display strong, .working_hours strong {
  color: #F6D155;
}

/* FOOTER */
footer {
  width: 100%;
  background: #1B253D;
  padding-top: 32px;
  padding-bottom: 32px;
  margin-top: 34px;
  box-shadow: 0 -4px 38px #283A6B25;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 44px;
  justify-content: space-between;
}
footer nav {
  gap: 20px;
  flex: 1 1 90px;
  flex-wrap: wrap;
}
footer nav a {
  color: #6EC1E4;
  font-size: 0.96rem;
  font-weight: 500;
  opacity: 0.84;
}
footer nav a:hover{
  color: #F6D155;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 330px;
  font-size: 0.98rem;
  color: #F5F7FA;
}
.footer-contact a {
  color: #F6D155;
}

/* MOBILE LAYOUTS & MEDIA QUERIES */
@media (max-width: 1024px) {
  .service-cards, .feature-grid, .card-container, .testimonial-slider, .testimonial-list, .numbers-stats ul {
    gap: 18px;
  }
  .service-cards > div, .feature-grid > div {
    min-width: 200px;
    flex: 1 1 200px;
  }
  footer .container {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  nav, .feature-grid, .service-cards, .card-container,
  .content-grid, .numbers-stats ul, .testimonial-slider, .testimonial-list, footer .container {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  footer .container {
    align-items: center;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    gap: 0;
    padding: 10px 8px;
  }
  nav {
    display: none;
  }
  .cta-button {
    font-size: 1rem;
    padding: 10px 22px;
  }
  .section, main section {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
  .service-cards, .feature-grid {
    gap: 14px;
  }
  .service-cards > div, .feature-grid > div {
    padding: 18px 14px 16px 14px;
    font-size: 1rem;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  .testimonial-card {
    min-width: 0; max-width: 100%;
    font-size: 0.97rem;
    padding: 16px;
  }
  .feature-grid > div, .service-cards > div {
    font-size: 0.97rem;
  }
  .footer-contact {
    max-width: 100%;
    font-size: 0.95rem;
  }
}

/* =============
MOBILE MENU
============== */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #F6D155;
  cursor: pointer;
  margin-left: 12px;
  z-index: 301;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #6EC1E4;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #1B253D;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.68,-0.55,.27,1.35);
  box-shadow: -8px 0 28px #283A6B59;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  margin: 20px 24px 14px 0;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #F6D155;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 600;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #6EC1E4;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 30px 10px 32px;
  width: 100vw;
}
.mobile-nav a {
  color: #F6D155;
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  padding: 12px 0 6px 0;
  width: 100%;
  display: block;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #6EC1E4;
  background: #283A6B;
  outline: none;
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none !important;
  }
  .cta-button {
    margin-left: 8px;
  }
}

/* ==================
COOKIE CONSENT BANNER
================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #283A6B;
  color: #F6D155;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  padding: 20px 20px 18px 22px;
  z-index: 2000;
  box-shadow: 0 -4px 24px #6EC1E455;
  transition: transform 0.29s;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  opacity: 0.95;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-left: auto;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: #6EC1E4;
  color: #283A6B;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  box-shadow: 0 1px 5px #6EC1E420;
  transition: background 0.17s, color 0.17s, box-shadow 0.16s;
  cursor: pointer;
}
.cookie-banner button.cookie-reject {
  background: #F6D155;
  color: #283A6B;
}
.cookie-banner button.cookie-settings {
  background: #223155;
  color: #F6D155;
  border: 1.5px solid #F6D155;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  opacity: 0.88;
  box-shadow: 0 2px 15px 0 #F6D15533;
  outline: none;
}
@media (max-width:600px){
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 0;
    gap: 10px;
    padding: 13px 16px 14px 16px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3000;
  width: 100vw;
  height: 100vh;
  background: rgba(32,43,69,0.89);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #223155;
  color: #F5F7FA;
  border-radius: 18px;
  box-shadow: 0 10px 38px 0 #1B253DAD;
  min-width: 310px;
  max-width: 420px;
  padding: 38px 36px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 18px;
  background: transparent;
  border: none;
  color: #F6D155;
  font-size: 2rem;
  cursor: pointer;
  z-index: 3110;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 17px;
  background: #283A6B;
  border-radius: 9px;
  padding: 12px 14px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
}
.cookie-modal-category strong {
  color: #F6D155;
  margin-right: 7px;
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 22px;
  border-radius: 24px;
  background: #6EC1E4;
  position: relative;
  outline: none;
  transition: background 0.17s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #F6D155;
}
.cookie-toggle::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFF;
  transition: left 0.17s;
}
.cookie-toggle:checked::after {
  left: 24px;
}
.cookie-toggle[disabled] { opacity: 0.51; cursor: not-allowed; }

.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: #6EC1E4;
  color: #283A6B;
  padding: 9px 18px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal-actions button:nth-child(2) {
  background: #F6D155;
  color: #283A6B;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  opacity: .85;
}
@media (max-width: 600px) {
  .cookie-modal-content {
    padding: 20px 8vw 16px 8vw;
    max-width: 98vw;
    min-width: 0;
  }
}

/* ===========
ANIMATIONS
=========== */
.section, main section, .card, .service-cards > div, .feature-grid > div, .testimonial-card, .cookie-banner, .cta-button, .cookie-modal-content {
  transition: box-shadow 0.24s, background 0.31s, border 0.21s, color 0.21s, transform 0.28s;
}
.card:hover, .service-cards > div:hover, .feature-grid > div:hover, .testimonial-card:hover {
  transform: translateY(-3px) scale(1.018);
}
.cta-button:active, button:active {
  transform: scale(0.97);
}

/* ================
VISUAL ACCENTS
================ */
.section {
  position: relative;
  overflow: hidden;
}
.section::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -65px;
  width: 280px;
  height: 270px;
  background: radial-gradient(circle, #6EC1E425 65%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}
.section:nth-child(even)::before {
  left: -70px; right: auto; top: auto; bottom: -55px;
  background: radial-gradient(circle, #F6D1552b 59%, transparent 100%);
}
.section > .container, .section > .content-wrapper {
  position: relative;
  z-index: 1;
}

/* ICON STYLES */
ul li img, .feature-grid img, .service-cards img {
  height: 30px;
  width: 30px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
  filter: drop-shadow(0 0 2px #6EC1E488);
}

/* Helpful utility classes */
.hide { display: none !important; }
.flex { display: flex !important; }
.center { justify-content: center; align-items: center; }
.gap-20 { gap: 20px !important; }

/* ===============
SCROLLBAR STYLING
================== */
::-webkit-scrollbar {
  width: 9px;
  background: #223155;
}
::-webkit-scrollbar-thumb {
  background: #6EC1E4;
  border-radius: 15px;
}
::-webkit-scrollbar-track {
  background: #223155;
}

/* ==============
END CSS
================ */
