/* ----- RENTENKOMPASS - STYLE.CSS ----- */
/* --- 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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #263c53;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  min-height: 100vh;
  position: relative;
  background-color: #fef9f6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
a {
  color: #263c53;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ff9950;
  outline: none;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}
strong, b {
  font-weight: 700;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #263c53;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 14px;
  color: #263c53;
}
input[type="search"] {
  display: block;
  width: 100%;
  max-width: 400px;
  border: 1px solid #e4eff1;
  border-radius: 32px;
  padding: 12px 18px;
  font-size: 1rem;
  margin-bottom: 28px;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #fff;
  transition: border-color 0.2s;
}
input[type="search"]:focus {
  border-color: #ffb347;
  outline: none;
}

/* ---- FLEXBOX LAYOUT CONTAINERS ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

/* --- MANDATORY SECTION UTILITIES --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(245,145,63,0.07), 0 1.5px 3px rgba(38, 60, 83, 0.03);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  background: #fff9f3;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(255,179,71,0.07);
  padding: 28px 28px 24px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff9f3;
  border-radius: 24px;
  box-shadow: 0 2px 18px rgba(255,179,71,0.10);
  padding: 20px 28px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #263c53;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(255,179,71,0.20);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* -------- HEADER & NAVIGATION -------- */
header {
  background: #e4eff1;
  box-shadow: 0 2px 8px rgba(38,60,83,0.06);
  padding: 0;
  position: relative;
  z-index: 21;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 13px;
  padding-bottom: 13px;
}
.logo img {
  height: 48px;
  width: auto;
  border-radius: 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 18px;
  padding: 8px 14px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #ffecd2;
  color: #263c53;
}
.main-nav .cta.primary {
  background: #ffb347;
  color: #263c53;
  border-radius: 32px;
  font-weight: 700;
  padding: 10px 24px;
  margin-left: 10px;
  box-shadow: 0 2px 10px rgba(255,179,71,0.15);
  transition: background 0.20s, color 0.18s, box-shadow 0.2s;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: #ff9950;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,179,71,0.17);
}

/* ---- Mobile Navigation ---- */
.mobile-menu-toggle {
  display: none;
  background: #ffb347;
  border: none;
  font-size: 2.2rem;
  color: #263c53;
  padding: 6px 16px 4px 16px;
  border-radius: 18px;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 25;
  margin-left: 8px;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #ff9950;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #fff9f3;
  box-shadow: 0 12px 28px rgba(38,60,83,0.09);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.55,0,0.1,1);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 18px 40px rgba(38,60,83,0.13);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #263c53;
  font-size: 2rem;
  align-self: flex-end;
  margin: 26px 28px 8px 0;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 112;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #ff9950;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  padding: 20px 36px;
}
.mobile-nav a {
  font-size: 1.2rem;
  padding: 12px 8px;
  border-radius: 18px;
  width: 100%;
  color: #263c53;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ffecd2;
  color: #ff9950;
}
.mobile-nav .cta, .mobile-nav .primary {
  background: #ffb347;
  color: #263c53;
  font-weight: 700;
  border-radius: 32px;
  padding: 13px 28px;
  box-shadow: 0 2px 10px rgba(255,179,71,0.15);
  margin-top: 10px;
}
.mobile-nav .cta:hover, .mobile-nav .cta:focus {
  background: #ff9950;
  color: #fff;
}

/* --------- HERO, CTA, SECTIONS -------- */
.cta, .cta.primary {
  display: inline-block;
  background: #ffb347;
  color: #263c53;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 13px 32px;
  border-radius: 36px;
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 12px rgba(255,179,71,0.12);
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.18s;
  cursor: pointer;
  min-width: 160px;
}
.cta:hover, .cta:focus, .cta.primary:hover, .cta.primary:focus {
  background: #ff9950;
  color: #fff;
  box-shadow: 0 4px 22px rgba(255,179,71,0.24);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 24px;
}
.contact-methods span {
  font-size: 1.02rem;
  color: #263c53;
  display: flex;
  align-items: center;
  gap: 7px;
}
.contact-methods img {
  width: 22px; height: 22px;
}

.tip-card {
  background: #fffbe9;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(255,179,71,0.10);
  padding: 24px 22px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-accordion > div {
  background: #fff9f3;
  border-radius: 16px;
  box-shadow: 0 2px 11px rgba(255,179,71,0.08);
  margin-bottom: 18px;
  padding: 18px 24px 10px 24px;
  cursor: pointer;
  transition: box-shadow 0.16s, background 0.18s;
}
.faq-accordion > div h3 {
  font-size: 1.13rem;
  margin-bottom: 11px;
  color: #263c53;
  font-weight: 700;
}
.faq-accordion > div p {
  font-size: 1rem;
}
.faq-teaser {
  background: #e4eff1;
  border-radius: 18px;
  padding: 18px 22px;
  font-size: 1.08rem;
  margin-bottom: 18px;
  color: #263c53;
}

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

.consulting-highlights {
  background: #fffbe9;
  border-radius: 18px;
  padding: 18px 22px;
  font-size: 1.08rem;
  margin-top: 18px;
  color: #263c53;
}

/* ---- Icon-Text List Styles for Features/Steps ---- */
ul li, ol li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: #263c53;
  line-height: 1.55;
}
ul li img, ol li img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-right: 2px;
  margin-top: 2px;
}
ul li strong {
  margin-right: 4px;
}

