/* Bravo Renovierung – Style.css – Warm Friendly Flexbox-Only Design */

/* 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,
main, 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #FFF8F2;
  color: #2A2A2A;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
a {
  color: #B35E14;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #DE7C2C;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}
th, td {
  padding: 14px 12px;
  border-bottom: 1px solid #E1E3E6;
  text-align: left;
}
th {
  background: #FFE7D1;
  color: #1A3D5A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #1A3D5A;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #1A3D5A;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #B35E14;
  margin-bottom: 8px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: #DE7C2C;
}
p, ul, ol, li, details, summary {
  font-size: 1rem;
  color: #2A2A2A;
  line-height: 1.7;
}
blockquote {
  border-left: 4px solid #DE7C2C;
  padding-left: 18px;
  color: #95612B;
  background: #FFF3E0;
  font-style: italic;
  margin-bottom: 24px;
  margin-top: 8px;
}

/* CONTAINERS & SPACING */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(222, 124, 44, 0.09), 0 1.5px 4px rgba(26, 61, 90, 0.03);
}

/* CARDS & FLEXBOX CLASSES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .service-card, .testimonial-card, .case-brief, .value-grid > div {
  background: #FFFDF8;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(176, 94, 20, 0.10), 0 1px 4px rgba(41, 61, 90, 0.05);
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover, .service-card:hover, .testimonial-card:hover, .value-grid > div:hover {
  box-shadow: 0 4px 24px 0 rgba(176, 94, 20, 0.15), 0 2px 8px rgba(41, 61, 90, 0.09);
  transform: translateY(-2px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.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;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: #FFF6ED;
  border: 1px solid #FFE6CE;
  color: #2A2A2A;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* MOBILE RESPONSIVE FLEX */
@media (max-width: 1024px) {
  .container {
    max-width: 960px;
  }
  .feature-grid, .value-grid, .service-cards, .cases-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper, .section {
    padding: 24px 8px;
    gap: 20px;
  }
  .feature-grid, .value-grid, .service-cards, .cases-list {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  th, td {
    font-size: 0.95rem;
    padding: 10px 8px;
  }
}
@media (max-width: 480px) {
  h1, .h1 { font-size: 1.35rem; }
  h2, .h2 { font-size: 1.1rem; }
  h3, .h3 { font-size: 1rem; }
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #1A3D5A;
  color: #FFF;
  box-shadow: 0 2px 14px rgba(34,62,91,0.09);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #FFF;
  font-size: 1.06rem;
  font-weight: 500;
  border-radius: 10px;
  padding: 8px 14px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #DE7C2C;
  color: #FFF;
}
.main-nav .cta-nav {
  background: #DE7C2C;
  color: #FFF;
  font-weight: 700;
  border-radius: 16px;
  padding: 10px 20px;
  margin-left: 10px;
  box-shadow: 0 2px 8px rgba(222,124,44,0.12);
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
}
.main-nav .cta-nav:hover, .main-nav .cta-nav:focus {
  background: #B35E14;
  color: #FFF;
  box-shadow: 0 4px 24px rgba(222,124,44,0.16);
}

header img {
  height: 38px;
  border-radius: 12px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #FFF;
  color: #1A3D5A;
  font-size: 32px;
  padding: 7px 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-left: 22px;
  box-shadow: 0 2px 8px rgba(222,124,44,0.09);
  z-index: 1202;
  transition: background 0.21s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFE7D1;
}
.mobile-menu {
  display: none;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
    position: fixed;
    z-index: 1300;
    flex-direction: column;
    justify-content: flex-start;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 0;
    background: rgba(26,61,90, 0.98);
    transform: translateX(-100vw);
    transition: transform 0.38s cubic-bezier(.87,-0.09,.09,1.11);
  }
  .mobile-menu.open {
    transform: translateX(0);
    box-shadow: 0 4px 40px rgba(222,124,44,0.2);
  }
  .mobile-menu-close {
    background: transparent;
    color: #FFF;
    font-size: 2.2rem;
    border: none;
    align-self: flex-end;
    margin: 22px 26px 12px 0;
    cursor: pointer;
    z-index: 1310;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background .2s;
  }
  .mobile-menu-close:hover {
    background: #DE7C2C;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
    padding: 32px 30px;
    width: 100%;
    margin-top: 22px;
  }
  .mobile-nav a {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    color: #FFF;
    padding: 14px 10px;
    border-radius: 12px;
    width: 100%;
    text-align: left;
    transition: background 0.23s, color 0.15s;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: #DE7C2C;
    color: #FFF8F2;
  }
  .mobile-nav .cta-nav {
    background: #DE7C2C;
    color: #FFF;
    font-weight: 700;
  }
}

