/* ====== 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, 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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html { line-height: 1.15; -webkit-text-size-adjust: 100%; }
body { color: #1a2533; background: #F5F5F5; min-height: 100vh; font-family: 'Roboto', Arial, sans-serif; font-size: 16px; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button, input, textarea, select { font: inherit; }
button { background: none; border: none; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; color: #184873; letter-spacing: 0.01em; }

@font-face {
  font-family: 'Montserrat'; font-style: normal; font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold'),
    url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap') format('woff2');
}
@font-face {
  font-family: 'Roboto'; font-style: normal; font-weight: 400;
  src: local('Roboto'),
    url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap') format('woff2');
}

/* ==== COLORS (fallbacks always solid for contrast) ==== */
:root {
  --color-primary: #184873;
  --color-secondary: #39A9DB;
  --color-accent: #F5F5F5;
  --color-deepblue: #164066;
  --color-yellow: #F7C873;
  --color-pink: #F25CA2;
  --color-green: #27C39F;
  --color-dark: #222633;
  --color-body-bg: #F5F5F5;
  --color-light: #FFF;
  --color-shadow: rgba(24,72,115,0.07);
  --color-shadow-deep: rgba(24,72,115,0.15);
  --color-card-bg: #fff;
  --color-card-art1: #FFF9F2;
  --color-card-art2: #F2F7FB;
}

/* ==== GENERAL LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section {
  background: var(--color-card-art2);
  border-radius: 18px;
  box-shadow: 0 4px 24px var(--color-shadow);
  padding: 32px 26px;
  margin-bottom: 16px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  margin-bottom: 20px;
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 2px 16px var(--color-shadow);
  display: flex;
  flex-direction: column;
  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;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--color-light);
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px var(--color-shadow);
  border-left: 6px solid var(--color-secondary);
}
.testimonial-card blockquote {
  color: #222633;
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card div {
  color: #424B59;
  font-size: 15px;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  width: 100%;
  background: var(--color-primary);
  position: relative;
  z-index: 20;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  justify-content: flex-start;
  padding: 18px 0 10px 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  padding: 8px 10px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-dark);
  outline: none;
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 16px;
}
.cta-button {
  background: var(--color-secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 100px;
  margin-left: 12px;
  box-shadow: 0 2px 12px var(--color-shadow);
  border: none;
  font-size: 18px;
  transition: background 0.23s, color 0.24s, transform 0.16s;
  letter-spacing: 0.01em;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cta-button.secondary {
  background: var(--color-pink);
  color: #fff;
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: var(--color-yellow);
  color: var(--color-dark);
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 18px;
  padding: 10px;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 7px;
  font-size: 32px;
  z-index: 120;
  transition: background 0.21s, color 0.18s;
  border: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-yellow);
  outline: none;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #184873F2;
  transform: translateX(-110vw);
  transition: transform 0.37s cubic-bezier(.77,0,.18,1.01);
  z-index: 200;
  padding: 0 0 0 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 20px 0 0;
  font-size: 32px;
  background: var(--color-pink);
  color: #fff;
  padding: 7px 13px 5px 13px;
  border-radius: 50%;
  border: none;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-yellow);
  color: #222633;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100vw;
  margin-top: 30px;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 22px;
  padding: 14px 28px;
  border-radius: 30px;
  transition: background 0.18s, color 0.18s;
  color: #fff;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-yellow);
  color: var(--color-dark);
  outline: none;
}

@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 991px) {
  .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
  .main-nav { display: flex !important; }
}

/* ==== HERO SECTION ==== */
.hero-section {
  background: linear-gradient(85deg, #F5F5F5 90%, var(--color-secondary) 150%);
  position: relative;
  z-index: 1;
  padding: 64px 0 36px 0;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-section .content-wrapper {
  gap: 18px;
  text-align: center;
}
.hero-section h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.hero-section p {
  color: #355381;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 20px;
  margin-bottom: 18px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 710px) {
  .hero-section h1 { font-size: 32px; }
  .hero-section p { font-size: 16px; }
  .hero-section { padding-top: 44px; }
}

/* == SECTIONS == */
section h2 {
  font-size: 32px;
  margin-bottom: 15px;
}
section h3 {
  font-size: 22px;
  color: var(--color-pink);
  margin: 20px 0 10px 0;
}
section ul,
section ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
  padding-left: 0;
}
section ul li, section ol li {
  font-size: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #15314E;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.5;
}
section ul li img, section ol li img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-right: 8px;
}

