/* --- 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, 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F1FAFF;
  color: #02375E;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol { margin-left: 1.5em; }
a { text-decoration: none; color: #02375E; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* --- FONT IMPORTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&family=Open+Sans:wght@400;600&display=swap');

/* --- COLOR VARIABLES AND UTILITIES --- */
:root {
  --primary: #02375E;
  --secondary: #6CA6CD;
  --accent: #F1FAFF;
  --highlight: #65d8dc;
  --warn: #ffd966;
  --danger: #EF476F;
  --success: #06D6A0;
  --black: #121212;
  --white: #fff;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 24px;
  text-shadow: 2px 2px 0 var(--secondary), 4px 4px 14px var(--highlight);
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--secondary);
}
h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  font-weight: 600;
}
strong, b {
  font-weight: 700;
}
p,
ul, ol, li, span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
}
p {
  margin-bottom: 16px;
}
.text-section > * + * {
  margin-top: 16px;
}
.text-section ul, .text-section ol {
  margin-bottom: 16px;
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(92deg, var(--secondary) 60%, var(--highlight) 100%);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 24px 0 rgba(108,166,205,.13);
  margin: 20px 0 4px 0;
  transition: background 0.2s, box-shadow 0.18s, transform 0.1s;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(84deg, var(--highlight), var(--secondary) 80%);
  color: var(--primary);
  box-shadow: 0 4px 40px 0 rgba(6,214,160,.30);
  transform: translateY(-2px) scale(1.04) rotate(-1.5deg);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  border: 2px solid var(--secondary);
  border-radius: 40px;
  padding: 12px 28px;
  cursor: pointer;
  margin: 8px 0;
  transition: background .18s, border-color .18s, color .15s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--highlight);
}
.btn-danger {
  background: var(--danger);
  color: var(--white);
  border: none;
  border-radius: 28px;
  padding: 10px 22px;
  font-weight: 700;
  transition: background .16s;
}
.btn-danger:hover, .btn-danger:focus {
  background: #db2e55;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- CLASSIC FLEXBOX PATTERNS --- */
.features-grid, .services-list, .categories-list,
.inspiration-list, .guides-list, .faq-accordion, .product-grid, .services-list-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
  justify-content: flex-start;
}

.features-grid > div, .services-list > div, .categories-list > div,
.inspiration-list > div, .guides-list > div, .faq-accordion > div,
.product-grid > div, .services-list-detailed > div {
  flex: 1 1 220px;
  min-width: 210px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(108,166,205,.11);
  padding: 24px 18px 18px 18px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .21s, transform .15s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.features-grid > div:hover, .services-list-detailed > div:hover,
.inspiration-list > div:hover, .product-grid > div:hover {
  box-shadow: 0 8px 44px 0 rgba(6,214,160,.11), 0 1px 5px 0 rgba(2,55,94,.13);
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
  z-index: 2;
}
.features-grid img, .services-list-detailed img, .categories-list img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px 0 rgba(108,166,205,.08);
  background: var(--accent);
}

@media(max-width: 900px) {
  .features-grid > div, .services-list-detailed > div,
  .inspiration-list > div, .product-grid > div { min-width: 150px; }
}

/* --- CARDS & FLEX CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(6,214,160,.09);
  padding: 20px;
  transition: box-shadow .15s, transform .13s;
}
.card:hover {
  box-shadow: 0 14px 32px 2px rgba(108,166,205,.20), 0 2px 6px 1px rgba(2,55,94,.08);
  transform: translateY(-4px) scale(1.03);
}
.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;
}

/* --- TESTIMONIALS --- */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 260px;
  background: var(--white);
  color: var(--primary);
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(34,166,205,.08);
  margin-bottom: 20px;
  font-size: 1.08rem;
  position: relative;
  z-index: 1;
  transition: box-shadow .16s, transform .11s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 34px 0 rgba(2,55,94,.13);
  transform: scale(1.03) rotate(-1deg);
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04em;
  margin-top: 6px;
  color: var(--secondary);
  letter-spacing: .2px;
}
.testimonial-card p {
  color: var(--primary);
  font-style: italic;
}

/* --- CONTACT INFO & QUICK CONTACT --- */
.contact-info-block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px 0;
}
.contact-info-block > div {
  flex: 1 1 260px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(108,166,205,.07);
  padding: 24px 18px 18px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info-block img {
  width: 20px;
  margin-right: 10px;
  vertical-align: middle;
}
.quick-contact h3 {
  margin-bottom: 8px;
  color: var(--primary);
}
.quick-contact a {
  margin-top: 10px;
}

/* --- FOOTER --- */
footer {
  padding: 40px 10px 20px 10px;
  background: var(--secondary);
  color: var(--white);
  font-family: 'Open Sans', Arial, sans-serif;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 14px;
  justify-content: flex-start;
  align-items: center;
}
.footer-nav a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
  font-size: 1rem;
  transition: color .14s;
}
.footer-nav a:hover {
  color: var(--highlight);
}
footer p {
  font-size: .95rem;
  color: var(--white);
}

