/* 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, 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;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #FBFAFF;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #253243;
  background: #FBFAFF;
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  list-style: none;
}
a {
  color: #27486C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1C2331;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  font-size: 16px;
  border: none;
  background: none;
  cursor: pointer;
}

/* BRAND FONTS */
h1, h2, h3, .cta, .logo, .footer-brand {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* COLOR PALETTE & PASTEL THEME */
:root {
  --primary: #1C2331;
  --secondary: #27486C;
  --accent: #FFD600;
  --bg-main: #FBFAFF;
  --bg-pastel-blue: #E6F0FB;
  --bg-pastel-yellow: #FFFBEF;
  --bg-pastel-mint: #E8FEFA;
  --bg-pastel-violet: #F3F0FF;
  --text-dark: #253243;
  --text-light: #768097;
  --card-shadow: 0 4px 24px rgba(34,42,66,0.07);
  --border-radius: 18px;
}

/* GENERAL STRUCTURE */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

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

main {
  padding-top: 32px;
  padding-bottom: 32px;
}

/* HEADER */
header {
  background: linear-gradient(90deg, #F3F0FF 0%, #E8FEFA 100%);
  box-shadow: 0 2px 8px rgba(45,40,80,0.05);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  min-height: 72px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo img {
  height: 44px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(44,36,100,0.04);
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 18px;
}
.main-nav a {
  color: var(--primary);
  font-weight: 500;
  border-radius: 8px;
  padding: 6px 12px;
  transition: background 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--bg-pastel-mint);
  color: var(--secondary);
}
.cta.primary {
  background: var(--accent);
  color: var(--primary);
  border-radius: 32px;
  padding: 11px 32px;
  font-weight: bold;
  font-size: 18px;
  margin-left: 18px;
  box-shadow: 0 2px 8px rgba(44,34,34,0.07);
  transition: background 0.18s, transform 0.16s, box-shadow 0.2s;
  border: 2px solid transparent;
  letter-spacing: 0.05em;
}
.cta.primary:hover, .cta.primary:focus {
  background: #fff26e;
  color: var(--secondary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 16px rgba(220, 181, 35, 0.14);
  border-color: #FFE066;
  text-decoration: none;
}
.cta.secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--secondary);
  border-radius: 32px;
  padding: 11px 28px;
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(44,34,34,0.05);
  transition: background 0.14s, border-color 0.13s, color 0.13s, transform 0.17s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--bg-pastel-blue);
  color: var(--secondary);
  border-color: #A1C2E5;
  transform: translateY(-2px) scale(1.045);
}

.mobile-menu-toggle {
  display: none;
  background: var(--bg-pastel-violet);
  color: var(--secondary);
  font-size: 32px;
  border-radius: 12px;
  padding: 4px 14px;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  transition: background 0.18s, box-shadow 0.18s, color 0.14s;
  z-index: 60;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--bg-pastel-mint);
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(39, 72, 108, 0.10);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(244,242,253,0.93);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.45,.06,.4,1.12);
  box-shadow: 0 8px 32px rgba(67,51,140,0.11);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 27px;
  right: 22px;
  font-size: 30px;
  background: var(--bg-pastel-blue);
  color: var(--secondary);
  border-radius: 8px;
  padding: 7px 15px;
  z-index: 99;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--bg-pastel-mint);
  color: var(--primary);
}
.mobile-nav {
  margin-top: 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding-left: 38px;
}
.mobile-nav a {
  font-size: 21px;
  line-height: 1.65;
  color: var(--primary);
  font-weight: 500;
  border-radius: 10px;
  padding: 10px 14px 10px 10px;
  transition: background 0.16s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--bg-pastel-yellow);
  color: var(--secondary);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(115deg, #FDF6EC 0%, #F3F0FF 85%);
  min-height: 350px;
  padding: 60px 0 40px 0;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 17px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 5px rgba(244,223,253,0.22);
}
.hero .subheadline {
  font-size: 1.2rem;
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 24px;
  margin-top: 2px;
}
.hero .cta {
  margin-top: 15px;
}

