/* 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #EFEFEF;
  color: #293E53;
  font-family: 'Arial', sans-serif;
  min-height: 100vh;
}

a {
  color: #293E53;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5A623;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #293E53;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 1px;
}
h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
}
p, li, blockquote {
  font-size: 1rem;
  font-family: 'Arial', sans-serif;
  color: #293E53;
  line-height: 1.6;
}

/* ==== FLEXBOX CONTAINERS & SPACING ==== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 18px rgba(41,62,83,0.08);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(41,62,83,0.13);
  position: relative;
  transition: box-shadow .24s, transform .24s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(41,62,83,0.16);
  transform: translateY(-3px) scale(1.025);
}
.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;
  background: #EFEFEF;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(41,62,83,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px rgba(245,166,35,0.12);
  transform: scale(1.01) translateY(-2px);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

/* HERO SECTION */
.hero {
  width: 100%;
  background: linear-gradient(105deg,#F5A623 12%, #EFF2F9 100%);
  border-bottom-left-radius: 44px;
  border-bottom-right-radius: 44px;
  margin-bottom: 60px;
  padding-top: 38px;
  padding-bottom: 48px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-weight: 900;
  color: #293E53;
  text-shadow: 0 2px 16px rgba(245,166,35,0.09);
}

.hero p {
  color: #293E53;
  font-size: 1.2rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hero {
    padding: 28px 0 32px 0;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    margin-bottom: 36px;
  }
  .content-wrapper { gap: 14px; }
}

/* HEADER */
header {
  background: #293E53;
  box-shadow: 0 3px 16px 0 rgba(41,62,83,0.16);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  z-index: 30;
  position: sticky;
  top: 0;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 16px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.1em;
  transition: color 0.18s, border-bottom 0.18s;
  padding-bottom: 2px;
  border-bottom: 2.5px solid transparent;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F5A623;
  border-bottom: 2.5px solid #F5A623;
}
.cta-button.primary {
  background: #F5A623;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 32px;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(245,166,35,0.14);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.18s, color 0.18s;
  margin-left: 16px;
  text-align: center;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #293E53;
  color: #F5A623;
  box-shadow: 0 4px 22px 0 rgba(41,62,83,0.19);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #F5A623;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 14px;
  z-index: 101;
  line-height: 1;
  transition: color .18s;
}
.mobile-menu-toggle:focus { color: #fff; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #293E53;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 1020;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.61,-0.19,.6,1.37);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F5A623;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 30px 28px 12px 0;
  cursor: pointer;
  z-index: 1101;
  transition: color .18s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
  padding: 28px 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 10px 2px;
  width: 100%;
  transition: color .18s, background .18s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5A623;
  color: #293E53;
}
@media (max-width: 1060px) {
  .main-nav { display: none; }
  .cta-button.primary { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1061px) {
  .mobile-menu { display: none !important; }
}

/* ==== FEATURES GRID/ITEMS ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 16px 0;
}
.feature-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #fffbea;
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: 0 2px 7px 0 rgba(245,166,35,0.06);
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #293E53;
  min-width: 220px;
}
.feature-grid img { width: 28px; height: 28px; }

/* ==== TEAM GRID ==== */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 16px;
}
.team-member {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 10px rgba(41,62,83,0.09);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow .16s, transform .16s;
  min-width: 210px;
  min-height: 235px;
}
.team-member img { width: 36px; height: 36px; }
.team-member h3 {
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  color: #F5A623;
  font-weight: 800;
  margin-bottom: 2px;
  font-size: 1.13rem;
}
.team-member:hover { box-shadow: 0 4px 18px #FFE5B0; transform: scale(1.03); }

/* ==== SERVICE LISTS ==== */
.service-list li {
  margin-bottom: 14px;
  line-height: 1.56;
  font-family: 'Arial', sans-serif;
  color: #293E53;
}

/* ==== TESTIMONIALS ==== */
.testimonials h2,
.features h2,
.cta h2,
.about h2,
.services h2,
.legal h1 {
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-weight: 900;
  color: #293E53;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.10rem;
  color: #293E53;
  font-weight: 600;
  margin-bottom: 0;
}
.testimonial-details {
  font-size: 0.99rem;
  color: #293E53;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-details img {
  width: 18px;
  height: 18px;
  margin-left: 2px;
}

/* ==== PROJECT-LIST/REFERENZEN ==== */
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
}
.project-summary {
  background: #FAF5EC;
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(245,166,35,0.08);
  padding: 22px 18px 18px 18px;
  min-width: 220px;
  flex: 1 1 280px;
}
.project-summary h3 {
  color: #293E53;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}
.project-summary ul li {
  margin-bottom: 6px;
  color: #293E53;
  font-size: 0.98rem;
}

/* ==== FAQ ACCORDION ==== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #FFF9E5;
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 2px 8px 0 rgba(245,166,35,0.08);
  transition: box-shadow 0.18s;
}
.faq-item h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  margin-bottom: 4px;
  color: #F5A623;
  font-weight: 700;
}
.faq-item p { color: #293E53; font-size: 0.98rem; }
.faq-snippet {
  background: #E3F3FD;
  padding: 16px;
  margin-top: 26px;
  border-radius: 10px;
  font-size: 0.98rem;
}
.contact-hint {
  background: #F5A623;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 18px;
  padding: 14px 20px;
  margin-top: 18px;
  font-weight: 700;
}

/* ==== FORMS (if any used later) ==== */
input, textarea, select {
  font-family: 'Arial',sans-serif;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid #E1E6EA;
  outline: none;
  font-size: 1.02rem;
  margin-bottom: 18px;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #F5A623;
}
label { font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: 1.02rem; }

/* ==== TABLES ==== */
table {
  border-collapse: collapse;
  width: 100%;
  max-width: 660px;
  margin-bottom: 22px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 9px 0 rgba(41,62,83,0.07);
  overflow: hidden;
}
thead {
  background: #F5A623;
}
thead th {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 16px;
  letter-spacing: 0.05em;
}
td, th {
  border: 1px solid #F2EADF;
  padding: 10px 14px;
  font-size: 1.01rem;
}
tbody td {
  color: #293E53;
}
tr:nth-child(even) td { background: #FAF5EC; }
tr:hover td { background: #FFFAF3; }

/* ==== FOOTER ==== */
footer {
  background: #293E53;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  color: #fff;
  margin-top: 50px;
  box-shadow: 0 -2px 18px 0 rgba(41,62,83,0.07);
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px 18px 26px 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: .03em;
  opacity: 0.88;
  transition: color .18s, opacity .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F5A623;
  opacity: 1;
}
.footer-contact img {
  display: inline-block;
  margin-right: 9px;
  width: 18px; height: 18px; vertical-align: middle;
}
.footer-contact span {
  display: block;
  margin-top: 8px;
  font-size: 0.96rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.footer-brand img {
  width: 46px;
  height: 46px;
}
.footer-brand small {
  color: #fff;
  opacity: 0.8;
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  .footer-container { flex-direction: column; gap: 28px; align-items: flex-start; }
  .footer-brand { align-items: flex-start; }
}

/* ==== CTA SECTION ==== */
.cta .content-wrapper,
.cta {
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(94deg,#FFEABF 6%, #EFF2F9 99%);
  border-radius: 18px;
  margin-top: 28px;
  padding: 28px 16px;
}

.cta-button {
  display: inline-block;
  background: #F5A623;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 32px;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(245,166,35,0.11);
  cursor: pointer;
  transition: background 0.19s, color 0.18s, box-shadow 0.16s, transform .13s;
  margin-top: 8px;
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: #293E53;
  color: #F5A623;
  box-shadow: 0 5px 14px 0 rgba(41,62,83,0.17);
  transform: scale(1.04);
}

/* ==== CONTACT DETAILS ==== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details li {
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #293E53;
  letter-spacing: .01em;
  background: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(245,166,35,0.07);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-embed {
  margin-top: 14px;
  padding: 14px 18px;
  background: #FFEABF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(245,166,35,0.07);
  color: #293E53;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-embed img {
  width: 28px; height: 28px;
}

/* === LEGAL PAGE SECTIONS === */
.legal {
  background: #fff5e0;
  border-radius: 24px;
  box-shadow: 0 2px 10px 0 rgba(245,166,35,0.07);
  padding: 42px 20px;
  margin-bottom: 60px;
}
.legal h2 {
  color: #F5A623;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: bold;
  margin-top: 22px;
  margin-bottom: 5px;
}
.legal ul {
  margin-bottom: 18px;
  padding-left: 16px;
  list-style-type: disc;
}
.legal li { margin-bottom: 4px; }

/* === RESPONSIVENESS === */
@media (max-width: 768px) {
  .header-container { flex-direction: row; }
  .content-grid, .footer-container, .card-container, .feature-grid, .team-grid, .project-list {
    flex-direction: column;
    gap: 14px !important;
    align-items: stretch;
  }
  .section {
    padding: 22px 6px;
    margin-bottom: 36px;
    border-radius: 14px;
  }
  .project-summary, .team-member, .testimonial-card { min-width: 0; }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .hero {
    padding-top: 22px;
    padding-bottom: 22px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  .cta {
    border-radius: 10px;
    padding: 18px 7px;
  }
  .legal { border-radius: 10px; padding: 19px 7px; }
}
@media (max-width: 460px) {
  .footer-container, .content-wrapper, .container {
    padding-left: 4px;
    padding-right: 4px;
  }
}

/* ==== UTILITY CLASSES ==== */
.mt-24 { margin-top: 24px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.gap-16 { gap: 16px !important; }
.rounded-xl { border-radius: 18px !important; }
.shadow-md { box-shadow: 0 6px 18px rgba(245,166,35,0.17) !important; }

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: #293E53;
  color: #fff;
  padding: 24px 18px 21px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 24px rgba(41,62,83,0.22);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  animation: fadeinbanner 0.45s cubic-bezier(.33,1.07,.52,.99);
}
@keyframes fadeinbanner {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner-content {
  max-width: 740px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  background: #F5A623;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-weight: 700;
  padding: 9px 22px;
  cursor: pointer;
  transition: background 0.19s, color 0.16s, box-shadow 0.13s;
  box-shadow: 0 2px 7px rgba(245,166,35,0.15);
}
.cookie-banner button:hover, .cookie-banner button:focus { background: #fff; color: #F5A623; }
.cookie-banner .cookie-settings {
  background: #fff;
  color: #F5A623;
  border: 1.5px solid #F5A623;
  margin-left: 0;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #F5A623;
  color: #fff;
}

/* COOKIE CONSENT MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2200;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(41,62,83, 0.55);
  backdrop-filter: blur(1.5px);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeinbanner 0.25s;
}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 450px;
  width: 90vw;
  padding: 34px 28px 24px 28px;
  box-shadow: 0 10px 38px rgba(41,62,83,.18);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #293E53;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieslidein 0.36s cubic-bezier(.33,1.07,.52,.99);
}
@keyframes cookieslidein {
  from { opacity: 0; transform: scale(.93) translateY(65px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 { color: #F5A623; font-size: 1.19rem; font-weight: bold; margin-bottom: 5px; }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category label {
  flex: 1;
  color: #293E53;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.cookie-category input[type=checkbox] {
  width: 1.1em; height: 1.1em;
  accent-color: #F5A623;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 36px; height: 20px;
}
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E1E2E8;
  border-radius: 16px;
  transition: background .18s;
}
.cookie-switch input:checked + .cookie-slider { background: #F5A623; }
.cookie-slider:before {
  content: "";
  position: absolute;
  left: 2px; top: 2px; bottom: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform .18s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #F5A623;
  cursor: pointer;
  transition: color 0.19s;
  z-index: 2400;
}
.cookie-modal .cookie-modal-close:focus {
  color: #293E53;
}
.cookie-modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 9px;
}
.cookie-modal-buttons button {
  background: #F5A623;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-weight: 700;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.17s, color 0.12s;
  box-shadow: 0 1px 7px rgba(245,166,35,0.13);
}
.cookie-modal-buttons .cookie-cancel {
  background: #fff;
  color: #F5A623;
  border: 1.25px solid #F5A623;
}
.cookie-modal-buttons .cookie-cancel:hover,
.cookie-modal-buttons .cookie-cancel:focus {
  background: #F5A623;
  color: #fff;
}
.cookie-modal-buttons button:hover,
.cookie-modal-buttons button:focus {
  box-shadow: 0 3px 12px rgba(245,166,35,0.15);
}

/* ===== SCROLLBAR ===== */
body, .cookie-modal, .mobile-menu {
  scrollbar-color: #F5A623 #efe8da;
  scrollbar-width: thin;
}

/* ===== ARTISTIC/CREATIVE ELEMENTS ===== */
.section, .card, .project-summary, .testimonial-card, .team-member, .faq-item {
  box-shadow: 0 2px 20px 0 rgba(245,166,35,0.11), 0 2px 6px rgba(41,62,83,0.07);
}
.section {
  position: relative;
  overflow: visible;
}
.section::before {
  content: '';
  position: absolute;
  top: -24px; right: -15px;
  width: 70px; height: 38px;
  background: #ffeabf;
  border-radius: 141px 77px 66px 100px;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}
.section > * { position: relative; z-index: 2; }
.card::after {
  content: '';
  position: absolute;
  left: 12px; bottom: 0px;
  width: 44px; height: 22px;
  background: #F5A623;
  opacity: 0.09;
  border-radius: 22px 0 22px 20px;
  z-index: 1;
  pointer-events: none;
}

/* ==== ANIMATION CLASSES ==== */
.fade-in {
  opacity: 0;
  animation: fadeincomp 0.9s .12s forwards cubic-bezier(.44,1.2,.68,1.01);
}
@keyframes fadeincomp {
  to { opacity: 1; }
}

/* === MICROS / HOVERS === */
.feature-grid li:hover, .project-summary:hover {
  background: #F5A623;
  color: #fff;
  box-shadow: 0 8px 22px rgba(245,166,35,0.15);
  transition: background 0.18s, color 0.12s, box-shadow .22s;
}
.feature-grid li:hover img { filter: brightness(180%); }

/* ==== ENSURE NO ABSOLUTE POS FOR CONTENT === */
/* Only decorative elements use absolute positioning */

/* ==== ENSURE MINIMUM GAP/MARGINS === */
.section,
.card-container > *,
.content-grid > *,
.feature-grid > *,
.project-list > *,
.team-grid > *,
.testimonial-card {
  margin-bottom: 20px !important;
}

/* ==== CLASSES FOR MINIMUM 20PX BETWEEN CARDS ==== */
.card:not(:last-child),
.project-summary:not(:last-child),
.team-member:not(:last-child),
.testimonial-card:not(:last-child) {
  margin-right: 20px !important;
}
@media (max-width: 800px) {
  .card:not(:last-child),
  .project-summary:not(:last-child),
  .team-member:not(:last-child),
  .testimonial-card:not(:last-child) {
    margin-right: 0 !important;
    margin-bottom: 20px !important;
  }
}

/* ==== Hide Cookie Banner on Modal Open ==== */
.cookie-modal-overlay.open ~ .cookie-banner { display: none !important; }

/* ==== Artistic Font for Hero Headings (Montserrat) ==== */
.hero h1, .hero h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-shadow: 2px 4px 16px #FFE5B0;
}

/* ==== Artistic Details ==== */
.cta, .about, .features, .services, .testimonials, .contact {
  border-radius: 30px 44px 20px 38px;
  box-shadow: 0 2px 18px 0 rgba(41,62,83,0.09);
}

/* --- Responsive: Remove right margin for last elements --- */
.card-container > *:last-child,
.content-grid > *:last-child,
.project-list > *:last-child,
.team-grid > *:last-child {
  margin-right: 0 !important;
}

/* ==== Hide Cookie Banner on print ==== */
@media print { .cookie-banner, .cookie-modal-overlay { display: none !important; } }
