/* ------------------ 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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F4F5F7;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #253755;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  height: 100%;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 1.5em;
}
a {
  color: #253755;
  text-decoration: none;
  transition: color .2s cubic-bezier(.4,.7,.4,1);
}
a:hover, a:focus {
  color: #69A297;
  outline: none;
}

button {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

/* ------------------- TYPOGRAPHY & HEADERS ------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: #253755;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: .03em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
  letter-spacing: .01em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4,h5,h6 {
  font-size: 1.1rem;
  margin-bottom: 9px;
}
p, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #253755;
}
strong, b {
  font-weight: 700;
}
sub, sup {
  font-size: 85%;
}

.subheadline, .confirmation-message {
  font-size: 1.15rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #253755;
  margin-bottom: 22px;
}

/* --------------------- GENERAL CONTAINERS ------------------- */
.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1216px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* Sections & Spacing */
.section,
.about-section,
.services-section,
.pricing-section,
.faq-section,
.legal-section,
.gallery-section,
.testimonials-section,
.contact-section,
.confirmation-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(37,55,85,0.05), 0 1.5px 5px 0 rgba(37,55,85,0.05);
  position: relative;
}

.cta-banner {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #69A297;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 2px 25px 0 rgba(37,55,85,0.08);
}
.cta-banner h2, .cta-banner p {
  color: #fff;
}