/* == CARDS/LISTS == */
.card {
  background: linear-gradient(105deg, var(--color-yellow) 16px, var(--color-card-bg) 66% 100%);
  border-radius: 18px;
  min-width: 230px;
  box-shadow: 0 5px 26px var(--color-shadow), 0 1.5px 18px var(--color-shadow-deep);
  border: 2.5px solid var(--color-pink);
  position: relative;
  z-index: 1;
  transition: box-shadow 0.31s, transform 0.18s;
  margin-bottom: 20px;
  cursor: pointer;
}
.card:hover, .card:focus {
  box-shadow: 0 10px 38px var(--color-shadow-deep);
  transform: translateY(-4px) scale(1.025);
}
.card .card-title {
  font-size: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.card .card-content {
  font-size: 16px;
  color: #214167;
}

/* == BUTTONS == */
button, .cta-button {
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.2s, color 0.18s, box-shadow 0.21s;
}

/* == ANIMATIONS == */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
@keyframes scaleIn {
  0% { opacity: 0; transform: scale(.97); }
  100% { opacity: 1; transform: scale(1); }
}
.testimonial-card, .card {
  animation: fadeInUp 1s cubic-bezier(.22,1,.36,1) both;
}
section, .hero-section {
  animation: scaleIn 0.9s cubic-bezier(.22,1,.36,1) both;
}

/* == TYPOGRAPHY == */
h1 { font-size: 3rem; margin-bottom: 12px; }
h2 { font-size: 2rem; margin-bottom: 10px; }
h3 { font-size: 1.4rem; margin-bottom: 7px; }
h4 { font-size: 1.1rem; margin-bottom: 7px; }
p, address {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.65;
  color: #1a2533;
}
address {
  font-style: normal;
  color: #184873;
}
strong { font-weight: bold; }
em, i { font-style: italic; }


/* == SPACING == */
main {
  margin-bottom: 36px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px 18px 0 0;
  background: var(--color-accent);
  box-shadow: 0 2px 32px var(--color-shadow);
}
section:last-child { margin-bottom: 0; }

@media (max-width: 710px) {
  body { font-size: 15px; }
  .section { padding: 28px 8px; margin-bottom: 36px; }
  .card-container,
  .content-grid {
    gap: 14px;
  }
  .testimonial-card { padding: 13px; }
  .feature-item { gap: 8px; }
  section { padding: 30px 3vw; }
}


/* == FOOTER == */
footer {
  background: var(--color-primary);
  color: #fff;
  width: 100%;
  margin-top: 32px;
  padding: 0 0 6px 0;
}
footer .section { background: none; margin-bottom: 0; box-shadow: none; padding-bottom: 12px; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 6px 0;
  font-size: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 18px 0 0 0;
  font-size: 15px;
}
.footer-contact-details img {
  width: 44px;
  height: auto;
  margin-bottom: 10px;
}
footer address {
  color: #fff;
  text-align: center;
  font-size: 15px;
  margin-bottom: 5px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 22px;
  justify-content: center;
  margin: 24px 0 10px 0;
}
.footer-social a img {
  width: 30px; height: 30px; filter: grayscale(0) brightness(1.1);
  transition: filter 0.19s, transform 0.18s;
}
.footer-social a:hover img {
  filter: drop-shadow(0 3px 7px var(--color-pink)) brightness(1.33);
  transform: scale(1.1) rotate(-4deg);
}

/* == COOKIE CONSENT BANNER == */
.cookie-banner {
  position: fixed;
  z-index: 9000;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #184873;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 26px 12px 18px 14px;
  box-shadow: 0 -2px 24px var(--color-shadow);
  font-family: 'Roboto', Arial, sans-serif;
  animation: fadeInUp 0.8s both;
}
.cookie-banner p {
  text-align: center;
  margin-bottom: 6px;
  font-size: 16px;
  color: #fff;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin: 5px 0 0 0;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 25px;
  padding: 8px 22px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  margin: 0 2px;
  box-shadow: 0 2px 7px var(--color-shadow-deep);
  transition: background 0.17s, color 0.18s;
}
.cookie-btn-accept {
  background: var(--color-green);
  color: #fff;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: var(--color-yellow);
  color: var(--color-primary);
}
.cookie-btn-reject {
  background: var(--color-pink);
  color: #fff;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: var(--color-dark);
  color: var(--color-yellow);
}
.cookie-btn-settings {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: var(--color-secondary);
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 9500;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,72,115,0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #1a2533;
  border-radius: 16px;
  box-shadow: 0 8px 36px var(--color-shadow-deep);
  padding: 34px 34px 24px 34px;
  min-width: 320px;
  max-width: 98vw;
  font-family: 'Roboto', Arial, sans-serif;
  animation: fadeInUp 0.48s both;
  position: relative;
}
.cookie-modal h3 {
  font-size: 27px;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.cookie-modal li {
  font-size: 17px;
  color: #1a2533;
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-switch {
  width: 38px; height: 22px;
  position: relative;
  margin-left: 12px;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ddd;
  border-radius: 16px;
  transition: background 0.19s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--color-green);
}
.cookie-slider:before {
  content: '';
  position: absolute;
  height: 16px; width: 16px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 7px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 17px;
  font-size: 30px;
  background: var(--color-yellow);
  border-radius: 50%;
  border: none;
  transition: background 0.17s, color 0.17s;
  color: #164066;
  width: 40px; height: 40px;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: var(--color-pink);
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-modal { min-width: 96vw; padding: 22px 7vw 18px 7vw; }
}

/* == ARTISTIC EXTRAS (handdrawn borders/icons for creative touch) == */
.card, .testimonial-card {
  border-top: 4px dashed var(--color-pink);
  border-bottom: 4px dashed var(--color-yellow);
  box-shadow: 0 4px 22px var(--color-shadow) !important;
  position: relative;
  overflow: hidden;
}
.card:after, .testimonial-card:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -5px; left: 4%;
  width: 100px; height: 13px;
  background: url('assets/artistic-line.svg') repeat-x center/contain;
  opacity: .18;
  pointer-events: none;
}

.testimonial-card {
  border-top: 4px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-yellow);
}

