/* --- CSS RESET & BASE ------------------------------------ */
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 {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #f4f6fa;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #12374c;
  background: #f4f6fa;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  border: 0;
  max-width: 100%;
  vertical-align: middle;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

/* --- BRAND TYPOGRAPHY ------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Playfair+Display:wght@700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #12374c;
  font-weight: 700;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.25;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

h5, h6 {
  font-size: 1rem;
}

p, li, td, th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}

strong {
  font-weight: 700;
}

ul, ol {
  margin-left: 22px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
}


/* --- CONTAINERS & LAYOUT --------------------------------- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(19,55,76,0.08);
}

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

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(199,161,115,0.18);
  padding: 28px 22px;
  transition: box-shadow 0.3s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 8px 28px 0 rgba(199,161,115,0.28);
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
}

.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: center;
  gap: 20px;
  padding: 20px 32px;
  background: #f4f6fa;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(19,55,76,0.11);
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 700px;
  transition: box-shadow 0.2s, transform 0.2s;
  color: #12374c;
  font-size: 1.1rem;
}

.testimonial-card:hover {
  box-shadow: 0 6px 30px 0 rgba(199,161,115,0.15);
  transform: scale(1.02);
}

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

/* --- HERO ----------------------------------------------- */
.hero {
  padding: 54px 0 38px 0;
  background: #bee0fa;
  background-blend-mode: lighten;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 8px 32px rgba(199,161,115,0.12);
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
  gap: 18px;
}

.hero h1 {
  font-size: 2.6rem;
  color: #12374c;
  animation: popUp 1s cubic-bezier(.47,1.64,.41,.8) 0.2s both;
}
.hero p {
  font-size: 1.2rem;
  color: #234b67;
}
@keyframes popUp {
  0% { opacity:0; transform: translateY(42px) scale(0.96); }
  100% { opacity:1; transform: translateY(0) scale(1); }
}

.hero .btn-primary {
  margin-top: 12px;
  animation: pulseBtn 1.3s 1.1s both;
}
@keyframes pulseBtn {
  0% { box-shadow: 0 0 0 0 rgba(199,161,115,0.2); }
  100% { box-shadow: 0 0 0 8px rgba(199,161,115,0); }
}

/* --- NAVIGATION BAR ------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 4px 22px rgba(19,55,76,0.06);
  position: relative;
  z-index: 30;
  width: 100%;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo-title img {
  height: 48px;
  max-width: 158px;
  border-radius: 10px 20px 10px 20px;
  animation: bounceLogo 1.3s 0.25s both;
}
@keyframes bounceLogo {
  0% { transform: scale(0.95) rotate(-6deg); opacity:0.0; }
  60% {transform:scale(1.08) rotate(3deg); opacity:0.8;}
  100% { transform: scale(1) rotate(0deg); opacity:1; }
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #12374c;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 12px;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #bee0fa;
  color: #0a2231;
  transform: scale(1.08) rotate(-2deg);
}

.btn-primary {
  background: #c7a173;
  color: #fff;
  border-radius: 18px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px rgba(199,161,115,0.16);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
  letter-spacing: 1px;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #987445;
  color: #fff;
  box-shadow:0 6px 22px rgba(199,161,115,0.27);
  transform:scale(1.04);
}
.btn-secondary {
  background: #bee0fa;
  color: #12374c;
  border-radius: 18px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.13s;
  letter-spacing: 0.8px;
  box-shadow: 0 2px 8px rgba(190,224,250,0.17);
  cursor: pointer;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #e3f4ff;
  color: #0a2231;
  transform: scale(1.03);
}

/* --- MOBILE NAVIGATION ---------------------------------- */
.mobile-menu-toggle {
  display: none;
  color: #12374c;
  font-size: 2.1rem;
  background: #bee0fa;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.18s;
  z-index: 150;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #c7a173;
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 200;
  transform: translateX(100vw);
  transition: transform 0.4s cubic-bezier(.77,.2,.6,1.01);
  box-shadow: 0 2px 24px 0 rgba(19,55,76,0.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 28px 24px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #12374c;
  position: absolute;
  top: 24px;
  right: 30px;
  cursor: pointer;
  z-index: 210;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #c7a173;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 78px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #12374c;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 0 14px 4px;
  border-radius: 10px;
  transition: background 0.14s, color 0.14s;
  background: none;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #bee0fa;
  color: #0a2231;
}

/* Hide main-nav and show burger on mobile */
@media (max-width: 991px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    flex-direction: row;
    gap: 0;
  }
}

/* --- FOOTER --------------------------------------------- */
footer {
  background: #fff;
  box-shadow: 0 -2px 20px rgba(19,55,76,0.07);
  border-radius: 34px 34px 0 0;
  margin-top: 65px;
  padding-top: 30px;
  padding-bottom: 18px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 44px;
  justify-content: space-between;
}
.footer-branding img {
  height: 44px;
  margin-bottom: 12px;
}
.footer-nav, .footer-contact, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1rem;
}
.footer-nav a {
  color: #12374c;
  text-decoration: underline;
  margin-bottom: 4px;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #c7a173;
}
.footer-social {
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
}
.footer-social img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(199,161,115,0.09);
  transition: box-shadow 0.19s, transform 0.14s;
}
.footer-social a:hover img {
  box-shadow: 0 7px 17px rgba(199,161,115,0.22);
  transform: scale(1.08) rotate(-3deg);
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-legal {
  margin-top: 22px;
  font-size: 0.95rem;
  color: #677991;
  width: 100%;
  text-align: center;
}

/* --- SECTION & CARD GAPS --------------------------------- */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
.content-grid, .team-bio, .service-cards {
  gap: 20px;
}
.text-image-section {
  gap: 30px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}
.feature-item {
  gap: 15px;
  margin-bottom: 20px;
}

/* --- FEATURES & LISTS ----------------------------------- */
.features {
  background: #e3f4ff;
  border-radius: 18px;
  box-shadow: 0 3px 22px 0 rgba(190,224,250,0.15);
  margin-bottom: 60px;
  padding: 32px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.features ul,
.features ol {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}
.features ul li, .features ol li {
  display: flex;
  align-items: flex-start;
  font-size: 1.08rem;
  gap: 14px;
  margin-bottom: 18px;
  background: #f4f6fa;
  border-radius: 14px;
  padding: 15px 18px;
  box-shadow: 0 2px 11px 0 rgba(19,55,76,0.06);
}
.features ul li img {
  width: 31px;
  height: 31px;
  margin-right: 8px;
  filter: drop-shadow(0px 2px 2px #bee0fa);
  border-radius: 50%;
  background: #bee0fa;
  padding:4px;
  transition: transform 0.28s;
}
.features ul li:hover img {
  transform: scale(1.18) rotate(-7deg);
}

/* --- SERVICE CARDS -------------------------------------- */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(199,161,115,0.10);
  padding: 28px 19px 18px 22px;
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 360px;
  margin-bottom: 16px;
  transition: transform 0.23s, box-shadow 0.22s;
  position: relative;
}
.service-card h3 {
  color: #c7a173;
  font-family: 'Playfair Display',serif;
  margin-bottom: 12px;
  font-size: 1.22rem;
}
.service-card:hover {
  transform: rotate(-2deg) scale(1.04);
  box-shadow: 0 10px 32px rgba(199,161,115,0.19);
}


/* --- TABLES --------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 30px;
  font-size: 1rem;
}
thead {
  background: #bee0fa;
}
th, td {
  border: none;
  padding: 14px 12px;
  text-align: left;
}
th {
  color: #12374c;
  font-weight: bold;
}
tbody tr {
  border-bottom: 1px solid #e3f4ff;
}
tbody tr:nth-child(even){
  background: #f4f6fa;
}


/* --- TESTIMONIALS --------------------------------------- */
.testimonials {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 14px 0 rgba(19,55,76,0.11);
  padding: 32px 18px;
}

.testimonial-card span {
  color: #c7a173;
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-family: 'Playfair Display', serif;
}
.testimonial-card strong {
  color: #12374c;
  font-weight: 700;
  margin-top: 3px;
  font-size: 1.02rem;
}

/* --- CALL TO ACTIONS ------------------------------------ */
.contact-preview, .contact-cta {
  background: #bee0fa;
  border-radius: 22px;
  box-shadow: 0 3px 11px rgba(19,55,76,0.09);
  margin-bottom: 60px;
  padding: 36px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}
.contact-preview img,
.contact-cta img {
  width: 25px;
  height: 25px;
  vertical-align: middle;
  margin-right: 9px;
}

.callback a img {
  width: 28px;
  height: 28px;
  margin-right: 7px;
  filter: grayscale(0);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 1px 8px rgba(122,191,255,0.25);
  transition: box-shadow 0.18s, transform 0.14s;
}
.callback a:hover img {
  transform: scale(1.17) rotate(-4deg);
  box-shadow: 0 7px 20px rgba(199,161,115,0.19);
}

/* --- PRICING FAQ TEASER --------------------------------- */
.faq-teaser {
  background: #e3f4ff;
  border: 1px solid #bee0fa;
  border-radius: 13px;
  padding: 12px 16px;
  margin-top: 16px;
  font-size: 1rem;
  color: #12374c;
}
.faq-teaser a {
  color: #c7a173;
  font-weight: 700;
  text-decoration: underline;
}
.faq-teaser a:hover {
  color: #987445;
}

/* --- LEGAL SECTIONS ------------------------------------- */
.legal {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 1px 12px 0 rgba(19,55,76,0.07);
  padding: 26px 14px 32px 14px;
  margin-bottom: 52px;
}
.legal h1 {
  font-size: 2rem;
  margin-bottom: 18px;
}
.legal h2 {
  color: #c7a173;
  font-size: 1.18rem;
}

/* --- THANK YOU ----------------------------------------- */
.thankyou {
  background: #bee0fa;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(190,224,250,0.12);
  padding: 44px 16px 28px 16px;
  margin-top: 26px;
  margin-bottom: 66px;
  text-align: center;
}
.thankyou h1 {
  color: #12374c;
  animation: popUp 1s cubic-bezier(.47,1.64,.41,.8) 0.2s both;
}

/* --- ANIMATIONS -------------------------------------- */
@keyframes floatCard {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-7px) rotate(-1deg); }
  100%{ transform: translateY(0) rotate(0deg); }
}
.card, .service-card {
  animation: floatCard 5s ease-in-out infinite;
  animation-delay: 0.3s;
}
.testimonial-card {
  animation: floatCard 4.4s 0.8s infinite;
}

