/* CSS Reset & Normalize */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F2F7FB;
  color: #26313C;
  line-height: 1.6;
}
body {
  min-height: 100vh;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: #1A5371;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.55,.08,.53,.99);
}
a:hover, a:focus {
  color: #F5B041;
  outline: none;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1.25em;
}
li {
  margin-bottom: 0.4em;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.01em;
  color: #1A5371;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.125rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 24px;
  color: #2A6E97;
  letter-spacing: 0.02em;
}
blockquote {
  font-style: italic;
  color: #1A5371;
  border-left: 4px solid #F5B041;
  padding-left: 18px;
  margin: 20px 0;
  background: #FFF8EA;
}

/* Container & Section Spacing */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 24px rgba(26,83,113,0.09);
}

/* Flexbox Layout Patterns */
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(245,176,65,0.12);
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover {
  transform: translateY(-4px) scale(1.018);
  box-shadow: 0 4px 32px rgba(245,176,65,0.19);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF4E4;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(26,83,113,0.08);
  margin-bottom: 20px;
  color: #232323;
  font-size: 1.125rem;
  transition: box-shadow 0.15s;
}
.testimonial-card strong {
  color: #1A5371;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 8px;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Artistic/Craft Details */
.section {
  background: #fffdf9;
  border-radius: 28px 60px 33px 20px;
  border: 2px solid #F5B041;
  box-shadow: 0 10px 36px 0 rgba(26, 83, 113, 0.13);
}
main > section {
  margin-bottom: 60px;
  margin-top: 0;
}

/* Header */
header {
  box-shadow: 0 2px 10px rgba(26, 83, 113, 0.05);
  background: #fff;
  position: relative;
  z-index: 51;
}
header .container {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link img {
  height: 56px;
  margin-right: 20px;
  display: block;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  font-weight: 500;
  color: #1A5371;
  font-size: 1.05rem;
  letter-spacing: .5px;
  transition: color 0.18s cubic-bezier(.4,.09,.77,.55);
  padding: 8px 2px;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  border-radius: 1.5px;
  background: #F5B041;
  transition: width 0.2s cubic-bezier(.35,.86,.46,1.5);
  position: absolute;
  left: 0;
  bottom: -2px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.cta-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: .7px;
  background: #F5B041;
  color: #1A5371;
  border: 0;
  border-radius: 22px;
  padding: 11px 28px;
  margin-left: 16px;
  box-shadow: 0 2px 8px rgba(245, 176, 65, 0.16);
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.13s, transform 0.14s;
  position: relative;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #fff4e5;
  color: #D08018;
  box-shadow: 0 6px 18px rgba(245,176,65,0.19);
  transform: translateY(-2px) scale(1.035);
}

/* Artistic Buttons */
button,
input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 18px;
  border: none;
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: bold;
  background: #1A5371;
  color: #fff;
  cursor: pointer;
  transition: background .18s, box-shadow .16s;
  box-shadow: 0 2px 12px rgba(26,83,113,0.07);
}
button:hover, button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: #F5B041;
  color: #1A5371;
  outline: none;
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: #F5B041;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  color: #1A5371;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 20px;
  top: 16px;
  z-index: 52;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #ffe6b9;
  color: #E09312;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #2A6E97;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.59,-0.17,.42,1.23);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 28px;
  box-shadow: -6px 0 20px rgba(26,83,113,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #fff;
  position: absolute;
  right: 22px;
  top: 18px;
  z-index: 10001;
  cursor: pointer;
  line-height: 1;
  padding: 0 10px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 64px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: .5px;
  padding: 14px 0;
  border-bottom: 1px dashed #F5B041;
  transition: color .21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F5B041;
}

/* Hide desktop nav on mobile and show mobile menu toggle */
@media (max-width: 992px) {
  header .container {
    flex-wrap: wrap;
  }
  .main-nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Section/Feature Grid Variants */
.feature-grid > div,
.workshop-highlights > article, 
.team-list > div,
.service-cards > div, 
.services-list > .service-card, 
.lifehack-list > div,
.tipps-grid > div,
.faq-accordion > div {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1.5px 8px rgba(26,83,113,0.08);
  padding: 26px 18px;
  margin-bottom: 20px;
  min-width: 240px;
  transition: box-shadow 0.14s, transform 0.13s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.feature-grid > div:hover, 
.team-list > div:hover, 
.service-cards > div:hover, 
.services-list > .service-card:hover, 
.lifehack-list > div:hover, 
.tipps-grid > div:hover, 
.faq-accordion > div:hover,
.workshop-highlights > article:hover {
  box-shadow: 0 8px 32px rgba(26,83,113,0.13);
  transform: scale(1.024) translateY(-2px);
}
.feature-grid img, .feature-grid svg {
  width: 46px;
  height: 46px;
  margin-bottom: 15px;
  background: #FEF5E7;
  border-radius: 15px;
  padding: 6px;
  box-shadow: 0 1.5px 6px rgba(245,176,65,0.14);
}

/* CTA and Trust Section */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #F5B041;
  color: #1A5371;
  border-radius: 26px 8px 22px 32px;
  padding: 40px 24px;
  box-shadow: 0 4px 24px rgba(245,176,65,0.09);
  gap: 24px;
}
.cta h2 {
  color: #1A5371;
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
}
.cta-primary {
  margin-top: 6px;
}
.trust-signals ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 25px 0 8px 0;
  list-style: none;
  padding: 0;
  color: #1A5371;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.012rem;
}
.trust-signals li {
  background: #F2F7FB;
  padding: 7px 22px;
  border-radius: 12px 22px 12px 22px;
  border: 1.5px dashed #F5B041;
  margin: 0;
}

/* Footer */
footer {
  background: #26313C;
  color: #fff;
  padding: 44px 0 20px 0;
  font-size: 0.95rem;
  margin-top: 65px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 22px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.94;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  transition: opacity .17s, color .17s;
}
.footer-nav a:hover {
  color: #F5B041;
  opacity: 1;
}
.brand-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.brand-footer img {
  height: 36px;
  width: 36px;
}
.brand-footer p {
  margin: 0;
  font-size: 1.01rem;
  color: #fff;
  letter-spacing: 0.5px;
}

/* Text Sections */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1.07rem;
  color: #253848;
}
.story ul, .text-section ul {
  margin-bottom: 12px;
}
.story li {
  margin-bottom: 7px;
}