/* --- HEADER & PRIMARY NAVIGATION --- */
header {
  background: var(--primary);
  padding: 0;
  position: relative;
  z-index: 2;
}
header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: flex-start;
  height: 90px;
  position: relative;
}
.logo img {
  height: 54px;
  margin-right: 12px;
  vertical-align: middle;
  filter: drop-shadow(0 2px 8px rgba(6,214,160,0.13));
}
.main-nav {
  display: flex;
  gap: 18px;
  margin: 0 16px 0 10px;
  flex-wrap: wrap;
}
.main-nav a {
  padding: 8px 18px;
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  border-radius: 28px;
  transition: background .17s, color .13s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--highlight);
  color: var(--primary);
  outline: none;
}
header .btn-primary {
  margin: 0 0 0 20px;
  font-size: 1rem;
  padding: 10px 20px;
}
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2.1rem;
  border: none;
  border-radius: 12px;
  height: 48px;
  width: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
  transition: background .13s, color .13s;
  z-index: 22;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--highlight);
  color: var(--white);
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 55, 94, 0.91);
  z-index: 50;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.59,.03,0,1.01);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px 28px 28px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--white);
  font-size: 2.35rem;
  border: none;
  padding: 0 0 16px 0;
  cursor: pointer;
  margin-bottom: 10px;
  align-self: flex-end;
  transition: color .15s;
}
.mobile-menu-close:hover { color: var(--warn); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 10px;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 13px 9px 13px 0;
  border-radius: 16px;
  background: none;
  transition: background .15s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--highlight);
  color: var(--primary);
}

@media (max-width: 1150px) {
  header .container { flex-wrap: wrap; height: auto; min-height: 70px; }
  .main-nav { flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 4px; }
  header .btn-primary { margin-left: 6px; }
}
@media (max-width: 820px) {
  header .container { gap: 12px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
    gap: 4px;
    height: 62px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .btn-primary {
    display: none;
  }
}

/* --- HERO AND SECTIONS --- */
section {
  margin-bottom: 60px;
  padding: 40px 0px;
}
section:last-child {
  margin-bottom: 0;
}
section .container {
  padding-left: 0;
  padding-right: 0;
}

/* --- RESPONSIVITY AND FLEX DIRECTION OVERRIDES --- */
@media(max-width: 900px){
  .features-grid, .services-list, .categories-list, .product-grid,
  .inspiration-list, .guides-list, .faq-accordion, .services-list-detailed {
    gap: 14px;
  }
  .features-grid > div, .services-list-detailed > div,
  .inspiration-list > div, .product-grid > div {
    padding: 16px 10px 13px 10px;
  }
}
@media (max-width: 768px) {
  .features-grid, .services-list, .categories-list,
  .inspiration-list, .guides-list, .faq-accordion, .product-grid, .services-list-detailed {
    flex-direction: column;
    gap: 14px;
  }
  .content-wrapper, .contact-info-block, .text-image-section, .content-grid {
    flex-direction: column;
  }
  .testimonial-card { min-width: 0; }
  .contact-info-block > div { min-width: 0; }
  section { padding: 26px 0; }
}

/* --- ACCORDION FAQ / COLLAPSE --- */
.faq-accordion > div {
  background: var(--accent);
  border-left: 6px solid var(--secondary);
  border-radius: 15px;
  box-shadow: 0 2px 8px 0 rgba(6,214,160,0.07);
  margin-bottom: 20px;
  padding: 16px 18px;
  transition: border-color .18s, box-shadow .13s;
}
.faq-accordion > div:hover {
  border-color: var(--highlight);
  box-shadow: 0 6px 18px 0 rgba(2,55,94,0.09);
}
.faq-accordion strong { color: var(--primary); font-weight: bold; }
.faq-accordion p {
  margin-top: 8px;
  color: var(--primary);
  font-style: italic;
}

/* --- ARTISTIC / CREATIVE ELEMENTS --- */
section h2, .features-grid > div h3, .services-list-detailed > div h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  background: linear-gradient(90deg, var(--secondary) 70%, var(--highlight) 110%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  letter-spacing: 0.7px;
}
features-grid > div {
  border-left: 8px solid var(--highlight);
  border-top-right-radius: 32px 24px;
  border-bottom-left-radius: 40px 26px;
}

.features-grid > div:before, .testimonial-card:before {
  content: '';
  display: block;
  position: absolute;
  left: -12px; top: -15px;
  width: 48px; height: 38px;
  background: rgba(108,166,205,0.11);
  border-radius: 56% 29% 75% 63%/49% 37% 61% 61%;
  filter: blur(4px);
  z-index: 0;
}
.testimonial-card:before {
  left: -15px; top: -20px;
  width: 64px; height: 32px;
  background: rgba(6,214,160,0.08);
  border-radius: 38% 58% 80% 61%/64% 59% 34% 49%;
  filter: blur(5px);
}

/* --- CATEGORIES / SHOP ICONS --- */
.categories-list > div {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--secondary);
  border-radius: 18px;
  padding: 18px 18px 12px 18px;
  gap: 16px;
  min-width: 156px;
  justify-content: flex-start;
  margin-bottom: 20px;
  transition: box-shadow .16s, border-color .12s;
}
.categories-list > div:hover {
  border-color: var(--highlight);
  box-shadow: 0 8px 24px 0 rgba(2,55,94,.10);
}
.categories-list img {
  width: 34px;
  height: 34px;
  margin-right: 2px;
}
.categories-list a {
  color: var(--primary);
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07em;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background .11s, color .13s;
}
.categories-list a:hover { background: var(--highlight); color: var(--white); }