/* --- COOKIE CONSENT BANNER ------------------------------- */
.cookie-consent-banner {
  position: fixed;
  z-index: 3000;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #12374c;
  color: #fff;
  padding: 22px 17px 16px 17px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 22px 0 rgba(19,55,76,0.18);
  gap: 18px;
  font-size: 1rem;
  animation: slideUpBanner 0.7s ease-in-out;
}
@keyframes slideUpBanner {
  0% { transform: translateY(92px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.08rem;
}
.cookie-btns {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  min-width: 110px;
  padding: 9px 14px;
  border-radius: 14px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, transform 0.12s;
  margin-right: 4px;
}
.cookie-btn.accept {
  background: #c7a173;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #987445;
  transform: scale(1.03);
}
.cookie-btn.reject {
  background: #e3f4ff;
  color: #12374c;
}
.cookie-btn.reject:hover {
  background: #bee0fa;
  color: #0a2231;
  transform: scale(1.03);
}
.cookie-btn.settings {
  background: #bee0fa;
  color: #12374c;
}
.cookie-btn.settings:hover {
  background: #c7a173;
  color: #fff;
  transform: scale(1.04);
}

/* --- COOKIE MODAL --------------------------------------- */
.cookie-modal-background {
  display: none;
  position: fixed;
  z-index: 4000;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.25);
  align-items: center;
  justify-content: center;
}
.cookie-modal-background.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #12374c;
  border-radius: 20px;
  box-shadow: 0 6px 44px 0 rgba(19,55,76,0.22);
  width: 92vw;
  max-width: 425px;
  padding: 32px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: popUp 0.45s;
}
.cookie-modal h2 {
  margin-top: 0;
  color: #c7a173;
  font-size: 1.18rem;
  margin-bottom: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: #bee0fa;
  color: #12374c;
  border-radius: 50%;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.14s;
}
.cookie-modal-close:hover {
  background: #c7a173;
  color: #fff;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.cookie-category .category-label {
  font-weight: 600;
  font-size: 1.05rem;
}
.cookie-switch {
  margin-left: auto;
}
input[type='checkbox'].cookie-toggle {
  width: 40px;
  height: 20px;
  border-radius: 14px;
  appearance: none;
  background: #e3f4ff;
  outline:none;
  transition: background 0.19s;
  position: relative;
  cursor: pointer;
}
input[type='checkbox'].cookie-toggle:checked {
  background: #c7a173;
}
input[type='checkbox'].cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s;
  box-shadow: 0 2px 8px rgba(19,55,76,0.07);
}
input[type='checkbox'].cookie-toggle:checked:before {
  left: 22px;
}