/* == ARTISTIC FONTS == */
.hero-section h1, section h2 {
  letter-spacing: 0.02em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-shadow: 2px 7px 16px #F5F5F5, 0 2px 2px #FFF9F2;
}
section h3, .testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  color: var(--color-pink);
}

/* == UNIQUE ELEMENTS FOR VIBRANCY == */
.card,
.testimonial-card {
  background: linear-gradient(97deg, var(--color-card-art1) 66%, var(--color-accent) 100%);
  border-radius: 18px 32px 20px 15px/18px 13px 27px 22px;
}
section {
  background: linear-gradient(96deg, #F5F5F5 70%, #F2F7FB 100%);
}
@media (max-width: 600px) {
  section, .section { border-radius: 12px; }
  .card, .testimonial-card { border-radius: 10px 19px 17px 8px/10px 9px 16px 13px; }
}

/* == ARTISTIC HOVER EFFECTS == */
.card:hover, .card:focus {
  box-shadow: 0 6px 36px var(--color-pink), 0 3px 23px var(--color-shadow-deep);
  border-top: 4px solid var(--color-yellow);
  border-bottom: 4px dashed var(--color-secondary);
  transition: border-color 0.21s, box-shadow 0.21s, transform 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus {
  border-bottom: 3.5px solid var(--color-pink);
  border-top: 4px dashed var(--color-secondary);
  box-shadow: 0 10px 27px var(--color-pink);
}

/* == FORMS == */
input, textarea, select {
  width: 100%;
  background: #fff;
  border: 2.5px solid var(--color-secondary);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 16px;
  color: #184873;
  margin-bottom: 18px;
  transition: border 0.18s, background 0.15s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-pink);
  background: #F2F7FB;
}

/* == ACCESSIBILITY == */
:focus {
  outline: 2.5px solid var(--color-pink);
  outline-offset: 2px;
}
.skip-link {
  position: absolute; left: -1000px; top: auto;
  color: #fff; background: var(--color-pink); padding: 10px; border-radius: 12px;
  z-index: 3000; transition: left 0.2s;
}
.skip-link:focus { left: 10px; }

/* == PRINT STYLES == */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  section { background: none !important; box-shadow: none !important; }
}