/* --- MODALS, ANIMATIONS --- */
@keyframes slideInUp {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn { from { opacity: 0;} to { opacity: 1; } }

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--accent);
  padding: 20px 14px 22px 14px;
  box-shadow: 0 -8px 24px 0 rgba(2,55,94,0.11);
  z-index: 1010;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 1rem;
  animation: slideInUp 0.48s cubic-bezier(.39,1.45,.59,1.01);
}
.cookie-banner.hidden {
  display: none;
}
.cookie-banner-message {
  flex: 1 1 260px;
  min-width: 0;
  margin-right: 10px;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner .btn-primary {
  background: var(--success);
  color: var(--primary);
  font-size: 1.06rem;
  padding: 11px 22px;
  border-radius: 26px;
}
.cookie-banner .btn-secondary {
  border-color: var(--secondary);
  color: var(--secondary);
  background: transparent;
  font-size: .97rem;
  padding: 10px 20px;
  border-radius: 26px;
  font-weight: 600;
}
.cookie-banner .btn-secondary:hover {
  background: var(--secondary);
  color: var(--white);
}
.cookie-banner .btn-danger {
  background: var(--danger);
  font-size: .97rem;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 24px;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;width: 100vw; height: 100vh;
  background: rgba(2,55,94,0.73);
  z-index: 1200;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn .44s cubic-bezier(.59,.51,0,1.01);
}
.cookie-modal {
  background: var(--accent);
  color: var(--primary);
  border-radius: 34px;
  box-shadow: 0 4px 64px 0 rgba(34,166,205,.18);
  padding: 42px 28px 28px 28px;
  min-width: 310px; max-width: 410px;
  animation: slideInUp .6s cubic-bezier(.59,.91,.29,.70);
  position: relative;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
  color: var(--primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 14px;
  padding: 13px 12px;
  margin-bottom: 9px;
}
.cookie-category label {
  font-weight: 700;
  color: var(--primary);
}
.cookie-category input[type='checkbox'] {
  width: 21px;
  height: 21px;
  margin-right: 6px;
  accent-color: var(--secondary);
}
.cookie-modal .modal-actions {
  display: flex; gap: 17px; justify-content: flex-end;
}
.cookie-modal .btn-primary { padding: 8px 20px; font-size: 1rem; }
.cookie-modal .btn-secondary { padding: 8px 16px; font-size: 1rem; }
.cookie-modal .btn-danger { padding: 8px 16px; font-size: 1rem; }
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  color: var(--secondary);
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal .cookie-modal-close:hover { color: var(--danger); }

/* --- FORM ELEMENTS --- */
input[type="text"], input[type="email"], input[type="number"], textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--secondary);
  background: var(--accent);
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 18px;
  transition: border-color .14s;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, textarea:focus {
  border-color: var(--highlight);
}
label { font-weight: 700; }

/* --- UTILITY CLASSES --- */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.gap-12 { gap: 12px; }
.rounded-18 { border-radius: 18px; }
.shadow-lg { box-shadow: 0 4px 54px 0 rgba(108,166,205,0.18); }

/* --- ARTISTIC ACCENTS --- */
section .container:before {
  content: '';
  display: block;
  position: absolute;
  left: -80px;
  top: -60px;
  width: 170px;
  height: 180px;
  background: rgba(6,214,160,0.10);
  border-radius: 64% 36% 67% 38% / 55% 21% 83% 45%;
  filter: blur(38px);
  pointer-events: none;
  z-index: 0;
}
section .container { position: relative; z-index: 1; }

/* --- ARTISTIC FONTS OVERRIDE --- */
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.45rem; }
  .footer-nav a, .main-nav a { font-size: .99rem; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.01rem; }
  h3 { font-size: .98rem; }
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--accent); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 7px; }

/* --- SELECTION COLORS --- */
::selection { background: var(--highlight); color: var(--white); }

/* --- END OF STYLE.CSS --- */