/* ----------------------- HEADER & NAV ----------------------- */
header {
  background: #253755;
  color: #fff;
  width: 100%;
  z-index: 20;
  box-shadow: 0 2px 20px 0 rgba(37,55,85,.05);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 36px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.main-nav a {
  color: #fff;
  padding: 8px 0;
  position: relative;
  border-radius: 3px;
  transition: color .16s, background .16s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #69A297;
  background: rgba(244,245,247, 0.07);
}
.main-nav .cta-btn {
  background: #69A297;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 12px;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 20px 0 rgba(37,55,85,0.12);
  margin-left: 15px;
  transition: background .17s, color .17s, box-shadow .17s;
  font-weight: 900;
  border: none;
  outline: none;
  display: inline-block;
}
.main-nav .cta-btn:hover,
.main-nav .cta-btn:focus {
  background: #253755;
  color: #fff !important;
  box-shadow: 0 7px 26px 0 rgba(37,55,85,0.20);
}

.mobile-menu-toggle {
  display: none;
  background: #69A297;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 9px 18px;
  border-radius: 8px;
  margin-left: 20px;
  z-index: 32;
  transition: background .16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #fff;
  color: #253755;
}

/* ----------------- MOBILE NAV MENU Styles ------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(37,55,85,0.97);
  color: #fff;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.9,.25,.6,1), opacity .28s;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.4rem;
  border: none;
  padding: 25px 28px 10px 0;
  cursor: pointer;
  transition: color .3s;
  z-index: 1250;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #69A297;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0 40px 40px 40px;
  margin-top: 14px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  padding: 13px 0;
  border-bottom: 1.5px solid rgba(244,245,247,0.08);
  width: 100%;
  border-radius: 8px;
  transition: background .18s, color .20s;
}
.mobile-nav a:hover, .mobile-nav a:active {
  color: #69A297;
  background: rgba(244,245,247, 0.05);
}

/* Hide desktop nav at mobile, show burger */
@media (max-width:900px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Hide mobile menu on desktop */
@media (min-width:901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ------------------- HERO (homepage, etc.) ------------------ */
.hero {
  background: #253755;
  color: #fff;
  padding: 70px 20px 60px 20px;
  border-radius: 18px;
  margin-bottom: 60px;
  box-shadow: 0 10px 56px 0 rgba(37,55,85,0.15);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 30px;
}
.hero h1 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 18px;
}
.hero .cta-btn {
  background: #69A297;
  color: #fff;
}
.hero .cta-btn:hover {
  background: #fff;
  color: #253755 !important;
}

/* ----------------------- FEATURES --------------------------- */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature-item {
  background: #F4F5F7;
  border-radius: 16px;
  padding: 30px 28px 24px 28px;
  flex: 1 1 215px;
  min-width: 225px;
  max-width: 340px;
  box-shadow: 0 3px 16px 0 rgba(37,55,85,0.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .14s;
}
.feature-item:hover {
  box-shadow: 0 7px 32px 0 rgba(37,55,85,0.14);
  transform: translateY(-2px) scale(1.025);
}
.feature-item img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  margin-bottom: 6px;
}

/* ----------------------- SERVICES PREVIEW ------------------- */
.services-preview .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 24px;
}
.service-preview {
  background: #fff;
  border-radius: 13px;
  padding: 22px 18px 18px;
  box-shadow: 0 1px 9px 0 rgba(37,55,85,0.09);
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 290px;
  margin-bottom: 20px;
  border-left: 6px solid #69A297;
  transition: box-shadow .14s, border-color .15s;
  position: relative;
}
.service-preview:hover {
  box-shadow: 0 5px 20px 0 rgba(37,55,85,0.13);
  border-left: 6px solid #253755;
}

.view-all-link {
  display: inline-block;
  color: #69A297;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  margin-top: 10px;
  padding-left: 1px;
  transition: color .14s;
}
.view-all-link:hover {
  text-decoration: underline;
  color: #253755;
}

/* -------------------- FULL SERVICES PAGE -------------------- */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-card {
  background: #F4F5F7;
  border-radius: 13px;
  padding: 26px 26px 16px 24px;
  flex: 1 1 255px;
  min-width: 260px;
  max-width: 375px;
  box-shadow: 0 3px 14px 0 rgba(37,55,85,0.07);
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border-left: 7px solid #69A297;
  position: relative;
  transition: border-color .18s, box-shadow .17s, transform .18s;
}
.service-card:hover {
  border-left: 7px solid #253755;
  box-shadow: 0 8px 41px 0 rgba(37,55,85,0.12);
  transform: translateY(-2.5px) scale(1.027);
}
.service-card strong {
  color: #253755;
  font-size: 1.05em;
}
.service-benefits {
  margin-top: 25px;
}

/* --------------- PRICING TABLE ---------------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 16px 0 rgba(37,55,85,0.08);
  margin-bottom: 30px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 18px 14px 15px 14px;
  text-align: left;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  vertical-align: top;
}
.pricing-table thead th {
  background: #253755;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  font-weight: 900;
}
.pricing-table tbody tr {
  border-bottom: 2px solid #F4F5F7;
}
.pricing-table tbody tr:hover {
  background: #F4F5F7;
}
.pricing-notes {
  margin-top: 12px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #F4F5F7;
  border-radius: 13px;
  padding: 22px 20px;
  box-shadow: 0 1px 10px 0 rgba(37,55,85,0.07);
  position: relative;
  margin-bottom: 20px;
}
.faq-item h3 {
  color: #253755;
}

/* --------------- TESTIMONIALS ----------------- */
.testimonials-section {
  background: #fff;
  padding: 40px 20px;
  margin-bottom: 60px;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(37,55,85,0.07);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 22px 20px 22px;
  background: #F4F5F7;
  border-radius: 14px;
  min-width: 250px;
  max-width: 530px;
  box-shadow: 0 2px 22px 0 rgba(37,55,85,0.07);
  font-size: 1.07rem;
  margin-bottom: 20px;
  position: relative;
  color: #253755;
  border-left: 6px solid #69A297;
  transition: box-shadow .2s, border-color .17s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 39px 0 rgba(37,55,85,.19);
  border-left: 6px solid #253755;
  transform: scale(1.019);
}
.testimonial-card p {
  margin-bottom: 10px;
  color: #253755;
  font-style: italic;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #253755;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.average-rating-display {
  margin-top: -15px;
  font-size: 1.15rem;
  color: #253755;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --------------- CONTACT / MAP EMBED ------------- */
.contact-details, .map-embed {
  background: #F4F5F7;
  border-radius: 13px;
  padding: 28px 20px 23px 20px;
  margin-bottom: 20px;
}
.contact-details ul {
  list-style: none;
  padding: 0;
}
.contact-details li {
  padding-bottom: 12px;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}
.map-embed {
  color: #253755;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
}

.confirmation-message {
  margin-bottom: 34px;
  font-size: 1.19rem;
  color: #253755;
}

/* --------------------- ABOUT & GALLERY --------------------- */
.text-section, .gallery-section .text-section {
  margin-top: 10px;
  background: #F4F5F7;
  border-radius: 13px;
  padding: 30px 22px 23px 22px;
  font-size: 1.05rem;
  box-shadow: 0 2px 10px 0 rgba(37,55,85,0.07);
  margin-bottom: 20px;
}
.text-section ul li {
  margin-bottom: 10px;
}

/* --------------------- FOOTER ----------------------- */
footer {
  background: #253755;
  color: #fff;
  border-top: 4px solid #69A297;
  padding: 33px 0 23px 0;
  font-size: 1rem;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
.footer-brand {
  margin-right: 50px;
}
.footer-brand img {
  height: 46px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
}
.footer-nav a {
  color: #fff;
  transition: color .16s;
  opacity: 0.92;
  padding: 5px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #69A297;
  opacity: 1;
}
.footer-contact {
  font-size: .98rem;
  color: #fff;
}
.footer-contact strong,a {
  color: #fff;
}
.footer-contact a:hover {
  color: #69A297;
}
.footer-social {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  min-width: 90px;
}

/* ---------------- BUTTONS & INTERACTIONS --------------- */
.cta-btn,
button,
input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #69A297;
  color: #fff;
  border: none;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 13px;
  padding: 12px 36px;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 1.5px 10px 0 rgba(37,55,85,0.09);
  transition: background .16s, color .14s, box-shadow .18s, transform .13s;
  cursor: pointer;
  letter-spacing: 0.04em;
  outline: none;
}
.cta-btn:hover,
.cta-btn:focus,
button:hover,
button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: #253755;
  color: #fff;
  transform: translateY(-1.5px) scale(1.017);
  box-shadow: 0 5px 22px 0 rgba(37,55,85,0.15);
}

/* Cookie banner override buttons */
.cookie-btn {
  background: #253755;
  color: #fff;
  font-weight: 900;
  border-radius: 8px;
  padding: 11px 25px;
  margin-right: 12px;
  font-size: 1rem;
  transition: background .17s, color .16s, box-shadow .16s;
  outline: none;
  border: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #69A297;
  color: #fff;
}

/* ----------------- FLEXBOX LAYOUTS -------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 13px 0 rgba(37,55,85,.09);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 240px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------------- RESPONSIVE MEDIA ------------------- */
@media (max-width:1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width:900px) {
  .container {
    max-width: 94vw;
    padding-left: 11px;
    padding-right: 11px;
  }
  .content-wrapper, .feature-grid, .services-list, .testimonial-slider {
    gap: 17px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .section, .about-section, .services-section,
  .pricing-section, .gallery-section,
  .testimonials-section, .contact-section, .confirmation-section {
    padding: 22px 7px;
  }
  .hero {
    padding: 32px 7px 32px 7px;
  }
  .cta-banner {
    padding: 27px 7px;
  }
  .feature-grid, .services-list, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-grid {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-social {
    margin-top: 18px;
  }
}
@media (max-width:470px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.12rem; }
  .container { padding-left:4px; padding-right: 4px; }
  .cta-btn, .cookie-btn, button, input[type="submit"] { font-size:.97rem; padding:10px 15px;  }
}

/* ------------------------ COOKIE CONSENT ---------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #253755;
  color: #fff;
  padding: 20px 13px 18px 20px;
  z-index: 11200;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  box-shadow: 0 -2px 22px 0 rgba(37,55,85,0.08);
  font-size: 1.01rem;
  animation: cookieSlideIn .6s cubic-bezier(.72,0,.34,1);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn {
  margin-right: 15px;
  margin-top: 5px;
}
.cookie-banner .cookie-settings-btn {
  background: #69A297;
  color: #fff;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #fff;
  color: #253755;
}
.cookie-banner .cookie-btn:last-child {
  margin-right: 0;
}
.cookie-banner .cookie-text {
  max-width: 540px;
  font-size: 1rem;
}

@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    font-size: 0.99rem;
    align-items: flex-start;
    padding: 14px 7px 15px 8px;
    gap: 13px;
  }
  .cookie-banner .cookie-btn {
    margin-right: 6px;
    margin-bottom: 6px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 13000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(37, 55, 85, 0.83);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn .3s cubic-bezier(.5,1.2,.3,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #253755;
  border-radius: 18px;
  max-width: 440px;
  width: 92vw;
  padding: 34px 27px 24px 27px;
  box-shadow: 0 5px 36px 0 rgba(37,55,85,0.16);
  position: relative;
  animation: popupBump .37s cubic-bezier(.5,1.2,.3,1);
}
@keyframes popupBump {
  from { transform: scale(.85); opacity:0; }
  to { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  margin-top: 0;
  color: #253755;
  font-size: 1.25rem;
}
.cookie-modal .cookie-category {
  margin-bottom: 17px;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.cookie-modal label {
  margin-left: 10px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #F4F5F7;
  border-radius: 16px;
  position: relative;
  outline: none;
  border: 1.2px solid #69A297;
  transition: background .16s, border-color .15s;
  margin-left: 0;
  margin-right: 7px;
}
.cookie-toggle:checked {
  background: #69A297;
  border-color: #253755;
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  top: 1.8px;
  left: 2px;
  transition: left .18s cubic-bezier(.7,.27,.3,1);
  box-shadow: 0 1.5px 4px rgba(37,55,85,.06);
}
.cookie-toggle:checked::before {
  left: 17px;
}
.cookie-modal .modal-btns {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal .cookie-btn {
  padding: 11px 19px;
  font-size: .96rem;
}
.cookie-modal .cookie-btn:last-child {
  margin-right: 0;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 13px;
  right: 19px;
  background: none;
  color: #253755;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  transition: color .16s;
}
.cookie-modal .close-btn:hover {
  color: #69A297;
}

/* ------------------- MISC DECOR ------------------- */
::-webkit-input-placeholder{color:#b0b6c4; opacity:1;}
::-moz-placeholder{color:#b0b6c4; opacity:1;}
:-ms-input-placeholder{color:#b0b6c4; opacity:1;}
::placeholder{color:#b0b6c4; opacity:1;}

::-webkit-scrollbar {
    width: 12px;
    background: #F4F5F7;
}
::-webkit-scrollbar-thumb {
    background: #69A297;
    border-radius: 11px;
}
::-webkit-scrollbar-thumb:hover {
    background: #253755;
}

/* ---------------- CUSTOM GEOMETRIC DECOR (optional classes, not absolute for card content) ------------ */
.decor-accent {
  position: absolute;
  width: 85px;
  height: 85px;
  background: #69A297;
  border-radius: 30px 0 60px 0;
  opacity:.14;
  top: -35px;
  right: -35px;
  z-index: 1;
  pointer-events: none;
  box-shadow: 0 2px 26px 0 rgba(37,55,85,.11);
}

/* ----------------- PRINT/PDF STYLES -------------- */
@media print {
  body, .main, .section,
  .about-section, .testimonials-section,
  .confirmation-section {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
  }
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
}
