/* Amber Stash Modern Bold 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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #264653;
  background: #F4F5F7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #264653;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus-visible {
  outline: 2px solid #E9C46A;
  outline-offset: 2px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin: 0 0 24px 20px;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #264653;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #E9C46A;
}
h4, h5, h6 {
  font-weight: 700;
}
p, small {
  font-family: 'Roboto', Arial, sans-serif;
}
p {
  font-size: 1.125rem;
  margin-bottom: 12px;
  line-height: 1.7;
}
small {
  font-size: 1rem;
  color: #264653;
}
strong, b {
  font-weight: 700;
  color: #264653;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 32px rgba(38,70,83,.07);
  position: relative;
}
@media (max-width: 768px) {
  section {
    padding: 32px 6vw;
    margin-bottom: 36px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Nav Styles */
header {
  background: #264653;
  color: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 2px 12px rgba(38,70,83,0.06);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 72px;
}
header img {
  height: 46px;
  width: auto;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: #E9C46A;
  color: #264653;
}
.primary-cta {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  background: #E9C46A;
  color: #264653;
  padding: 14px 36px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(38,70,83,0.10);
  letter-spacing: 0.05em;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
  border: none;
  margin-left: 16px;
  cursor: pointer;
  text-align: center;
}
.primary-cta:hover,
.primary-cta:focus {
  background: #264653;
  color: #E9C46A;
  box-shadow: 0 2px 18px rgba(38,70,83,0.13);
}
.secondary-cta {
  display: inline-block;
  background: transparent;
  border: 2px solid #E9C46A;
  color: #264653;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  margin-top: 10px;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.secondary-cta:hover,
.secondary-cta:focus {
  background: #E9C46A;
  color: #264653;
  border-color: #264653;
}

@media (max-width: 1024px) {
  header .container {
    flex-direction: row;
  }
  header nav {
    gap: 16px;
  }
  .primary-cta {
    margin-left: 6px;
    padding: 13px 20px;
  }
}
@media (max-width: 825px) {
  header nav {
    display: none;
  }
  .primary-cta {
    display: none;
  }
}

/* Hamburger Mobile Menu */
.mobile-menu-toggle {
  background: #E9C46A;
  color: #264653;
  border: none;
  font-size: 2.1rem;
  border-radius: 12px;
  padding: 4px 18px;
  margin-left: auto;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  display: none;
  z-index: 130;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #fff;
  background: #F4F5F7;
  color: #264653;
}
@media (max-width: 825px) {
  .mobile-menu-toggle {
    display: block;
    position: relative;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #264653;
  color: #fff;
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.77,.36,0,1.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #E9C46A;
  font-size: 2.3rem;
  border: none;
  padding: 24px 26px 8px 22px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 230;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 32px;
  margin-top: 16px;
  width: 80vw;
}
.mobile-nav a {
  color: #E9C46A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 8px;
  padding: 10px 0;
  transition: background 0.14s, color 0.15s;
  text-transform: uppercase;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E9C46A;
  color: #264653;
  padding-left: 12px;
}
@media (max-width: 450px) {
  .mobile-nav {
    margin-left: 12vw;
    width: 76vw;
  }
  .mobile-menu-close {
    padding: 26px 10px 8px 0px;
  }
}


/* Feature/Team Wert-Grid & Cards */
.feature-grid, .werte-grid, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 12px;
}
.feature-grid > div, .werte-grid > div, .team-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(38,70,83,0.06);
  padding: 28px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 330px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: box-shadow 0.17s, transform 0.17s;
  margin-bottom: 0;
}
.feature-grid > div:hover, .werte-grid > div:hover, .team-grid > div:hover {
  box-shadow: 0 8px 32px rgba(38,70,83,0.12);
  transform: translateY(-2px) scale(1.025);
}
.feature-grid img, .werte-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  filter: drop-shadow(0px 2px 6px #E9C46A33);
}
.feature-grid h3, .werte-grid h3, .team-grid h3 {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 2px;
  color: #264653;
}

@media (max-width: 1024px) {
  .feature-grid, .werte-grid, .team-grid {
    gap: 16px;
  }
  .feature-grid > div, .werte-grid > div, .team-grid > div {
    min-width: 180px;
    padding: 22px 12px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .werte-grid, .team-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-grid > div, .werte-grid > div, .team-grid > div {
    max-width: 100%;
    min-width: 0;
  }
}

/* Cards, Section, Flexible layouts */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 rgba(38,70,83,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 280px;
  transition: box-shadow 0.16s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(38,70,83,0.14);
  transform: translateY(-2px) scale(1.018);
}
/* General Flexible Groups */
.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: 900px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 8px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 26px 20px 22px;
  background: #F4F5F7;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(38,70,83,0.07);
  margin-bottom: 20px;
  max-width: 410px;
  min-width: 210px;
  font-size: 1.05rem;
  line-height: 1.6;
}
.testimonial-card p {
  color: #264653;
}
.testimonial-card small {
  margin-top: 2px;
  color: #264653;
  font-size: 0.96rem;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Contact info layout */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

/* Quick links and footer */
footer {
  background: #264653;
  color: #fff;
  padding: 0 0 0 0;
}
footer .container {
  padding: 0 10px;
}
footer .content-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0 20px 0;
}
.quick-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.quick-links a {
  color: #E9C46A;
  text-decoration: underline dotted;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.14s;
}
.quick-links a:hover {
  color: #F4F5F7;
}
.impressum p {
  color: #E9C46A;
  opacity: 0.9;
  font-size: 1.00rem;
  margin-top: 12px;
}
@media (max-width: 720px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 24px 0 10px 0;
  }
}

