/* 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F3F7FA;
  color: #1A2236;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #54B6E9;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1A2236;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* TYPOGRAPHY SCALE & HEADINGS */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #1A2236;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
@media (min-width: 420px) {
  h1 { font-size: 2.5rem; }
}
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #1A2236;
  margin-bottom: 14px;
}
@media (min-width: 420px) {
  h2 { font-size: 2rem; }
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #1A2236;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A2236;
}
p, li, address {
  font-size: 1rem;
  color: #232D41;
}
strong {
  font-weight: 600;
}
blockquote {
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #1A2236;
  margin: 0;
}

/* CONTAINER & FLEX PATTERNS */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px 0 rgba(26,34,54,0.08);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 12px 32px 0 rgba(26,34,54,0.16);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 28px 0 rgba(26,34,54,0.09);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px 0 rgba(84,182,233,0.19);
  transform: translateY(-4px) scale(1.01);
}
.testimonial-card img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
}
.testimonial-card blockquote {
  color: #1A2236;
  font-size: 1rem;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: #143258;
  opacity: 0.9;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 8px;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* HERO & GRADIENTS */
section:first-of-type, .hero, .main-hero {
  background: linear-gradient(110deg, #54B6E9 0%, #F3F7FA 80%);
  border-radius: 0 0 40px 40px;
}
@media (max-width: 768px) {
  section:first-of-type, .hero, .main-hero {
    border-radius: 0 0 20px 20px;
    background: linear-gradient(110deg, #54B6E9 0%, #F3F7FA 90%);
  }
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: none;
  border-radius: 32px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  cursor: pointer;
  outline: none;
  transition: background 0.25s, color 0.2s, box-shadow 0.2s, transform 0.22s;
  box-shadow: 0 2px 12px 0 rgba(84,182,233,0.12);
  margin: 8px 0;
}
.btn-primary {
  background: linear-gradient(90deg, #54B6E9 0%, #1A2236 100%);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(60deg, #1A2236 0%, #54B6E9 100%);
  box-shadow: 0 6px 24px 0 rgba(26,34,54,0.22);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: #fff;
  color: #1A2236;
  border: 2px solid #54B6E9;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #54B6E9;
  color: #fff;
  box-shadow: 0 6px 20px 0 rgba(84,182,233,0.18);
  transform: translateY(-2px) scale(1.03);
}

/* FORMS & INPUTS */
input[type="text"], input[type="email"], input[type="password"] {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 14px;
  border: 1.5px solid #c3dbe8;
  border-radius: 8px;
  background: #fafdff;
  transition: border-color 0.18s;
  width: 100%;
  margin-bottom: 12px;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus {
  border-color: #54B6E9;
  outline: none;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 1px 20px 0 rgba(26,34,54,0.07);
  z-index: 1010;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header a img {
  height: 44px;
  width: auto;
  margin-right: 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 14px;
  color: #1A2236;
  border-radius: 7px;
  transition: color 0.2s, background 0.17s;
}
header nav a:hover, header nav a.active {
  color: #54B6E9;
  background: #F3F7FA;
}
header .btn-primary {
  margin-left: 16px;
}
@media (max-width: 900px) {
  header nav, header .btn-primary {
    display: none;
  }
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: transparent;
  color: #1A2236;
  border: none;
  cursor: pointer;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #DFF2FC;
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  box-shadow: -6px 0 36px 0 rgba(84,182,233,0.15);
  z-index: 2300;
  transform: translateX(100vw);
  transition: transform 0.32s cubic-bezier(.75,.04,.41,1.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: #1A2236;
  cursor: pointer;
  align-self: flex-end;
  margin: 0 24px 16px 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background 0.19s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #edeff1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 16px 30px 0 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  color: #1A2236;
  padding: 13px 10px;
  border-radius: 9px;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #DFF2FC;
  color: #54B6E9;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #54B6E9 0%, #1A2236 110%);
  color: #fff;
  padding-top: 40px;
  padding-bottom: 20px;
  margin-top: 60px;
  border-radius: 34px 34px 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
footer a {
  color: #fff;
  opacity: 0.96;
  padding: 0 6px;
  transition: color 0.18s;
}
footer a:hover {
  color: #fffbdd;
}
.footer-legal, .footer-contact {
  font-size: 0.97rem;
  opacity: 0.85;
  text-align: center;
}
@media (max-width: 700px) {
  footer .content-wrapper {
    gap: 6px;
  }
}

/* SECTIONS, LISTS, GRIDS */
ul, ol {
  margin-left: 26px;
  margin-bottom: 10px;
  line-height: 1.7;
}
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 6px;
}
ul li::marker, ol li::marker { color: #54B6E9; }
li strong {
  color: #1A2236;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.category-filters {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0 10px 0;
}
.category-filters button {
  background: #fff;
  color: #54B6E9;
  border: 1.5px solid #54B6E9;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 7px 19px;
  transition: background 0.17s, color 0.15s;
  cursor: pointer;
}
.category-filters button:hover, .category-filters button:focus {
  background: #54B6E9;
  color: #fff;
}
.post-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.post-grid article {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 15px 0 rgba(26,34,54,0.08);
  padding: 18px 22px;
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s;
}
.post-grid article:hover {
  box-shadow: 0 8px 28px 0 rgba(84,182,233,0.17);
}
.post-grid article h3 {
  margin-bottom: 4px;
}
.post-grid article a {
  color: #54B6E9;
  margin-top: 2px;
  align-self: flex-start;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.18s;
}
.post-grid article a:hover {
  color: #1A2236;
}

/* ADDRESS SECTIONS */
address .text-section {
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
address img {
  width: 26px;
  height: 26px;
  margin-right: 6px;
}

/* NEWSLETTER SECTION */
.newsletter {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 24px 0 rgba(84,182,233,0.11);
  padding: 30px 28px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.newsletter p, .newsletter ul li {
  font-size: 1rem;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #1A2236;
  box-shadow: 0 -3px 24px 0 rgba(84,182,233,0.18);
  z-index: 3333;
  padding: 24px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-radius: 20px 20px 0 0;
  transition: transform 0.32s ease;
}
.cookie-banner.hide {
  transform: translateY(140%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner p {
  line-height: 1.6;
  text-align: center;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 7px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 24px;
  margin: 2px 0;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.13s;
}
.cookie-banner .cookie-accept {
  background: #54B6E9;
  color: #fff;
  font-weight: 600;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #1A2236;
}
.cookie-banner .cookie-reject {
  background: #F3F7FA;
  color: #1A2236;
}
.cookie-banner .cookie-reject:hover {
  background: #dde8ef;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: #54B6E9;
  border: 1.5px solid #54B6E9;
  font-weight: 600;
}
.cookie-banner .cookie-settings:hover {
  background: #54B6E9;
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3340;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(26,34,54,0.38);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.active {
  pointer-events: all;
  opacity: 1;
  animation: fadeInBg 0.25s;
}
@keyframes fadeInBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px 22px 0 0;
  width: 100%;
  max-width: 420px;
  padding: 32px 24px 22px 24px;
  margin: 0 8px 18px 8px;
  box-shadow: 0 8px 40px 0 rgba(84,182,233,0.24);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideInModal 0.31s cubic-bezier(.75,.04,.41,1.18);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  position: relative;
}
.cookie-modal.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
@keyframes slideInModal {
  from { transform: translateY(80%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #e8f2f9;
  font-size: 1rem;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-toggle {
  width: 46px;
  height: 24px;
  border-radius: 24px;
  background: #dde8ef;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .slider {
  position: absolute;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d2dbdf;
  transition: left 0.2s, background 0.19s;
}
.cookie-toggle input:checked + .slider {
  left: 25px;
  background: #54B6E9;
}
.cookie-category.essential .cookie-toggle {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 11px;
}
.cookie-modal-actions button {
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 12px;
  border: none;
  background: #54B6E9;
  color: #fff;
  transition: background 0.2s;
  cursor: pointer;
}
.cookie-modal-actions button.secondary {
  background: #dde8ef;
  color: #1A2236;
}
.cookie-modal-actions button.secondary:hover {
  background: #F3F7FA;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #1A2236;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #1A2236;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  color: #54B6E9;
}

/* RESPONSIVE ADAPTATION */
@media (max-width: 600px) {
  .container {
    padding: 0 8px;
  }
  .section {
    padding: 18px 2px;
  }
  .card-content {
    padding: 16px 8px;
  }
  .card {
    flex-basis: 100%;
    min-width: 0;
  }
  .testimonial-card {
    padding: 12px;
  }
  .footer-contact, .footer-legal {
    font-size: 0.91rem;
  }
}

/* MICRO-INTERACTIONS */
.btn-primary, .btn-secondary, .category-filters button, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-modal-close, .cookie-modal-actions button {
  transition: background 0.22s, color 0.16s, box-shadow 0.23s, transform 0.17s;
}
.btn-primary:active, .btn-secondary:active, .category-filters button:active, .cookie-banner button:active, .cookie-modal-actions button:active {
  transform: scale(0.97);
}

/* ADDITIONAL FLEX UTILS (NO GRID!) */
.flex-centered {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* UTILITY */
.d-none {
  display: none !important;
}

/* END OF STYLE.CSS */