/* FAQ / Accordion */
.faq-accordion > div {
  border-left: 6px solid #F5B041;
  background: #FEF7E0;
}
.faq-accordion h3 {
  font-size: 1.1rem;
  color: #1A5371;
  margin-bottom: 7px;
  margin-top: 0;
}
.faq-accordion p {
  color: #253848;
  margin-bottom: 0;
}

/* Thank you & Utility Sections */
.thank-you-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: #fffbe6;
  border: 2.5px solid #F5B041;
  border-radius: 22px 42px 32px 15px;
  padding: 42px 13vw;
  text-align: center;
  margin: 0 auto 40px auto;
  box-shadow: 0 1.5px 18px rgba(245,176,65,0.12);
}
.thank-you-section h1{
  font-size: 2rem;
}

/* Responsive Design: Mobile First */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .section, main > section {
    padding: 20px 8px;
    margin-bottom: 38px;
  }
  .content-wrapper, .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid,
  .team-list,
  .service-cards,
  .services-list,
  .lifehack-list,
  .tipps-grid,
  .workshop-highlights,
  .faq-accordion {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  header .container {
    min-height: 62px;
    padding: 8px 8px;
  }
  .cta {
    padding: 30px 8px;
  }
  .brand-footer p {
    font-size: 0.93rem;
  }
  .thank-you-section {
    padding: 22px 8vw;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  header .container {
    flex-direction: row;
    padding-right: 5px;
    padding-left: 5px;
  }
  .cta {
    padding: 14px 2px;
  }
  .thank-you-section {
    padding: 14px 1vw;
  }
}

/* Micro-interactions & Animations */
.card, .feature-grid > div, .service-cards > div, .services-list > .service-card, .lifehack-list > div, .tipps-grid > div, .workshop-highlights > article, .testimonial-card {
  transition: box-shadow .17s, transform .15s;
}
.card:hover, .feature-grid > div:hover, .service-cards > div:hover, .services-list > .service-card:hover, .lifehack-list > div:hover, .tipps-grid > div:hover, .workshop-highlights > article:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(245,176,65,0.17), 0 2px 24px rgba(26,83,113,0.11);
  transform: scale(1.031) translateY(-4px);
  z-index: 4;
}
.testimonial-card {
  cursor: pointer;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 19999;
  width: 100vw;
  background: #26313C;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px 14vw 24px 14vw;
  box-shadow: 0 -2.5px 26px rgba(26, 83, 113, 0.19);
  transition: transform .27s cubic-bezier(.65,-0.09,.3,1.18), opacity .27s;
  font-size: 1.05rem;
  border-radius: 28px 28px 0 0;
}
.cookie-banner.collapsed {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner button {
  margin-left: 7px;
  margin-right: 7px;
  background: #F5B041;
  color: #1A5371;
  border: 0;
  padding: 9px 26px;
  min-width: 110px;
  font-size: 1rem;
  border-radius: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background .15s, color .15s, box-shadow .13s;
  box-shadow: 0 1.5px 8px rgba(245,176,65,0.06);
  cursor: pointer;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff4e5;
  color: #E59E14;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  border: 1.5px solid #F5B041;
  color: #F5B041;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #F5B041;
  color: #1A5371;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 20000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%) scale(0.97);
  background: #FEF5E7;
  border-radius: 20px 38px 20px 42px;
  border: 2.5px solid #F5B041;
  padding: 35px 22px 32px 22px;
  box-shadow: 0 12px 54px rgba(26, 83, 113, 0.23);
  max-width: 92vw;
  min-width: 310px;
  max-height: 92vh;
  overflow-y: auto;
  font-size: 1.08rem;
  animation: fadeSlideIn .33s cubic-bezier(.39,0,.27,1.15);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes fadeSlideIn {
  0% { opacity: 0; transform: translate(-50%,0) scale(.97); }
  100% { opacity: 1; transform: translate(-50%,-52%) scale(1); }
}
.cookie-modal h2 {
  margin-bottom: 6px;
  color: #1A5371;
}
.cookie-modal ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}
.cookie-modal li {
  margin: 8px 0 12px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-modal label {
  font-size: 1.02rem;
  color: #1A5371;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .toggle-switch {
  display: inline-flex;
  align-items: center;
}
/* Artistic Toggle Switch */
.cookie-modal .toggle-switch input[type="checkbox"] {
  display: none;
}
.cookie-modal .toggle-slider {
  width: 38px;
  height: 22px;
  background: #F2F7FB;
  border-radius: 16px;
  margin-right: 10px;
  border: 1.5px solid #F5B041;
  cursor: pointer;
  position: relative;
  transition: background .11s, border .13s;
}
.cookie-modal .toggle-slider:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #F5B041;
  border-radius: 50%;
  position: absolute;
  top: 2.5px;
  left: 2px;
  transition: left .16s cubic-bezier(.47,.33,.54,1.12), background .13s;
}
.cookie-modal .toggle-switch input[type="checkbox"]:checked + .toggle-slider {
  background: #F5B041;
}
.cookie-modal .toggle-switch input[type="checkbox"]:checked + .toggle-slider:before {
  background: #1A5371;
  left: 20px;
}
.cookie-modal .category-essential {
  opacity: 0.62;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .cookie-modal-actions button {
  min-width: 110px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 16px;
  top: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #F5B041;
  cursor: pointer;
  padding: 6px 10px;
}

/* Remove scroll for body when modal open */
body.cookie-modal-open {
  overflow: hidden;
}

/* Misc Details for Artistic Touch */
hr {
  border: none;
  border-top: 2px dashed #F5B041;
  margin: 38px 0 24px 0;
}

/* Form (for future-proofing, if added) */
input[type="text"], input[type="email"], textarea {
  border-radius: 13px;
  border: 1.5px solid #F5B041;
  padding: 8px 14px;
  font-size: 1rem;
  background: #fff;
  color: #1A5371;
  transition: border .12s;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #1A5371;
  outline: none;
}

/* Artistic Typography: use Google Fonts fallbacks (ensure imported in HTML head) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;600;500&family=Roboto:wght@400;500&display=swap');

/* Custom Artistic Elements (fun shape for hero, etc.) */
.hero-artistic-bg {
  position: absolute;
  top: -42px;
  right: -100px;
  width: 340px;
  height: 200px;
  background: #F5B041;
  opacity: 0.16;
  border-radius: 85% 15% 60% 20%;
  z-index: 0;
  pointer-events: none;
  filter: blur(5px);
  animation: floatBg 8s ease-in-out infinite alternate;
}
@keyframes floatBg {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.15) translateY(28px); }
}

/* --- Accessibility Adjustments --- */
:focus-visible {
  outline: 2.5px solid #F5B041;
  outline-offset: 1.5px;
}

/* --- Artistic Headline Decorations (pseudo elements) --- */
h2:before {
  content: '';
  display: inline-block;
  width: 38px;
  height: 8px;
  margin-right: 8px;
  background: #F5B041;
  border-radius: 16px;
  vertical-align: middle;
  opacity: 0.52;
}

/* -- Ensure minimum spacing between cards and sections -- */
.section, .card-container > *, .content-grid > *, .feature-grid > *, .service-cards > *, .services-list > *, .lifehack-list > *, .tipps-grid > *, .workshop-highlights > *, .faq-accordion > * {
  margin-bottom: 20px;
}

/* --- End of CSS --- */