/* HERO SECTION */
.hero {
  min-height: 420px;
  background: linear-gradient(98deg, #FFF6ED 65%, #FFE7D1 100%);
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 340px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #1A3D5A;
  letter-spacing: 0.7px;
  margin-bottom: 14px;
}
.hero p {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #B35E14;
  margin-bottom: 24px;
}

/* BUTTONS & CTA */
.cta-button, .contact-cta a, .service-card details summary::after {
  display: inline-block;
  background: #DE7C2C;
  color: #FFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  border-radius: 14px;
  padding: 12px 28px;
  box-shadow: 0 2px 8px rgba(222,124,44,0.10);
  cursor: pointer;
  margin-top: 5px;
  margin-bottom: 5px;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  text-align: center;
}
.cta-button:hover, .cta-button:focus, .contact-cta a:hover, .contact-cta a:focus, .service-card details[open] summary {
  background: #B35E14;
  color: #FFF;
  transform: translateY(-1.5px) scale(1.04);
  box-shadow: 0 4px 24px rgba(222,124,44,0.14);
}
.cta-banner {
  background: #DE7C2C;
  color: #FFF;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(222,124,44,0.06);
  margin-bottom: 65px;
}
.cta-banner .container, .cta-banner .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta-banner strong {
  display: block;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}
.cta-banner .cta-button {
  margin-left: 12px;
  margin-top: 0;
  font-size: 1rem;
}

/* HOMEPAGE FEATURE GRID */
.features, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid > div {
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 350px;
  align-items: flex-start;
  padding: 26px 16px 20px 16px;
  border: none;
  box-shadow: 0 2px 12px rgba(222,124,44,0.07);
  text-align: left;
  margin-bottom: 0;
  background: #FFFDF8;
  transition: box-shadow 0.22s;
}
.feature-grid img {
  height: 38px;
  margin-bottom: 10px;
}
.feature-grid h3 {
  font-size: 1.07rem;
  margin-bottom: 6px;
}
.feature-icons ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-left: 1.3em;
  margin: 10px 0 6px 0;
  list-style: none;
}
.feature-icons li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFE7D1;
  color: #B35E14;
  border-radius: 14px;
  padding: 7px 16px 7px 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.feature-icons img {
  height: 24px; width: 24px;
  border-radius: 8px;
}

/* SERVICES OVERVIEW/DETAILED */
.service-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  padding: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.service-list li {
  background: #FFF3E0;
  color: #1A3D5A;
  border-radius: 14px;
  padding: 10px 18px 10px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.03rem;
  transition: box-shadow .14s;
}
.service-list li img {
  height: 23px; width: 23px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.service-card {
  flex: 1 1 270px;
  min-width: 270px;
  max-width: 382px;
  background: #FFFDF8;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(222,124,44,0.06), 0 1.5px 4px rgba(26, 61, 90, 0.02);
  padding: 22px 17px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s;
}
.service-card img {
  height: 36px;
  margin-bottom: 10px;
}
.service-card details {
  margin-top: 7px;
}
.service-card details summary {
  cursor: pointer;
  background: #FFE7D1;
  padding: 6px 13px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #B35E14;
  font-weight: 600;
  transition: background 0.17s, color 0.15s;
  outline: none;
  border: none;
  display: inline;
}
.service-card details[open] summary {
  background: #DE7C2C;
  color: #FFF;
}
.service-card details ul {
  padding-left: 20px;
  margin-top: 10px;
}
.service-card details li {
  margin-bottom: 6px;
}

/* VALUE GRID */
.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.value-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  padding: 22px 16px 16px 16px;
  text-align: left;
  align-items: flex-start;
  background: #FFF7ED;
}
.value-grid img {
  height: 32px;
  margin-bottom: 8px;
}