/*****************************************
  FLEXBOX LAYOUTS (Mandatory patterns)  
*****************************************/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/******************************************
      PAGE-SPECIFIC FLEX CONTAINERS
******************************************/
.features .content-wrapper,
.services .content-wrapper,
.legal .content-wrapper,
.contact .content-wrapper,
.confirmation .content-wrapper {
  display: flex !important;
  flex-direction: column;
  gap: 34px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  margin: 20px 0 20px 0;
}
.feature-grid li {
  background: var(--bg-pastel-mint);
  border-radius: var(--border-radius);
  padding: 28px 22px 20px 22px;
  min-width: 220px;
  flex: 1 1 220px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, background 0.14s;
}
.feature-grid li:hover {
  background: #D7F3ED;
  box-shadow: 0 8px 32px rgba(51,180,184,0.07);
}
.feature-grid img {
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
}
.feature-grid h3 {
  font-size: 1.25rem;
  font-weight: 650;
  margin: 10px 0 6px 0;
  color: var(--secondary);
}
.feature-grid p {
  color: var(--text-dark);
  font-size: 16px;
}

/******** SERVICES ********/
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  margin: 20px 0 20px 0;
}
.service-list li, .service-card {
  background: var(--bg-pastel-yellow);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 30px 22px 26px 22px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow 0.17s, background 0.16s;
}
.service-list li img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
.service-list li h2, .service-list li h3 {
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: bold;
  margin-bottom: 4px;
}
.service-list li p {
  font-size: 16px;
  color: var(--text-dark);
}
.service-list .service-price {
  margin-top: 9px;
  font-size: 15px;
  font-weight: 600;
  background: var(--bg-pastel-violet);
  color: var(--primary);
  border-radius: 10px;
  padding: 5px 14px;
  box-shadow: 0 2px 8px rgba(84,64,135,0.09);
  letter-spacing: 0.03em;
}
.service-list li:hover {
  background: #FFF7CC;
  box-shadow: 0 10px 32px rgba(232,190,17,0.11);
}

/******** INNOVATION GRID (GADGETS) ********/
.innovation-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  margin: 20px 0 26px 0;
  justify-content: space-between;
}
.highlighted-gadget {
  background: var(--bg-pastel-blue);
  border-radius: var(--border-radius);
  padding: 30px 24px 22px 24px;
  min-width: 220px;
  flex: 1 1 220px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, background 0.14s;
}
.highlighted-gadget:hover {
  background: #E2EEFB;
  box-shadow: 0 8px 24px rgba(48, 101, 202, 0.08);
}
.highlighted-gadget img {
  width: 52px;
  height: 52px;
}
.highlighted-gadget h3 {
  font-size: 1.12rem;
  font-weight: 660;
  color: var(--secondary);
}
.highlighted-gadget p {
  font-size: 15px;
  color: var(--text-dark);
}
/******** PROJECT LISTINGS & BRANDS ********/
.project-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.project-listings > div {
  flex: 1 1 220px;
  background: var(--bg-pastel-yellow);
  padding: 24px 20px;
  border-radius: 13px;
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
}
.brand-logos-clients {
  display: flex;
  gap: 22px;
  align-items: center;
  margin: 18px 0 14px 0;
}
.brand-logos-clients img {
  width: 68px;
  height: auto;
  border-radius: 7px;
  box-shadow: 0 2px 10px rgba(68,54,130, .08);
}
.success-stories ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 0 0;
}
.success-stories li {
  color: var(--secondary);
  font-weight: 500;
  font-size: 15px;
  list-style: inside disc;
}

/******** TESTIMONIALS ********/
.testimonials .content-wrapper {
  gap: 26px;
}
.testimonial-card {
  background: #fff;
  color: var(--text-dark);
  border-radius: 17px;
  box-shadow: 0 4px 22px rgba(48,48,108,0.11);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
  max-width: 640px;
  padding: 24px 32px 18px 32px;
  transition: box-shadow 0.14s, background 0.13s;
}
.testimonial-card blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 16px;
  font-style: italic;
  letter-spacing: 0.01em;
}
.testimonial-info {
  font-size: 16px;
  color: var(--secondary);
  font-weight: 500;
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
}
.client-name {
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}
.client-location, .client-role, .company-name, .gadget-feedback {
  font-weight: 400;
  color: var(--secondary);
  opacity: 0.84;
}
.testimonial-card:hover {
  background: var(--bg-pastel-violet);
  box-shadow: 0 12px 32px rgba(64, 52, 181, 0.12);
}