ol {
  list-style: decimal outside;
}
ol li {
  margin-left: 2px;
}

/* ---- CARD UTILITIES ---- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* --- FOOTER --- */
footer {
  background: #263c53;
  color: #fffbe9;
  padding: 42px 0 30px 0;
  font-size: 1rem;
  border-radius: 32px 32px 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #fffbe9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 4px 10px;
  border-radius: 14px;
  transition: background 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #ffb347;
  color: #263c53;
}
.address {
  color: #fffbe9;
  opacity: 0.86;
  font-size: 0.97rem;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.copyright {
  color: #fffbe9;
  opacity: 0.78;
  margin-top: 8px;
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2222;
  background: #fffbe9;
  box-shadow: 0 -2px 18px rgba(38,60,83,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px 16px;
  font-size: 1.05rem;
  border-radius: 28px 28px 0 0;
  transition: transform 0.35s cubic-bezier(0.45,0,0.1,1), opacity 0.25s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-left: 20px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 10px 26px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  margin-left: 0;
  margin-top: 0;
  transition: background 0.17s, color 0.17s, box-shadow 0.2s;
}
.cookie-btn.accept {
  background: #ffb347;
  color: #263c53;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #ff9950;
  color: #fff;
}
.cookie-btn.reject {
  background: #e4eff1;
  color: #263c53;
  box-shadow: 0 2px 10px rgba(38,60,83,0.02);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #cad8dc;
  color: #263c53;
}
.cookie-btn.settings {
  background: #fff;
  color: #263c53;
  border: 1px solid #ffb347;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ffecd2;
}

/* ---- COOKIE MODAL ---- */
.cookie-modal {
  position: fixed;
  z-index: 2400;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(38, 60, 83, 0.29);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s cubic-bezier(.48,0,.21,1);
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fffbe9;
  border-radius: 28px;
  max-width: 420px;
  width: 94vw;
  box-shadow: 0 6px 44px rgba(255,179,71,0.17), 0 1.5px 3px rgba(38, 60, 83, 0.09);
  padding: 36px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.26rem;
  margin-bottom: 12px;
}
.cookie-modal-content label {
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #263c53;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.cookie-modal-content input[type=checkbox][disabled] {
  accent-color: #263c53;
  cursor: not-allowed;
}
.cookie-modal-content input[type=checkbox] {
  width: 19px;
  height: 19px;
  accent-color: #ffb347;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  right: 18px; top: 13px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #263c53;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-content .cookie-modal-close:hover, .cookie-modal-content .cookie-modal-close:focus {
  color: #ff9950;
  outline: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
/* Category summary */
.cookie-category {
  background: #e4eff1;
  color: #263c53;
  border-radius: 16px;
  padding: 10px 14px;
  margin-bottom: 9px;
  font-size: 1.00rem;
  display: flex;
  align-items: center;
}

/*  ------ RESPONSIVE DESIGN ------  */
@media (max-width: 1050px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    max-width: 99vw;
    padding: 0 9px;
  }
  header .container {
    gap: 12px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section {
    margin-bottom: 32px;
    padding: 24px 6px;
  }
  .testimonial-card, .card {
    padding: 16px 10px 16px 14px;
    border-radius: 16px;
  }
  .card-container, .content-grid, .contact-methods {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  html {
    font-size: 14px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-size: 1.00rem;
    padding: 12px 7px;
  }
  .cookie-buttons {
    flex-direction: column;
    gap: 10px;
    margin-left: 0;
  }
  .cookie-modal-content {
    padding: 28px 9px 18px 12px;
    max-width: 99vw;
  }
  h1 {
    font-size: 1.35rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.11rem;
    margin-bottom: 11px;
  }
}

/* --- ANIMATIONS: MICROINTERACTIONS --- */
.cta, .cta.primary, .main-nav a, .footer-nav a, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a, .cookie-btn {
  transition: background 0.16s, color 0.16s, box-shadow 0.14s, transform 0.14s;
}
.card:hover, .tip-card:hover, .faq-accordion > div:hover {
  box-shadow: 0 6px 24px rgba(255,179,71,0.18);
  transform: translateY(-2px) scale(1.01);
}

/* --- HIGHLIGHT UTILITY CLASSES --- */
.bg-primary { background: #263c53; color: #fffbe9; }
.bg-secondary { background: #e4eff1; color: #263c53; }
.bg-accent { background: #ffb347; color: #263c53; }
.rounded-large { border-radius: 32px; }
.rounded { border-radius: 18px; }
.shadow-sm { box-shadow: 0 2px 10px rgba(38,60,83,0.07); }
.shadow-cta { box-shadow: 0 4px 22px rgba(255,179,71,0.21); }


/* ---- ACCESSIBILITY: FOCUS STATES --- */
a:focus, button:focus, .cta:focus, .cookie-btn:focus, .mobile-nav a:focus {
  outline: 2px solid #ffb347;
  outline-offset: 2px;
}

/* --- PRINT OPTIMIZATION --- */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  .container, main, section { box-shadow: none !important; background: #fff !important; }
}

/* --- END OF FILE --- */