/* STEP LIST (PROCESS) */
.step-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}
.step-list li {
  background: #E1E3E6;
  color: #1A3D5A;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10.5px 18px 10.5px 10px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  margin-bottom: 0;
}
.step-list img {
  height: 22px;
  width: 22px;
}

/* TESTIMONIALS */
.testimonial-group {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.testimonial-card {
  min-width: 250px;
  max-width: 400px;
  flex: 1 1 250px;
  align-items: flex-start;
  color: #1A3D5A;
  border-left: 6px solid #DE7C2C;
  background: #FFF6ED;
  padding: 22px 18px;
  box-shadow: 0 2px 12px rgba(222,124,44,0.08);
  transition: box-shadow 0.21s, transform 0.18s;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #1A3D5A;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #B35E14;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.stars {
  margin-top: 8px;
  color: #DE7C2C;
  font-size: 1.18rem;
  letter-spacing: 0.1em;
}

/* CASE STUDY */
.cases-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.case-brief {
  flex: 1 1 250px;
  max-width: 400px;
  min-width: 230px;
}
.case-brief h3 {
  margin-bottom: 7px;
  color: #B35E14;
  font-size: 1.1rem;
}
.case-brief ul {
  font-size: 0.99rem;
  color: #2A2A2A;
}

/* PRICING TABLE */
.pricing-table {
  margin: 30px 0 20px 0;
  background: #FFFDF8;
  border-radius: 14px;
  box-shadow: 0 1.5px 6px rgba(222,124,44,0.07);
}
.pricing-table th, .pricing-table td {
  border-bottom: 1px solid #FFE7D1;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.pricing-table td strong {
  color: #B35E14;
}
.note {
  background: #FFE7D1;
  color: #1A3D5A;
  border-radius: 10px;
  padding: 13px 17px;
  margin-top: 18px;
  font-size: 0.97rem;
}

/* DETAILS & FAQ */
details {
  margin-bottom: 16px;
  background: #FFF6ED;
  border-radius: 6px;
  padding: 8px 12px;
  border: 1px solid #FFE7D1;
}
details summary {
  font-weight: 600;
  cursor: pointer;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #B35E14;
  padding: 7px 0;
  border-radius: 6px;
}
details[open] {
  background: #FFF0E1;
}

/* FOOTER  */
footer {
  background: #1A3D5A;
  color: #FFF;
  padding: 40px 0 0 0;
  font-size: 1rem;
  border-top-left-radius: 38px;
  border-top-right-radius: 38px;
  box-shadow: 0 -2px 16px rgba(34,62,91,0.05);
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  margin-bottom: 12px;
}
.footer-brand img {
  height: 38px;
  background: #FFFDF8;
  border-radius: 12px;
  margin-right: 2px;
}
.footer-brand .text-section {
  font-size: 0.97rem;
  color: #E1E3E6;
  line-height: 1.5;
}
.footer-menu {
  margin-top: 26px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #FFE7D1;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  border-radius: 8px;
  padding: 6px 12px;
  transition: background 0.16s, color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #DE7C2C;
  color: #FFFDF8;
}

@media (max-width: 768px) {
  .footer-brand {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFE7D1;
  color: #1A3D5A;
  box-shadow: 0 -4px 30px rgba(26, 61, 90, 0.10);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  padding: 18px 14px 18px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  z-index: 1400;
  font-size: 1rem;
  justify-content: center;
  animation: cookieIn 0.5s;
  max-width: 100vw;
}
@keyframes cookieIn {
  0% { transform: translateY(130%); }
  100% { transform: translateY(0); }
}
.cookie-banner .banner-text {
  flex: 2 1 270px;
  min-width: 180px;
}
.cookie-banner .cookie-btn {
  border: none;
  background: #DE7C2C;
  color: #FFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 12px;
  margin-left: 10px;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.17s;
  box-shadow: 0 1px 5px rgba(222,124,44,0.08);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #B35E14;
}
.cookie-banner .cookie-btn.secondary {
  background: #E1E3E6;
  color: #B35E14;
}
.cookie-banner .cookie-btn.secondary:hover {
  background: #FFFDF8;
  color: #DE7C2C;
}

@media (max-width: 520px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
  }
  .cookie-banner .banner-text {
    margin-bottom: 4px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1600;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(26,61,90,0.55);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: cookieModalIn 0.3s;
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal {
  background: #FFFDF8;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 0px 32px 0 rgba(34,62,91,0.13);
  min-width: 320px;
  max-width: 98vw;
  width: 400px;
  margin: 0;
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: flex-start;
  color: #1A3D5A;
}
@media (max-width: 480px) {
  .cookie-modal { min-width: 0; width: 98vw; padding: 16px 8px 12px 8px; }
}
.cookie-modal h2 {
  font-size: 1.22rem;
  color: #DE7C2C;
  margin-bottom: 9px;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-bottom: 8px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 11px;
  justify-content: space-between;
  background: #EFE2D3;
  padding: 9px 14px;
  border-radius: 8px;
  width: 100%;
}
.cookie-option label {
  color: #1A3D5A;
  font-weight: 600;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 38px; height: 22px;
  background: #E1E3E6;
  border-radius: 14px;
  position: relative;
  outline: none;
  margin-right: 4px;
  cursor: pointer;
  transition: background .16s;
  vertical-align: middle;
}
.cookie-toggle:checked {
  background: #DE7C2C;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 4px; top: 3.5px;
  width: 15px; height: 15px;
  background: #FFF;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(34,62,91,0.08);
  transition: transform .16s;
}
.cookie-toggle:checked:before {
  transform: translateX(15px);
}
.cookie-option .desc {
  color: #95612B;
  font-size: 0.97rem;
  margin-left: 12px;
}
.cookie-option.essential label {
  color: #B35E14;
}
.cookie-modal .cookie-btn {
  width: auto;
  margin-right: 12px;
}
.cookie-modal .close-modal {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #B35E14;
  font-size: 1.45rem;
  margin-bottom: 2px;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .close-modal:hover {
  color: #DE7C2C;
}

/* GENERIC UTILITIES / MICRO-INTERACTIONS */
.soft-shadow {
  box-shadow: 0 2px 16px 0 rgba(222,124,44,0.09), 0 1.5px 4px rgba(26, 61, 90, 0.04) !important;
}
.rounded {
  border-radius: 18px !important;
}
.gap-20 { gap: 20px !important; }
.mt-32 { margin-top: 32px !important; }
.mb-24 { margin-bottom: 24px !important; }
.text-center { text-align: center !important; }

/* MISC: Contact/Thank you/etc */
.contact-details, .contact-cta, .team-intro, .info-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.confirmation, .about-snippet {
  background: #FFF6ED;
  border-radius: 20px;
  box-shadow: 0 2px 14px rgba(222,124,44,0.11);
  text-align: center;
  padding: 44px 8px 34px 8px;
  margin-bottom: 60px;
}
.confirmation .cta-button {
  margin-top: 20px;
}

/* TEXT SECTION (UTILITY) */
.text-section {
  font-size: 1.01rem;
  color: #2A2A2A;
  margin-bottom: 6px;
}

/* PRINT SUPPORT (optional) */
@media print {
  header, footer, .cta-banner, .cookie-banner {
    display: none !important;
  }
  .container, .section, .content-wrapper {
    padding: 0 !important;
    margin: 0 !important;
  }
}