/******** CONTACT DETAILS ********/
.contact-details, .full-contact-details, .business-hours {
  background: var(--bg-pastel-blue);
  border-radius: 13px;
  padding: 18px 18px 10px 18px;
  margin-bottom: 17px;
  color: var(--primary);
  font-weight: 480;
  font-size: 16px;
}
.contact-details a, .full-contact-details a {
  color: var(--secondary);
  font-weight: 600;
}
.map-placeholder {
  background: var(--bg-pastel-mint);
  border-radius: 10px;
  padding: 20px;
  color: var(--text-light);
  font-size: 14px;
  margin-top: 15px;
  font-style: italic;
}

/********* THANK YOU / CONFIRMATION ******/
.confirmation .thank-you-message,
.confirmation .next-steps {
  background: var(--bg-pastel-violet);
  border-radius: 11px;
  padding: 18px 20px;
  margin-bottom: 12px;
}
.confirmation .cta.secondary {
  margin-top: 15px;
}

/****** LEGAL (GDPR, Datenschutz, Cookie, Nutzungsb.) *****/
.legal .content-wrapper {
  background: var(--bg-pastel-yellow);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 36px 32px;
  margin-top: 36px;
  gap: 22px;
}
.legal .text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.legal ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-left: 18px;
}
.legal ul li {
  color: var(--secondary);
  font-size: 15px;
  list-style: disc inside;
}

/****************************
      TYPOGRAPHY
****************************/
h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.01em;
  margin-bottom: 7px;
}
h2 {
  font-size: 1.7rem;
  font-weight: 660;
  color: var(--secondary);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 7px;
}
p {
  font-size: 16px;
  color: var(--text-dark);
}
.tagline {
  font-size: 17px;
  font-style: italic;
  color: var(--secondary);
  letter-spacing: 0.03em;
  margin-top: 10px;
}

