/* CSS RESET & BASE STYLES */
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-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #223139;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #20485A;
  text-decoration: none;
  transition: color 0.3s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #A4BC58;
  transition: color 0.3s;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
/* TYPOGRAPHY */
h1 {
  font-family: 'Montserrat', 'Arial Black', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: #20485A;
  text-shadow: 1px 4px 8px rgba(32,72,90,0.10);
}
h2 {
  font-family: 'Montserrat', 'Arial Black', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #223139;
  margin-bottom: 20px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #A4BC58;
  margin-bottom: 14px;
  font-weight: 600;
}
p {
  margin-bottom: 16px;
}
ul {
  margin-left: 24px;
  margin-bottom: 18px;
}
ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.text-section h2, .text-section h3 {
  margin-top: 24px;
}
strong {
  color: #20485A;
}
/* HEADER */
header {
  background: #20485A;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1020;
  box-shadow: 0 4px 18px rgba(32,72,90,0.08);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  position: relative;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 4px 0;
  border-bottom: 2.5px solid transparent;
  transition: border 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #A4BC58;
  border-bottom: 2.5px solid #A4BC58;
}
.btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  padding: 13px 36px;
  background: #A4BC58;
  color: #20485A;
  border: none;
  outline: none;
  border-radius: 28px 12px 24px 18px / 18px 32px 18px 24px;
  box-shadow: 0 4px 16px rgba(164,188,88,0.13); 
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  margin-left: 14px;
  position: relative;
  letter-spacing: 0.1px;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
  background: #20485A;
  color: #fff;
  box-shadow: 0 6px 28px rgba(32,72,90,0.18);
  transform: translateY(-2px) scale(1.05) rotate(-2deg);
}
/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #A4BC58;
  border: none;
  color: #20485A;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.16s, color 0.13s;
  box-shadow: 0 2px 8px rgba(164,188,88,0.08);
  z-index: 1101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #20485A;
  color: #fff;
}
/* HEADER RESPONSIVE NAV */
@media (max-width: 1020px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    gap: 12px;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
}
@media (max-width: 850px) {
  .logo img {
    height: 38px;
  }
}
@media (max-width: 600px) {
  .logo img {
    height: 34px;
  }
}
/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: #223139;
  z-index: 1600;
  transform: translateX(-110%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.86,0,0.07,1);
  padding: 30px 22px 0 18px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #A4BC58;
  color: #20485A;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 2.2rem;
  align-self: flex-end;
  margin-bottom: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #20485A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 18px 0 8px 0;
  border-bottom: 2px solid rgba(164,188,88,0.15);
  transition: color 0.2s, border 0.2s;
  letter-spacing: 0.2px;
  touch-action: manipulation;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #A4BC58;
  border-bottom-color: #A4BC58;
}
@media (min-width: 900px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}
/* SECTION SPACING & FLEX UTILITY CLASSES */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 28px rgba(32,72,90,0.08);
  margin-bottom: 20px;
  padding: 24px 28px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 40px rgba(32,72,90,0.15);
  transform: translateY(-2px) scale(1.03);
}
.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;
  padding: 20px;
  margin-bottom: 26px;
  background: #F4F6F8;
  border-radius: 18px 36px 24px 18px / 28px 18px 36px 20px;
  box-shadow: 0 4px 16px rgba(32,72,90,0.07);
  border-left: 5px solid #A4BC58;
  word-break: break-word;
  min-width: 0;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card p {
  color: #223139;
  font-style: italic;
  font-size: 1.08rem;
}
.testimonial-card div {
  color: #A4BC58;
  font-size: 1.25rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', Arial Black, Arial, sans-serif;
  font-weight: 700;
}
.testimonial-card span {
  font-size: 1rem;
  color: #223139;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 28px rgba(32,72,90,0.12);
  transform: scale(1.026) rotate(-1.3deg);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* HOME HERO */
.hero {
  margin-bottom: 60px;
  padding: 62px 0 72px 0;
  background: #F4F6F8;
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 575px;
}
.hero h1 {
  color: #20485A;
  font-size: 2.5rem;
  background: linear-gradient(90deg, #20485A 65%, #A4BC58 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
          text-fill-color: transparent;
}
.hero p {
  font-size: 1.24rem;
  color: #223139;
}
.hero .btn-primary {
  margin-left: 0;
  margin-top: 12px;
}
@media (max-width: 600px) {
  .hero {
    padding: 38px 0 42px 0;
  }
  .hero .content-wrapper h1 {
    font-size: 1.6rem;
  }
}
/* FEATURE GRIDS */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.features .feature-grid > div {
  background: #fff;
  border-radius: 18px 10px 22px 18px / 18px 24px 10px 18px;
  padding: 29px 24px 29px 24px;
  min-width: 230px;
  flex: 1 1 230px;
  box-shadow: 0 2px 14px rgba(32,72,90,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.19s;
  border-left: 4px solid #A4BC58;
}
.features .feature-grid > div:hover {
  box-shadow: 0 6px 24px rgba(32,72,90,0.13);
  transform: translateY(-2px) scale(1.012) rotate(-1.2deg);
}
.features .feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.features .feature-grid h3 {
  color: #20485A;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.14rem;
}
.features .feature-grid p {
  color: #223139;
  font-size: 0.97rem;
}
@media (max-width: 900px) {
  .features .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
}
/* SERVICE LIST & ITEMS - SERVICES PAGE */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 40px;
  justify-content: flex-start;
}
.service-item {
  background: #fff;
  box-shadow: 0 4px 16px rgba(32,72,90,0.09);
  border-radius: 18px 28px 24px 16px / 28px 18px 20px 22px;
  padding: 32px 24px 26px 24px;
  flex: 1 1 235px;
  min-width: 215px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  border-top: 5px solid #A4BC58;
  transition: box-shadow 0.19s, transform 0.14s;
}
.service-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
}
.service-item h2 {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #20485A;
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
}
.service-price {
  display: inline-block;
  color: #A4BC58;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #F4F6F8;
  border-radius: 12px;
  padding: 3px 9px;
  font-size: 0.93rem;
  font-weight: 600;
  margin-left: 6px;
}
.service-item p {
  color: #223139;
  font-size: 0.97rem;
}
.service-item:hover, .service-item:focus {
  box-shadow: 0 10px 34px rgba(32,72,90,0.15);
  transform: scale(1.03) rotate(1.4deg);
}
@media (max-width: 1000px) {
  .service-list { flex-direction: column; gap: 18px; }
}
/* PRICING TABLE */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 2px 8px rgba(32,72,90,0.07);
  margin-bottom: 22px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.price-table th, .price-table td {
  padding: 16px 12px;
  text-align: left;
  background: transparent;
}
.price-table th {
  background: #A4BC58;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
}
.price-table tbody tr:nth-child(odd) td {
  background: #F4F6F8;
}
.price-table td {
  color: #223139;
  font-size: 1rem;
}
.price-notes {
  margin-bottom: 20px;
  background: #F4F6F8;
  padding: 14px 10px 12px 20px;
  border-left: 4px solid #A4BC58;
  border-radius: 8px;
}
.service-inclusions {
  list-style: none;
  padding-left: 0;
  margin-bottom: 18px;
}
.service-inclusions li {
  margin-bottom: 10px;
  color: #20485A;
  padding-left: 22px;
  position: relative;
  font-size: 1.02rem;
  font-weight: 500;
}
.service-inclusions li:before {
  content: '✔️';
  color: #A4BC58;
  position: absolute;
  left: 0;
}
/* FAQ */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}
.faq-item {
  background: #fff;
  border-left: 4px solid #A4BC58;
  box-shadow: 0 2px 14px rgba(32,72,90,0.08);
  border-radius: 13px 27px 8px 18px/18px 10px 22px 15px;
  padding: 18px 20px 12px 22px;
  flex: 1 1 230px;
  min-width: 185px;
}
.faq-item h3 {
  color: #20485A;
  font-size: 1.05rem;
  margin-bottom: 4px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.faq-item p {
  color: #223139;
  font-size: 0.99rem;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .faq-list { flex-direction: column; gap: 12px; }
}
/* CTA SECTIONS */
.cta {
  background: #A4BC58;
  color: #223139;
  border-radius: 26px 48px 40px 22px/32px 44px 38px 30px;
  box-shadow: 0 4px 20px rgba(164,188,88,0.10);
  padding: 40px 0;
  margin-bottom: 60px;
  position: relative;
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  max-width: 550px;
}
.cta h2 {
  color: #20485A;
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cta p {
  font-size: 1.11rem;
}
.cta .btn-primary {
  background: #20485A;
  color: #fff;
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: #fff;
  color: #20485A;
}
@media (max-width: 600px) {
  .cta {
    padding: 24px 0;
  }
}
/* ABOUT PAGE */
.about, .about-intro {
  background: #F4F6F8;
  border-radius: 32px 60px 36px 18px/34px 54px 44px 30px;
  margin-bottom: 60px;
}
.about h1, .about-intro h2, .about h2 {
  color: #20485A;
}
.about .text-section, .about-intro .text-section {
  margin-top: 18px;
  font-size: 1.08rem;
}
.about ul li:before, .about-intro ul li:before {
  content: '✔️';
  color: #A4BC58;
  margin-right: 8px;
  font-size: 1.15em;
}
/* CONTACT PAGE */
.contact-section {
  background: #F4F6F8;
  border-radius: 22px 44px 38px 12px/28px 32px 28px 23px;
}
.contact-details {
  margin: 22px 0 16px 0;
  padding: 14px 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(32,72,90,0.07);
}
.contact-details h2 {
  margin-bottom: 7px;
  color: #A4BC58;
}
.contact-details p {
  color: #223139;
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.contact-details a {
  color: #20485A;
  word-break: break-all;
}
.map-overview {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}
.map-overview img {
  border-radius: 7px;
  background: #A4BC58;
  padding: 9px;
}
.map-overview span {
  color: #20485A;
  font-size: 1.04rem;
}
/* LEGAL PAGES FORMATTING */
.legal {
  background: #F4F6F8;
  border-radius: 22px 44px 18px 22px / 20px 31px 18px 17px;
  margin-bottom: 60px;
}
.legal .text-section {
  margin-top: 18px;
  font-size: 1.09rem;
}
.legal ul li:before {
  content: '\2022';
  color: #A4BC58;
  margin-right: 8px;
  font-size: 1.1em;
}
.legal a {
  color: #20485A;
  text-decoration: underline;
}
/* FACTS SECTION */
.facts ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: 0;
  list-style: none;
}
.facts ul li {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 10px rgba(32,72,90,0.07);
  padding: 16px 22px;
  min-width: 160px;
  color: #223139;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  margin-bottom: 12px;
  font-weight: 500;
}
.facts ul li strong {
  display: block;
  color: #A4BC58;
  font-size: 1.25rem;
  margin-bottom: 4px;
}
@media (max-width: 850px) {
  .facts ul { flex-direction: column; gap: 12px; }
}
/* THANK YOU PAGE */
.thankyou {
  background: #F4F6F8;
  border-radius: 32px 60px 36px 18px/34px 54px 44px 30px;
  margin-bottom: 60px;
}
.thankyou .btn-primary {
  margin-top: 23px;
}
.thankyou ul li:before {
  content: '\2714 ';
  color: #A4BC58;
}
/* FOOTER */
footer {
  background: #20485A;
  color: #fff;
  padding: 28px 0 22px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #A4BC58;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-shadow: 0 2px 8px #A4BC58;
}
.footer-contact {
  text-align: center;
  font-size: 0.97rem;
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-logo img {
  height: 36px;
  width: auto;
  opacity: 0.92;
  margin-top: 8px;
}
@media (max-width: 630px) {
  footer .container { gap: 10px; }
  .footer-nav { font-size: 0.97rem; }
  .footer-logo img { height: 23px; }
}
/* RESPONSIVE LAYOUTS (MOBILE-FIRST) */
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section, section {
    margin-bottom: 34px;
    padding: 22px 8px;
  }
  .content-wrapper,
  .hero .content-wrapper,
  .cta .content-wrapper {
    padding: 0;
    max-width: 100%;
    gap: 12px;
  }
  .testimonial-card {
    gap: 12px;
    padding: 12px;
  }
  .feature-grid, .service-list, .faq-list, .facts ul {
    flex-direction: column;
    gap: 12px;
  }
  .pricing, .about, .about-intro, .thankyou, .legal, .cta, .contact-section {
    border-radius: 15px 23px 14px 18px / 18px 24px 17px 8px;
    margin-bottom: 28px;
    padding: 12px 4px 12px 4px;
  }
  h1 {
    font-size: 1.44rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.17rem;
    margin-bottom: 8px;
  }
}
/* ANIMATIONS */
.btn-primary, .card, .testimonial-card, .feature-grid > div, .service-item, .faq-item {
  transition: box-shadow 0.21s, background 0.19s, color 0.15s, transform 0.15s;
}
.cta, .hero {
  transition: box-shadow 0.18s, background 0.18s;
}
/* MICRO-INTERACTIONS */
.card:hover .btn-primary, .feature-grid > div:hover .btn-primary, .service-item:hover .btn-primary {
  background: #223139 !important;
  color: #fff !important;
}
.testimonial-card:active {
  transform: scale(0.99);
}
.feature-grid > div:active, .faq-item:active, .service-item:active {
  transform: scale(0.99);
}
/* FORMS (for future compatibility, not in use yet) */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 7px;
  border: 1px solid #A4BC58;
  padding: 10px 14px;
  margin-bottom: 13px;
  background: #fff;
  color: #20485A;
  transition: border 0.13s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 1.5px solid #20485A;
  box-shadow: 0 0 7px rgba(32, 72, 90, 0.15);
}
/* Cookie Consent Banner (mandatory UX requirement) */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #20485A;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 20px;
  z-index: 99998;
  box-shadow: 0 -2px 18px rgba(32,72,90,0.11);
  font-size: 1.01rem;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.29s, transform 0.33s cubic-bezier(0.61,0.06,0.06,0.93);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner .cookie-text {
  flex: 1 1 auto;
  margin-right: 30px;
  color: #fff;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  padding: 9px 18px;
  border-radius: 18px;
  background: #A4BC58;
  color: #20485A;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin: 0;
  transition: background 0.15s, color 0.12s;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #fff;
  color: #20485A;
}
.cookie-banner .cookie-btn.cookie-settings {
  background: #223139;
  color: #A4BC58;
  border: 1px solid #A4BC58;
}
.cookie-banner .cookie-btn.cookie-settings:hover,
.cookie-banner .cookie-btn.cookie-settings:focus {
  background: #A4BC58;
  color: #20485A;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 8px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
    margin-bottom: 9px;
  }
  .cookie-banner .cookie-btns {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
}
/* Cookie Modal Popup */
.cookie-modal-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,72,90,0.62);
  z-index: 99999;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.25s;
}
.cookie-modal-bg.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #223139;
  border-radius: 24px 20px 17px 28px / 29px 21px 14px 15px;
  min-width: 320px; max-width: 95vw;
  width: 430px;
  padding: 34px 30px 24px 30px;
  box-shadow: 0 8px 40px rgba(32,72,90,0.30);
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 100002;
  animation: cookie-modal-in 0.33s cubic-bezier(0.68,-0.06, 0.32, 1.11) forwards;
}
@keyframes cookie-modal-in {
  0% { opacity: 0; transform: scale(0.72) translateY(160px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  color: #20485A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 12px;
  font-size: 1.29rem;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #F4F6F8;
  font-size: 1.06rem;
}
.cookie-modal .cookie-category:last-child { border-bottom: none; }
.cookie-modal .category-label {
  color: #20485A;
}
.cookie-modal .cookie-toggle {
  width: 44px;
  height: 26px;
  position: relative;
  background: #F4F6F8;
  border-radius: 11px;
  border: 1.4px solid #A4BC58;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  width: 21px;
  height: 21px;
  background: #A4BC58;
  border-radius: 50%;
  position: absolute;
  top: 1.5px; left: 2.5px;
  transition: left 0.18s, background 0.18s;
  z-index: 1;
}
.cookie-modal .cookie-toggle input[type="checkbox"]:checked + .toggle-thumb {
  left: 21px;
  background: #20485A;
}
.cookie-modal .cookie-toggle[data-enabled="true"]:before {
  left: 21px;
  background: #20485A;
}
.cookie-modal .cookie-category[aria-disabled="true"] .cookie-toggle {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal .cookie-close {
  position: absolute;
  right: 18px;
  top: 16px;
  background: #A4BC58;
  color: #20485A;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.49rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  background: #20485A;
  color: #fff;
}
.cookie-modal .modal-actions {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.cookie-modal .cookie-btn {
  padding: 10px 26px;
  border-radius: 18px;
  background: #20485A;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.11s;
}
.cookie-modal .cookie-btn.accept {
  background: #A4BC58;
  color: #20485A;
}
.cookie-modal .cookie-btn.reject {
  background: #fff;
  color: #A4BC58;
  border: 1px solid #A4BC58;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: #223139;
  color: #A4BC58;
}
@media (max-width: 500px) {
  .cookie-modal { padding: 15px 7px 11px 9px; width: 98vw; min-width: 20vw; }
  .cookie-modal h2 { font-size: 1.06rem; }
}
/* Hide scroll when modal open */
body.cookie-modal-open { overflow: hidden; }
/* MISC ARTISTIC / CREATIVE BRUSH HINT */
.features .feature-grid > div,
.card, .testimonial-card, .cta, .about, .about-intro, .service-item, .facts ul li, .thankyou,
.contact-section, .legal {
  border-bottom: 4px solid #A4BC58;
  box-shadow: 0 2px 6px rgba(32,72,90,0.04);
  position: relative;
}
.features .feature-grid > div:after,
.card:after, .testimonial-card:after, .cta:after, .service-item:after, .facts ul li:after {
  content: '';
  display: block;
  position: absolute;
  left: 22px; bottom: -11px;
  width: 40px; height: 9px;
  background: #A4BC58;
  opacity: 0.16;
  border-radius: 8px;
  filter: blur(4px);
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 600px) {
  .features .feature-grid > div:after,
  .card:after, .testimonial-card:after, .cta:after, .service-item:after, .facts ul li:after {
    display: none;
  }
}
