/* RESET & BASE STYLES */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5; background: #FAFAF7; color: #222; font-family: 'Roboto', Arial, sans-serif;
}
ul, ol {
  list-style: disc inside; margin-left: 1.5em; margin-bottom: 16px;
}
dl {
  margin-bottom: 24px;
}
dl dt {
  font-weight: bold; margin-top: 12px;
}
dl dd {
  margin-left: 0; margin-bottom: 8px;
}
a { color: #207358; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #DE5D39; text-decoration: underline; }
img { max-width: 100%; display: block; border: 0; }
strong { font-weight: bold; }
address { font-style: normal; color: #203A29; margin-bottom: 12px; font-size: 15px; }

/* BRAND COLORS (electric/vibrant for energetic style) */
:root {
  --primary: #203A29;
  --secondary: #DEB887;
  --accent: #FAFAF7;
  --electric-pine: #19FFA7;
  --electric-orange: #FF7700;
  --electric-yellow: #FFD500;
  --vibrant-blue: #227CFF;
  --neutral-bg: #FAFAF7;
  --card-outline: #E0E0E0;
}

/* TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #203A29;
  letter-spacing: 0.5px;
  font-weight: 800;
  text-transform: none;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; color: var(--vibrant-blue); }
h2 { font-size: 2rem; margin-bottom: 20px; color: var(--electric-orange); }
h3 { font-size: 1.35rem; margin-bottom: 14px; color: var(--primary); }
h4, h5, h6 { font-size: 1.1rem; color: var(--primary); margin-bottom: 10px; }

p, li, dd, blockquote, address {
  font-size: 1rem; color: #232323;
}

blockquote {
  font-size: 1.1rem; font-style: italic;
  border-left: 5px solid var(--electric-pine);
  margin: 20px 0 24px 0; padding-left: 16px;
  color: var(--primary);
  background: rgba(25,255,167,0.12);
}

/* LAYOUT CONTAINER */
.container {
  width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; flex-direction: column; gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex; flex-direction: column; gap: 28px;
}

/* SECTIONS */
section {
  background: none;
}
.section {
  margin-bottom: 60px; padding: 40px 20px;
  background: #fff; border-radius: 18px; box-shadow: 0 6px 24px 0 rgba(59,38,102,0.08);
}

/* FEATURE AND FLEX UTILS */
.feature-grid, .card-container, .content-grid {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: flex-start;
}
.card-container {
  gap: 24px;
}
.card {
  background: #fff; border-radius: 14px; box-shadow: 0 3px 12px 0 rgba(25,255,167,0.09);
  padding: 24px; margin-bottom: 20px; position: relative; transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 9px 36px 0 rgba(34, 124, 255,0.13);
  border: 1.5px solid var(--electric-pine);
  z-index: 2;
}
.content-grid {
  gap: 20px; justify-content: space-between;
}

.text-image-section {
  display: flex; align-items: center; gap: 30px; flex-wrap: wrap; flex-direction: row;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 24px; }
}

/* FEATURE-ITEM CSS */
.feature-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
  background: #F3FDFA;
  border-left: 5px solid var(--vibrant-blue);
  border-radius: 12px; padding: 22px 18px; margin-bottom: 20px;
}

.feature-grid > div {
  flex: 1 1 260px; min-width: 240px; background: #fff;
  border-radius: 14px; box-shadow: 0 2.5px 10px 0 rgba(223,184,135,0.10);
  margin-bottom: 20px; padding: 26px 22px; transition: box-shadow 0.18s, transform 0.18s;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.feature-grid > div:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 36px 0 rgba(255,119,0,0.10), 0 2.5px 12px 0 rgba(25,255,167,0.08);
}
.feature-grid img { width: 38px; height: 38px; margin-bottom: 12px; }

/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex; align-items: center; gap: 20px; padding: 20px;
  background: #fff7e7;
  border-radius: 16px; box-shadow: 0 4px 18px 0 rgba(255,213,0,0.08);
  margin-bottom: 20px;
  border-left: 5px solid var(--electric-orange);
}
.testimonial-card p {
  color: #1D1D1D; font-size: 1.12rem; letter-spacing: 0.04em; flex: 3 1 auto;
}
.testimonial-card strong {
  font-weight: 800; color: #203A29; font-size: 1rem;
}

/* BUTTONS */
.cta-primary {
  display: inline-block; font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(90deg, var(--electric-orange) 68%, var(--vibrant-blue) 100%);
  color: #fff; font-size: 1.12rem;
  font-weight: 800; letter-spacing: 1.5px;
  border: none; border-radius: 28px; padding: 14px 36px;
  text-transform: uppercase; box-shadow: 0 2px 15px 0 rgba(34,124,255,0.07);
  cursor: pointer; transition: background 0.18s, box-shadow 0.18s, transform 0.12s;
  margin-top: 10px;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, var(--vibrant-blue) 68%, var(--electric-orange) 100%);
  color: #fff; transform: scale(1.04) translateY(-1px);
  box-shadow: 0 6px 28px 0 rgba(25,255,167,0.08);
  outline: none;
}

