/* ========================================================================== 
   CSS RESET & BASELINE NORMALIZATION
   ========================================================================== */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  background-color: #FDFDFB;
  color: #23272F;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  color: #274060;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li, span, label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
strong {
  font-weight: bold;
}

/* ========================================================================== 
   BRAND COLORS & CREATIVE ARTISTIC THEME
   ========================================================================== */
:root {
  --primary: #274060;
  --secondary: #FDD835;
  --accent: #FFFFFF;
  --creative-pink: #ee3577;
  --creative-light-1: #F7F7FC;
  --creative-light-2: #FCE3B8;
  --creative-blue: #2E8FFF;
  --creative-gradient-1: #FDD835;
  --creative-gradient-2: #ee3577;
  --shadow-md: 0 4px 20px 0 rgba(39, 64, 96, 0.10);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 7px;
  --focus: #2E8FFF;
}

body { background-color: var(--creative-light-1); color: #23272F; }

/* Artistic display font for creative headlines */
.creative-font, h1, h2, h3 {
  font-family: 'Montserrat', system-ui, sans-serif;
  letter-spacing: 0.01em;
}

/* ========== CONTAINER & CORE LAYOUTS ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: none;
}

.text-section {
  background: var(--creative-light-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 34px 24px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px 22px;
  min-width: 260px;
  flex: 1 1 320px;
  transition: transform 0.2s, box-shadow 0.15s;
}
.card:hover, .card:focus-within {
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
  box-shadow: 0 8px 26px rgba(39,64,96,0.17), 0 1.5px 5px 0 #ee3577;
  border-bottom: 5px solid var(--secondary);
}

.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;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  width: 100%;
  background: var(--primary);
  color: var(--accent);
  padding: 0;
  box-shadow: 0 2px 10px rgba(39,64,96,0.09);
  position: relative;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 18px;
  padding-top: 0;
  padding-bottom: 0;
}
header img {
  max-height: 46px;
  margin-right: 16px;
}
nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: background 0.19s, color 0.17s;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  outline: 0;
}
.cta-button {
  background: var(--creative-pink);
  color: #fff;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  border: none;
  padding: 12px 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 10px 2px rgba(238,53,119, 0.22);
  transition: background 0.22s, color 0.18s, transform 0.17s;
  cursor: pointer;
  margin-left: 10px;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.06) rotate(-2deg);
  outline: 0;
}

/* ========== MOBILE MENU (BURGER NAVIGATION) ========== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 23px;
  right: 20px;
  background: none;
  color: var(--secondary);
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  z-index: 105;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39, 64, 96, 0.96);
  z-index: 110;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.7,.2,.2,1);
  padding: 38px 32px 32px 24px;
  box-sizing: border-box;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  color: var(--secondary);
  background: none;
  border: none;
  font-size: 2.3rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 22px;
  transition: color 0.18s;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 12px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.28rem;
  font-weight: 600;
  padding: 12px 0;
  border-radius: var(--radius-md);
  transition: color 0.17s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* ========== HERO AND SECTION STYLES ========== */
.hero, .section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-list, .benefits-list, .usp-list, .workshop-list, .workshop-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
  margin-top: 6px;
  margin-bottom: 18px;
  font-size: 1rem;
}
.feature-list li, .benefits-list li, .usp-list li, .workshop-list li, .workshop-benefits li {
  background: var(--accent);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 5px rgba(39,64,96,0.08);
  padding: 12px 20px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
  min-width: 210px;
}
.feature-list li img, .usp-badges img, .footer-contact img {
  width: 26px;
  height: 26px;
  margin-right: 8px;
}
.usp-badges {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 14px;
  margin-bottom: 4px;
}
.usp-badges span {
  background: var(--creative-blue);
  color: var(--accent);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
}
.category-grid li {
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius-md);
  padding: 13px 19px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.07rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.benefits-list li {
  background: #ee3577;
  color: #fff;
  font-weight: 600;
}
.brand-logos {
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 20px 0 12px 0;
  flex-wrap: wrap;
}
.brand-logos img {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 6px 0 #eceff1;
  padding: 10px 18px;
  max-width: 90px;
  max-height: 64px;
}
.article-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}
.article-previews article {
  flex: 1 1 280px;
  background: var(--accent);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  min-width: 220px;
}
.article-previews a {
  color: var(--creative-pink);
  font-weight: 700;
  transition: color 0.18s;
}
.article-previews a:hover, .article-previews a:focus {
  color: var(--primary);
  text-decoration: underline;
}
.category-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  margin-top: 13px;
}
.category-links a {
  padding: 10px 20px;
  background: var(--creative-blue);
  color: #fff;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  transition: background 0.18s;
}
.category-links a:hover, .category-links a:focus {
  background: var(--secondary);
  color: var(--primary);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 13px;
  counter-reset: process;
  margin-bottom: 18px;
}
.process-steps li {
  position: relative;
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  border-radius: var(--radius-md);
  padding: 14px 22px;
}
.process-steps li::before {
  counter-increment: process;
  content: counter(process) '.';
  margin-right: 14px;
  color: var(--creative-pink);
  font-weight: 900;
  font-size: 1.2rem;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 24px;
  margin-bottom: 22px;
}
.service-list li {
  background: var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  flex: 1 1 255px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
  position: relative;
  transition: box-shadow 0.19s, transform 0.18s;
}
.service-list li:hover, .service-list li:focus-within {
  box-shadow: 0 8px 26px rgba(39,64,96,0.17), 0 1.5px 5px 0 #FDD835;
  border-left: 5px solid var(--creative-pink);
  transform: translateY(-2px) scale(1.016) rotate(1deg);
}
.service-list h3 {
  color: var(--primary);
  margin-bottom: 0;
  font-size: 1.18rem;
  font-family: 'Montserrat', system-ui, sans-serif;
}
.service-list span {
  background: var(--creative-pink);
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: bold;
  padding: 7px 16px;
  border-radius: var(--radius-md);
  margin-top: 8px;
  box-shadow: 0 1.5px 5px 0 #ee3577;
  align-self: flex-end;
}