/* Table styles */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 13px;
}
td, th {
  padding: 15px 14px;
  border-bottom: 2px solid #F4F5F7;
  text-align: left;
  font-size: 1.1rem;
}
th {
  background: #264653;
  color: #E9C46A;
  font-size: 1.12rem;
}
tr:last-child td {
  border-bottom: none;
}

/* Forms (if extended in the future) */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px 12px;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #E9C46A;
  background: #F4F5F7;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #264653;
  color: #fff;
  padding: 24px 16px 18px 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 -8px 40px 0 rgba(38,70,83,0.12);
  animation: fadeInBanner 0.6s;
}
@keyframes fadeInBanner {
  0% { opacity: 0; transform: translateY(66px); }
  80% { opacity: 0.6; transform: translateY(9px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner p {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  margin: 0 10px 0 0;
}
.cookie-consent-banner .cookie-btn {
  background: #E9C46A;
  color: #264653;
  border: none;
  border-radius: 100px;
  padding: 12px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 8px;
  cursor: pointer;
  margin-bottom: 4px;
  transition: background 0.14s, color 0.14s,
    box-shadow 0.18s;
  box-shadow: 0 2px 10px rgba(38,70,83,0.10);
}
.cookie-consent-banner .cookie-btn:hover,
.cookie-consent-banner .cookie-btn:focus {
  background: #264653;
  color: #E9C46A;
  outline: 2px solid #E9C46A;
}
.cookie-consent-banner .cookie-settings {
  background: none;
  color: #E9C46A;
  border: 2px solid #E9C46A;
  border-radius: 100px;
  padding: 12px 19px;
  margin-right: 0;
}
.cookie-consent-banner .cookie-settings:hover,
.cookie-consent-banner .cookie-settings:focus {
  background: #E9C46A;
  color: #264653;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    padding: 18px 6px 14px 6px;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-consent-banner p {
    margin-bottom: 8px;
  }
}
/* Cookie settings modal */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(38,70,83,0.7);
  z-index: 10010;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalBg 0.3s;
}
@keyframes fadeInModalBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #264653;
  border-radius: 22px;
  box-shadow: 0 6px 48px rgba(38,70,83,0.18);
  max-width: 96vw;
  width: 400px;
  padding: 30px 26px 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: scaleInModal 0.34s cubic-bezier(.77,.4,0,1.16);
}
@keyframes scaleInModal {
  0% { opacity: 0; transform: scale(0.86); }
  90% { opacity: 0.6; transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: #264653;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 10px 0;
}
.cookie-cat-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.10rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #264653;
  margin-bottom: 2px;
}
.cookie-cat-label {
  flex: 1 1 auto;
}
.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 27px;
  align-items: center;
}
.cookie-switch input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #E9C46A;
  border-radius: 34px;
  transition: background 0.19s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #264653;
}
.cookie-slider:before {
  position: absolute;
  content: '';
  left: 4px;
  top: 4px;
  width: 19px;
  height: 19px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 1px 4px #0002;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(19px);
  background: #E9C46A;
}
.cookie-essential {
  opacity: 0.7;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn, .cookie-modal .cookie-settings {
  font-size: 1rem;
  padding: 0.7em 1.5em;
  margin: 0;
  border-radius: 90px;
}
.cookie-modal .cookie-btn {
  background: #E9C46A;
  color: #264653;
  border: none;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-btn:hover {
  background: #264653;
  color: #E9C46A;
}
.cookie-modal .cookie-settings {
  border: 2px solid #E9C46A;
  background: #fff;
  color: #264653;
  font-weight: 700;
}
.cookie-modal .cookie-settings:hover {
  background: #E9C46A;
  color: #264653;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 16px 4vw 10px 4vw;
    width: 98vw;
  }
}
/* Animations, Microinteractions */
a, button, .primary-cta, .secondary-cta {
  transition: all 0.14s cubic-bezier(.77,.36,0,1.15);
}
.feature-grid > div, .werte-grid > div, .team-grid > div, .card {
  transition: box-shadow 0.16s, transform 0.15s;
}

/* Visual geometric shape accents */
section:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  width: 48px;
  height: 48px;
  left: 36px;
  top: 24px;
  background: #E9C46A44;
  border-radius: 12px 28px 9px 38px;
  pointer-events: none;
  opacity: 0.18;
}
section:nth-child(even):before {
  left: auto; right: 36px; top: 32px;
  border-radius: 28px 12px 38px 9px;
}
@media (max-width: 700px) {
  section:before, section:nth-child(even):before {
    left: 10px; right: auto; top: 11px;
    width: 30px; height: 30px;
  }
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .container {
    padding: 0 5vw;
  }
  main {
    padding-top: 0px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 3vw;
  }
  section {
    margin-bottom: 28px;
    border-radius: 17px;
    padding: 18px 2vw;
  }
  .content-wrapper {
    gap: 10px;
  }
}

/* Utility classes for spacing and hiding */
.hide-mobile, .d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}

/* Accessibility & Focus states */
*:focus-visible {
  outline: 2px solid #E9C46A;
  outline-offset: 2px;
  background: #F4F5F7;
}

/* Custom Scrollbar */
body::-webkit-scrollbar {width:12px;background:#F4F5F7;}
body::-webkit-scrollbar-thumb {background:#E9C46A;border-radius:8px;}

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