/* HEADER */
header {
  background: #fff; box-shadow: 0 2px 15px 0 rgba(34,124,255,0.03);
  padding: 0; position: sticky; top: 0; z-index: 10;
}
header .container {
  display: flex; flex-direction: row; align-items: center;
  gap: 24px; justify-content: space-between; height: 72px;
}
header nav {
  display: flex; flex-direction: row; gap: 22px; align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; font-size: 1rem;
  color: var(--primary);
  padding: 5px 10px; border-radius: 6px; transition: color 0.2s, background 0.15s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: var(--electric-orange); background: #f8f8ff;
}

header .cta-primary {
  margin-left: 10px;
}
header img {
  height: 45px; width: auto;
}

.mobile-menu-toggle {
  display: none;
  background: linear-gradient(90deg, var(--vibrant-blue), var(--electric-pine));
  border: none; color: #fff; font-size: 2rem;
  border-radius: 8px; padding: 6px 14px;
  transition: background 0.14s, box-shadow 0.14s;
  margin-left: 14px; cursor: pointer;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: linear-gradient(90deg, var(--electric-pine), var(--vibrant-blue));
  outline: none;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed; top: 0; left: 0; height: 100%; width: 100vw;
  background: #203A29; color: #fff;
  z-index: 51;
  display: flex; flex-direction: column; justify-content: flex-start;
  transform: translateX(-100vw);
  opacity: 0; transition: transform 0.36s cubic-bezier(0.85,0,0.35,1), opacity 0.28s;
  box-shadow: 6px 0 48px 0 rgba(34,124,255,0.16);
}
.mobile-menu.open {
  transform: translateX(0); opacity: 1;
}
.mobile-menu .mobile-menu-close {
  background: none; color: #fff; font-size: 2.1rem; border: none; align-self: flex-end;
  margin: 22px 22px 6px 0; padding: 0 4px; cursor: pointer; border-radius: 7px;
  transition: background 0.13s;
}
.mobile-menu .mobile-menu-close:hover, .mobile-menu .mobile-menu-close:focus {
  background: #19FFA7; color: #203A29;
}
.mobile-nav {
  display: flex; flex-direction: column; gap: 26px;
  padding: 18px 40px; margin-top: 24px;
  height: 100%;
}
.mobile-nav a {
  color: #fff; font-size: 1.14rem; font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700; padding: 10px 8px; border-radius: 5px;
  background: none; transition: background 0.16s, color 0.16s;
  letter-spacing: 0.5px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--electric-pine); color: var(--primary);
}

@media (max-width: 1060px) {
  header nav { gap: 13px; }
  header .container {padding-right: 10px;}
}
@media (max-width: 900px) {
  header nav { display: none; }
  .mobile-menu-toggle {display: block;} /* Hamburger only mobile */
}
@media (max-width: 900px) {
  .container { padding: 0 12px; }
}

/* MAIN & CARDS */
main {
  min-height: 60vh; padding-top: 16px; padding-bottom: 22px;
  background: var(--neutral-bg);
}
.card-content {
  display: flex; flex-direction: column; justify-content: center;
}

.team-list {
  display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 20px;
}
.team-list > div {
  flex: 1 1 220px; background: #fff; border-radius: 12px; box-shadow: 0 2px 15px 0 rgba(25,255,167,0.04);
  padding: 24px; margin-bottom: 12px;
}

.text-section {
  display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px;
}

/* FOOTER */
footer {
  background: #203A29; color: #fff; padding: 30px 0 18px 0;
}
footer .container {
  display: flex; flex-wrap: wrap; flex-direction: row; gap: 24px;
  align-items: flex-start; justify-content: space-between;
}
footer nav {
  display: flex; flex-direction: row; gap: 14px; align-items: flex-start; margin-bottom: 8px;
}
footer nav a {
  color: #DEB887; font-size: 0.98rem; font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: #19FFA7;
}
footer address {
  color: #DEB887; font-size: 0.98rem; margin-bottom: 2px;
}
footer img {
  height: 42px; margin-bottom: 14px;
}
footer p {
  font-size: 0.95rem; color: #eee; margin-top: 9px;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column; gap: 22px; align-items: flex-start;
  }
}

/* RESPONSIVE — MOBILE-FIRST */
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.35rem;}
  h3 {font-size: 1.09rem;}
  .section {padding: 28px 8px; margin-bottom: 40px;}
  .feature-grid { gap: 18px; }
  .card-container { gap: 16px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 13px; }
  .team-list { gap: 11px; }
  .feature-grid > div { min-width: 98%; }
}
@media (max-width: 540px) {
  h1 {font-size: 1.43rem;}
  h2 {font-size: 1.1rem;}
  .feature-grid, .card-container, .content-grid, .team-list {
    flex-direction: column; gap: 7px;
  }
}

/* ANIMATIONS, TRANSITIONS, EFFECTS */
.card, .feature-grid > div, .testimonial-card, .cta-primary {
  transition: box-shadow 0.18s, transform 0.15s;
}
.cta-primary {
  transition: background 0.22s, color 0.2s, transform 0.18s, box-shadow 0.25s;
}
section, .section {
  transition: background 0.15s;
}