/* --- RESPONSIVE DESIGN --------------------------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 100%;
    flex-direction: column;
    gap: 20px;
  }
  .footer-branding, .footer-contact, .footer-social, .footer-nav {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  html { font-size: 95%; }
  .hero {
    padding: 32px 0 22px 0;
    min-height: 220px;
    border-radius: 0 0 28px 28px;
  }
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 11px;
    padding: 0 1px;
  }
  .section,
  section {
    padding: 22px 4px;
    margin-bottom: 34px;
    border-radius: 12px;
  }
  .card, .service-card {
    min-width: 96vw;
    max-width: 100vw;
    border-radius: 13px;
    padding: 18px 8px;
  }
  .service-cards {
    gap: 12px;
  }
  .card-container, .content-grid, .team-bio, .features, .testimonial-card, .feature-item {
    gap: 10px !important;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-nav, .footer-contact, .footer-branding, .footer-social {
    align-items: flex-start;
    margin-bottom: 11px;
  }
}

/* --- UTILITY CLASSES ----------------------------------- */
.mt-1 { margin-top: 8px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mt-2 { margin-top: 18px !important; }
.mb-2 { margin-bottom: 18px !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.show { display: block !important; }
.hide { display: none !important; }

/* --- SPECIAL INTERACTIVE EFFECTS ----------------------- */
a, button, .btn-primary, .btn-secondary, .main-nav a, .mobile-nav a {
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.12s;
}

/* --- FOCUS VISIBLE ACCESSIBILITY ----------------------- */
:focus-visible {
  outline: 2px solid #bee0fa;
  outline-offset: 2px;
}

/* --- CLASSES FOR HTML STRUCTURE ------------------------ */
.address {
  font-style: normal;
  color: #234b67;
  font-size: 1.02rem;
}
.map-embed {
  width: 90%;
  background: #bee0fa;
  border-radius: 13px;
  height: 180px;
  box-shadow: 0 2px 9px rgba(19,55,76,0.08);
}
.callout {
  background: #bee0fa;
  color: #12374c;
  border-radius: 10px;
  padding: 10px 16px;
  margin-top: 18px;
  margin-bottom: 8px;
}
.team-bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.08rem;
}

/* --- Z-INDEX LAYERS ------------------------------------ */
header { z-index: 30; }
.mobile-menu { z-index: 200; }
.cookie-consent-banner { z-index: 3000; }
.cookie-modal-background { z-index: 4000; }

/*
End of style.css for HafenHerzen Hochzeiten / playful_dynamic
*/