.gdpr-list {
  margin: 24px 0 9px 0;
  gap: 12px;
}
.gdpr-list li {
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin-bottom: 5px;
}

.opening-hours {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  border-radius: var(--radius-md);
  padding: 16px 19px;
  margin: 19px 0 11px 0;
  box-shadow: 0 1px 8px 0 #27406015;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1.05rem;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 9px;
}

/* ========== TESTIMONIALS ========== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fffbea;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  max-width: 400px;
  min-width: 240px;
  margin-bottom: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  border-left: 6px solid var(--creative-pink);
  transition: transform 0.18s, box-shadow 0.2s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 26px rgba(39,64,96,0.17), 0 1.5px 5px 0 #FDD835;
  transform: scale(1.017) rotate(-1deg) translateY(-2px);
}
.testimonial-card p {
  color: #23272F;
  font-size: 1.12rem;
  margin-bottom: 5px;
  font-style: italic;
}
.testimonial-card .star-rating {
  color: var(--creative-pink);
  font-size: 1.23rem;
}
.testimonial-card span {
  color: var(--primary);
  font-size: 1rem;
  font-style: normal;
}

/* ========== FOOTER ========== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 35px 0 18px 0;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-top: 70px;
  box-shadow: 0 -2px 18px rgba(39,64,96,0.12);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  gap: 16px;
  flex-direction: row;
  align-items: center;
}
footer nav a {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.15s;
  padding: 7px 10px;
  border-radius: 6px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--primary);
  background: var(--secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 7px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  font-size: 0.97rem;
  color: var(--accent);
  font-family: 'Open Sans', Arial, sans-serif;
  gap: 8px;
}

/* ========== COOKIE BANNER & COOKIE MODAL ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #ffffff;
  color: #23272f;
  box-shadow: 0 -2px 18px 0 rgba(39, 64, 96, 0.22);
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 600;
  animation: cookieSlideIn 0.6s cubic-bezier(.77,0,.18,1.03);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(54px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.04rem;
  color: #23272f;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}
.cookie-button, .cookie-settings-btn {
  background: var(--primary);
  color: var(--accent);
  border: none;
  padding: 11px 23px;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  min-width: 124px;
  box-shadow: 0 2px 10px rgba(39,64,96,0.08);
  transition: background 0.19s, color 0.14s, transform 0.16s;
}
.cookie-button.cookie-accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-button.cookie-reject {
  background: #ee3577;
  color: #fff;
}
.cookie-button:hover, .cookie-button:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  transform: scale(1.045);
  outline: none;
  background: var(--creative-blue);
  color: #fff;
}
.cookie-modal {
  position: fixed;
  z-index: 650;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39,64,96,0.89);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.28s ease;
}
@keyframes cookieModalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px 21px 30px;
  min-width: 290px;
  max-width: 98vw;
  box-shadow: 0 8px 32px rgba(39,64,96,0.21);
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: left;
}
.cookie-modal-content h2 {
  font-size: 1.28rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 4px;
}
.cookie-category label {
  font-size: 1.07rem;
  color: var(--primary);
}
.cookie-toggle {
  width: 38px;
  height: 20px;
  background: var(--creative-light-2);
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: 8px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle span {
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: var(--creative-pink);
  border-radius: 50%;
  transition: left .22s cubic-bezier(.36,1.01,.7,.71), background 0.18s;
}
.cookie-toggle input:checked + span {
  left: 20px;
  background: var(--creative-blue);
}
.cookie-modal .close-cookie-modal {
  align-self: flex-end;
  background: none;
  color: var(--primary);
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal .close-cookie-modal:focus {
  outline: 2px solid var(--secondary);
}

/* ========== BUTTONS, LINKS, MICRO-INTERACTIONS ========== */
button, .cta-button, .cookie-button, .cookie-settings-btn {
  outline: none;
}
button:active, .cta-button:active, .cookie-button:active {
  transform: scale(0.98);
}
a:focus {
  outline: 2px solid var(--creative-pink);
}