/* ELECTRIC SHADOWS/EFFECTS */
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 9px 38px 0 rgba(25,255,167,0.10), 0 2.5px 14px 0 rgba(255,213,0,0.09);
}

hr {border: 0; border-bottom: 2px solid #DEB887; margin: 20px 0;}

/* CONTACT & ADDRESS ICONS */
footer address img, header address img {
  vertical-align: middle; margin-right: 8px; height: 18px; width: 18px;
}
address img {
  margin-top: -3.5px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; width: 100vw;
  background: #fffbe9; color: #203A29;
  display: flex; flex-direction: row; align-items: center;
  justify-content: space-between; gap: 18px;
  border-top: 3.5px solid var(--electric-yellow);
  font-size: 1rem; padding: 16px 28px;
  box-shadow: 0 -4px 32px 0 rgba(255,213,0,0.19);
  z-index: 99;
  animation: cookieSlideIn 0.7s cubic-bezier(0.33, 1, 0.68, 1.15);
}
@keyframes cookieSlideIn {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex; flex-wrap: wrap; gap: 15px; align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 700;
  padding: 9px 24px; font-size: 1rem;
  border-radius: 25px; border: none; cursor: pointer;
  margin-top: 0; transition: background 0.17s, color 0.16s, box-shadow 0.17s;
  box-shadow: 0 1.5px 8px 0 rgba(34,124,255,0.04);
}
.cookie-btn.accept {
  background: var(--vibrant-blue); color: #fff; border: none;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus{
  background: var(--electric-pine); color: #203A29;
}
.cookie-btn.reject {
  background: #FAFAF7; color: var(--primary); border: 1.5px solid var(--electric-orange);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--electric-orange); color: #fff;
}
.cookie-btn.settings {
  background: none; color: var(--primary); border: 1.5px solid var(--electric-pine);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--electric-pine); color: var(--primary);
}
@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column; align-items: flex-start; gap: 16px; padding: 14px 10px;
  }
  .cookie-banner-buttons { gap: 8px; }
}

/* COOKIE CONSENT MODAL POPUP */
.cookie-modal-backdrop {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(32,58,41,0.47); z-index: 110;
  display: flex; align-items: center; justify-content: center;
  animation: fadeModalBg .32s;
}
@keyframes fadeModalBg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff; color: #203A29; border-radius: 24px;
  box-shadow: 0 0 64px 0 rgba(32,58,41,0.22);
  max-width: 440px; width: 98vw; min-width: 0;
  padding: 42px 34px 30px 34px; display: flex; flex-direction: column;
  gap: 25px; position: relative;
  animation: popCookieModal .22s cubic-bezier(0.45,1.65,0.4,1);
}
@keyframes popCookieModal {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {font-size: 1.4rem; color: var(--electric-orange); margin-bottom: 7px;}
.cookie-category {display: flex; flex-direction: row; align-items: center; gap: 14px; margin-bottom:10px;}
.cookie-category input[type=checkbox] {
  accent-color: var(--vibrant-blue); width: 22px; height: 22px;
}
.cookie-modal-close {
  position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--vibrant-blue); font-size: 2.1rem; cursor: pointer; border-radius:7px;
  transition: background 0.1s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--electric-pine); color: var(--primary);
}
.cookie-modal-actions {
  display: flex; flex-direction: row; gap: 12px; margin-top: 16px; justify-content: flex-end;
}
@media (max-width: 520px) {
  .cookie-modal {padding: 24px 10px 12px 10px;}
}

/* FORMS (if any in future) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border: 1.5px solid #DEB887;
  border-radius: 8px; padding: 10px 12px; margin-bottom: 12px;
  font-size: 1rem;
  background: #F9F7F5;
  transition: border 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--vibrant-blue);
  box-shadow: 0 0 0 2px var(--electric-pine);
}

/* SCROLLBAR (subtle vibrant) */
::-webkit-scrollbar { width: 9px; background: #E8EAF5; }
::-webkit-scrollbar-thumb { background: var(--vibrant-blue); border-radius: 12px; }

/* CUSTOM OVERRIDES FOR FAQ and PROJEKTE */
main dl dt {
  color: var(--electric-orange); font-size: 1.08rem;
}
main dl dd {
  color: #203A29; margin-bottom: 12px;
}

/* THANK YOU PAGE OVERRIDES */
main ul {
  margin-left: 1.2em; color: var(--primary);
}
main ul li::marker {
  color: var(--electric-orange);
}

/* SPACING BETWEEN ELEMENTS */
section, .section {margin-bottom: 60px;}
.card, .feature-grid > div, .testimonial-card, .team-list > div {margin-bottom: 20px;}
.content-grid, .feature-grid, .team-list, .card-container {gap: 20px;}

/* PREVENT ABSOLUTE OVERLAP IN CARDS */
.card, .feature-grid > div, .testimonial-card, .team-list > div {position: relative;}

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