/****************************
      FOOTER
****************************/
footer {
  background: linear-gradient(90deg, #F3F0FF 0%, #E8FEFA 95%);
  color: var(--text-dark);
  padding: 0;
  margin-top: 58px;
  box-shadow: 0 -2px 18px rgba(31,35,61,0.06);
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px 22px 16px 22px;
  gap: 24px;
}
.footer-brand img {
  height: 48px;
  margin-bottom: 7px;
  border-radius: 7px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.footer-nav a {
  color: var(--secondary);
  font-weight: 500;
  font-size: 15px;
  opacity: 0.92;
  border-radius: 8px;
  padding: 4px 9px;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--bg-pastel-mint);
  color: var(--primary);
}
.footer-address, .footer-legal {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 5px;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(39,72,108,0.08);
  transition: box-shadow 0.16s;
}
.footer-social a:hover img {
  box-shadow: 0 6px 16px rgba(39,72,108,0.16);
}

/****************************
      COOKIE CONSENT BANNER
****************************/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(92deg, #FFFBEF 70%, #E8FEFA 100%);
  box-shadow: 0 -4px 24px rgba(70, 60, 20, 0.07);
  color: var(--primary);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 24px 16px 24px 26px;
  font-size: 16px;
  transition: transform 0.28s cubic-bezier(.44,.14,.36,1), opacity 0.18s;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-text {
  flex: 1 1 400px;
  min-width: 200px;
  color: var(--primary);
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 20px;
  padding: 7px 24px;
  margin-right: 0;
  border: 2px solid #fff9c3;
  transition: background 0.17s, border-color 0.11s, color 0.13s, transform 0.12s;
  box-shadow: 0 2px 8px rgba(180,150,13,0.07);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-btn.settings {
  background: var(--bg-pastel-blue);
  color: var(--secondary);
  border: 2px solid #A1C2E5;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--bg-pastel-yellow);
  color: var(--secondary);
  border-color: #FFE066;
  transform: scale(1.06);
}

/****** COOKIE MODAL ******/
.cookie-modal-overlay {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  background: rgba(34,40,51,0.33);
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cookie-modal {
  background: #FFFBEF;
  border-radius: 23px;
  padding: 44px 33px 24px 33px;
  box-shadow: 0 10px 44px rgba(80,65,15,0.11);
  min-width: 310px;
  max-width: 95vw;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--accent);
  cursor: pointer;
}
.cookie-category label {
  font-size: 16px;
  color: var(--primary);
  font-family: 'Open Sans';
}
.cookie-category.essential label {
  font-weight: 650;
  color: var(--secondary);
  opacity: 0.85;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}
.cookie-modal-close {
  background: var(--bg-pastel-blue);
  color: var(--secondary);
  border-radius: 8px;
  font-size: 14px;
  padding: 7px 14px;
  border: none;
  margin-left: auto;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal-close:hover {
  background: #E2EEFB;
}

/********************
    CTAs SINGLE
********************/
.cta {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  text-align: center;
  margin-bottom: 8px;
  margin-top: 0;
}
.cta:not(:last-child) {
  margin-right: 8px;
}

/**********************
  WORKSHOP LISTINGS
***********************/
.workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.workshop-list li {
  background: var(--bg-pastel-violet);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 24px 19px 25px 23px;
  margin-bottom: 20px;
  flex: 1 1 210px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  transition: box-shadow 0.18s, background 0.11s;
}
.workshop-list li:hover {
  background: #ece8fc;
  box-shadow: 0 10px 30px rgba(79,72,171,0.11);
}
.workshop-list h2 {
  font-size: 1.15rem;
  color: var(--secondary);
  font-weight: 650;
}
.workshop-price {
  font-size: 15px;
  color: var(--primary);
  background: #fff;
  border-radius: 14px;
  padding: 4px 13px;
  margin-top: 7px;
  box-shadow: 0 1px 4px rgba(139,120,232,0.07);
  font-weight: 590;
}
.upcoming-dates {
  font-size: 14px;
  color: var(--secondary);
  opacity: 0.83;
  margin-top: 5px;
}

/**********************
      RESPONSIVE
***********************/
@media (max-width: 1100px) {
  .container {
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  footer .container {
    justify-content: flex-start;
    gap: 20px 24px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 16px;
    font-size: 16px;
  }
  footer .container {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .main-nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    max-width: 98vw;
    padding-left: 7px;
    padding-right: 7px;
  }
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .feature-grid, .service-list, .innovation-grid, .workshop-list, .project-listings {
    flex-direction: column;
    gap: 18px;
  }
  .section, .hero {
    padding: 25px 6px 25px 6px;
  }
  .hero {
    min-height: 220px;
    padding: 36px 0 18px 0;
  }
  .hero .container {
    align-items: flex-start;
  }
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.19rem;
  }
  .testimonial-card {
    padding: 14px 11px 14px 11px;
    font-size: 16px;
  }
  .workshop-list li, .service-list li, .feature-grid li, .highlighted-gadget, .project-listings > div {
    padding: 15px 9px 15px 9px;
    min-width: 0;
  }
  .business-hours {
    font-size: 15px;
    padding: 12px 10px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    padding: 15px 10px;
    font-size: 15px;
  }
  .cookie-banner-actions {
    gap: 11px;
  }
  .cookie-modal {
    padding: 29px 15px 18px 15px;
  }
}
@media (max-width: 600px) {
  .content-wrapper {
    gap: 19px;
  }
  .footer-nav {
    gap: 11px;
  }
  .footer-brand img {
    height: 35px;
    margin-bottom: 2px;
  }
}
@media (max-width: 480px) {
  .feature-grid, .service-list, .project-listings, .innovation-grid, .workshop-list {
    gap: 11px;
  }
  .section, .hero, .legal .content-wrapper {
    padding-left: 2px;
    padding-right: 2px;
  }
}
/**********************
     MICRO-EFFECTS
***********************/
button:focus, a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
input, textarea, select {
  font-family: inherit;
  border-radius: 7px;
  border: 1px solid #CBD5E0;
  font-size: 16px;
  padding: 9px 13px;
  margin-bottom: 15px;
  transition: border-color 0.15s, box-shadow 0.12s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  box-shadow: 0 1px 6px #E2EEFB;
}

/*******************************
      PASTEL DREAMY EFFECTS
*******************************/
.section, .hero, .features, .services {
  border-radius: var(--border-radius);
}
.section {
  background: linear-gradient(102deg, #E6F0FB 0%, #FFFBEF 93%);
  box-shadow: 0 2px 12px rgba(54,70,68,0.04);
}

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