/* ========== RESPONSIVE QUERIES ========== */
@media (max-width: 1135px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 950px) {
  .container {
    max-width: 760px;
  }
  .service-list, .article-previews {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .footer-contact, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  /* Header adjustments for mobile */
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 8px 12px 8px 12px;
  }
  nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    right: 15px;
  }
  .mobile-menu {
    padding-top: 56px;
  }
  .content-wrapper, .text-section {
    padding: 22px 8px;
    border-radius: var(--radius-md);
  }
  .section {
    margin-bottom: 36px;
    padding: 24px 6px;
  }
  .card-container, .content-grid, .testimonial-slider, .service-list, .article-previews {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
  .brand-logos {
    flex-direction: row;
    gap: 18px;
    justify-content: flex-start;
    margin-bottom: 6px;
  }
  .category-grid, .feature-list, .usp-badges, .benefits-list, .workshop-list, .workshop-benefits {
    flex-direction: column;
    gap: 11px;
  }
  .testimonial-card, .card, .service-list li, .article-previews article {
    min-width: 0;
    width: 100%;
  }
  .process-steps li {
    padding: 12px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.1rem; }
  header img { max-height: 32px; }
  .brand-logos img { max-width: 56px; max-height: 38px; padding: 5px 8px; }
  .cookie-modal-content { padding: 18px 7px; min-width: unset; }
}

/* ========== PRINT IMPROVEMENTS ========== */
@media print {
  header, footer, .cookie-banner, .cookie-modal, .mobile-menu { display: none !important; }
  main, .container { width: 100% !important; max-width: 100% !important; }
  body { background: #fff; color: #23272F; }
}

/* ========== UTILITY CLASSES ========== */
.mt-2 { margin-top: 2px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mb-12 { margin-bottom: 12px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.fw-bold { font-weight: bold; }
.fs-14 { font-size: 0.87rem; }
.fs-18 { font-size: 1.12rem; }

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