/* CSS RESET & NORMALIZATION */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F9FB;
  color: #224A71;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  text-decoration: none;
  color: inherit;
}
img, svg {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}
/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #F7F9FB;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #224A71;
  margin-bottom: 16px;
}
h1 { font-size: 2.3rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 1.7rem; margin-bottom: 16px; }
h3 { font-size: 1.22rem; }
h4, h5, h6 { font-size: 1rem; }
p, ul, ol, blockquote {
  color: #224A71;
  margin-bottom: 12px;
  font-size: 1rem;
}
strong, b { font-weight: 700; }
em, i { font-style: italic; }
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 24px rgba(34, 74, 113, 0.08);
}
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  padding: 0;
}
.text-section ul,
.text-section ol {
  margin-left: 20px;
  margin-bottom: 16px;
  color: #224A71;
}
.text-section ul li:before {
  content: '\2022';
  color: #A46C00;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size: 1.1em;
}
.text-section ul li {
  margin-bottom: 8px;
}
/* HEADER NAVIGATION */
header {
  background: #224A71;
  color: #fff;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  box-shadow: 0 2px 18px rgba(34,74,113,0.10);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}
.logo img {
  height: 48px;
  transition: transform .18s cubic-bezier(.5,1.8,.6,1);
}
.logo:hover img {
  transform: scale(1.07) rotate(-5deg);
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  padding: 8px 0;
  transition: color .18s;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 3px;
  background: #C29437;
  border-radius: 3px;
  margin: 2px 0 0 0;
  transition: width .26s cubic-bezier(.72,1.49,.56,.88);
}
.main-nav a:hover,
.main-nav a:focus {
  color: #F7B32B;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 100%;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 1.07rem;
  color: #fff;
  background: #C29437;
  border-radius: 32px;
  box-shadow: 0 3px 18px rgba(240,189,60,.15);
  padding: 12px 38px;
  margin-left: 20px;
  transition: background .22s, box-shadow .24s, transform .22s;
  border: none;
  cursor: pointer;
  will-change: transform,box-shadow;
  outline: none;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
}
.cta-button:hover, .cta-button:focus {
  background: #A46C00;
  color: #fff;
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
  box-shadow: 0 7px 32px rgba(196,148,55,.20);
}
/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #C29437;
  background: #fff;
  border: none;
  border-radius: 10px;
  padding: 4px 13px;
  margin-left: 16px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 8px rgba(34,74,113,0.13);
  transition: background .18s, box-shadow .25s, color .17s;
  z-index: 105;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #C29437;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #224A71;
  color: #fff;
  z-index: 1000;
  transform: translateX(110%);
  transition: transform .38s cubic-bezier(.62,1.6,.64,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 14px 22px 8px 0;
  background: #fff;
  color: #224A71;
  border: none;
  border-radius: 30px;
  padding: 8px 24px;
  font-size: 2rem;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(240,189,60,0.18);
  transition: background .19s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #C29437;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  padding: 0 38px;
  margin-top: 28px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.27rem;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 6px;
  transition: background .16s, color .18s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #C29437;
  color: #fff;
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}
/* HERO PLAYFUL ANIMATION */
.hero-section {
  background: linear-gradient(100deg, #F7F9FB 80%, #FEE09E 100%);
  padding-top: 60px;
  padding-bottom: 66px;
}
.hero-section h1 {
  font-size: 2.3rem;
  color: #224A71;
  font-weight: 900;
  margin-bottom: 12px;
  text-shadow: 0 5px 16px #F7F9FB;
  letter-spacing: -2px;
  animation: hero-jump 1.1s cubic-bezier(.7,1.7,.5,1.1);
}
@keyframes hero-jump {
  0% { opacity: 0; transform: translateY(-80px) scale(0.85) rotate(-2deg); }
  50% { opacity: 1; transform: translateY(8px) scale(1.04) rotate(3deg); }
  100%{ opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}
.hero-section .cta-button {
  margin-top: 30px; margin-left: 0; font-size: 1.1rem;
  box-shadow: 0 7px 26px rgba(196,148,55,0.18);
  animation: cta-pop 1s .5s backwards;
}
@keyframes cta-pop {
  0% { opacity: 0; transform: scale(0.7); }
  100%{ opacity: 1; transform: scale(1); }
}
.hero-section p {
  font-size: 1.18rem;
  max-width: 520px;
  margin-bottom: 14px;
  color: #224A71;
}
/* FEATURES */
.features-section, .features {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 24px rgba(34, 74, 113, 0.08);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F7F9FB;
  border-radius: 18px;
  padding: 24px 20px 22px 20px;
  box-shadow: 0 3px 16px rgba(196,148,55,.09);
  min-width: 230px;
  max-width: 320px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  transition: transform .22s, box-shadow .26s;
  position: relative;
  z-index: 1;
  border: 2.5px solid #FEE09E;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: #FDE6B8;
  box-shadow: 0 2px 8px rgba(196,148,55,.16);
  padding: 5px;
  border: 2.5px solid #C29437;
}
.feature-item h3 {
  color: #C29437;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 900;
}
.feature-item p {
  font-size: 1rem;
  color: #224A71;
}
.feature-item:hover, .feature-item:focus {
  transform: scale(1.04) rotate(-1.5deg);
  box-shadow: 0 12px 38px rgba(196,148,55,0.14);
  z-index: 2;
  border-color: #C29437;
}
/* SERVICE LIST */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 18px 0;
}
.service-item {
  background: #fffbea;
  border: 2px solid #FDE6B8;
  border-radius: 21px;
  box-shadow: 0 3px 32px rgba(196,148,55,0.09);
  flex: 1 1 220px;
  min-width: 240px;
  max-width: 350px;
  margin-bottom: 20px;
  padding: 28px 20px 18px 26px;
  position: relative;
  transition: box-shadow .28s, transform .17s;
  overflow: hidden;
}
.service-item h3, .service-item h2 {
  color: #224A71;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 5px;
  font-weight: 700;
}
.service-item .service-price {
  color: #A46C00;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.10rem;
  background: #FDE6B8;
  display: inline-block;
  border-radius: 12px;
  padding: 3px 14px;
  font-weight: 900;
  margin-top: 12px;
  box-shadow: 0 2px 8px rgba(196,148,55,.11);
}
.service-item:hover, .service-item:focus {
  box-shadow: 0 8px 32px rgba(196,148,55,0.23);
  transform: translateY(-7px) scale(1.04) rotate(-2deg);
  border-color: #C29437;
}
/* TESTIMONIALS */
.testimonials-section {
  background: #FDE6B8;
  border-radius: 22px;
  box-shadow: 0 6px 28px rgba(196,148,55,0.11);
  padding-bottom: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 32px 20px 26px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(34,74,113,.11);
  border-left: 8px solid #C29437;
  transition: transform .18s, box-shadow .23s;
  color: #224A71;
  max-width: 540px;
  min-width: 260px;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #224A71;
  margin: 0 0 8px 0;
  padding-right: 22px;
  font-size: 1.08rem;
}
.testimonial-card p {
  margin: 0;
  font-size: 1rem;
  color: #224A71;
}
.testimonial-card:hover, .testimonial-card:focus {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 42px rgba(196,148,55,0.13);
}
/* CARDS LAYOUT */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffbea;
  border-radius: 18px;
  box-shadow: 0 3px 18px rgba(196,148,55,.10);
  padding: 24px;
}
/* GENERAL FLEXBOX PATTERNS */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* BLOG STYLING */
.blog-list-section,.blog-list {
  margin-bottom: 32px;
}
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.blog-preview {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(196,148,55,.10);
  padding: 20px 18px 20px 24px;
  min-width: 220px;
  max-width: 400px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  border-left: 5px solid #F7B32B;
}
.blog-preview:hover, .blog-preview:focus {
  box-shadow: 0 5px 24px rgba(34,74,113,0.09);
  transform: scale(1.035) rotate(-2deg);
  border-left: 5px solid #A46C00;
}
.badge {
  display: inline-block;
  background: #F7B32B;
  color: #224A71;
  border-radius: 7px;
  padding: 2px 10px;
  font-size: 0.95em;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: bold;
  margin-top: 7px;
}
.blog-categories, .blog-tags {
  margin-top: 10px;
  font-size: 1em;
}
.blog-categories span,
.blog-tags span {
  color: #A46C00;
  font-weight: 700;
}
/* FAQ */
.faq-section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 7px 34px rgba(34,74,113,0.09);
  padding-bottom: 14px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}
.faq-item {
  background: #fffbea;
  border: 1.5px solid #FEE09E;
  border-radius: 14px;
  padding: 20px 20px 16px 26px;
  margin-bottom: 6px;
  transition: box-shadow .19s, transform .15s;
}
.faq-item:hover,
.faq-item:focus {
  box-shadow: 0 6px 28px rgba(34,74,113,0.10);
  transform: scale(1.01) rotate(-1deg);
  border-color: #A46C00;
}
.faq-item h2 {
  font-size: 1.02rem;
  margin-bottom: 7px;
}
.faq-item p {
  font-size: 0.98rem;
}
.faq-categories {
  margin-top: 10px;
}
.faq-categories span { color: #A46C00; font-weight:bold;}
/* CONTACT & FOOTER */
.contact-section {
  background: #FDE6B8;
  border-radius: 20px;
  box-shadow: 0 3px 18px rgba(196,148,55,0.14);
  margin-bottom: 60px;
  padding: 42px 20px 40px 20px;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 18px;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  font-size: 1em;
  color: #224A71;
  gap: 8px;
}
.contact-info-list img {
  width: 28px;
  height: 28px;
  margin-right: 7px;
  background: #fff;
  padding: 4px;
  border-radius: 9px;
  border: 1.5px solid #C29437;
}
.contact-info-list a {
  color: #A46C00;
  text-decoration: underline;
  font-weight: bold;
  transition: color .18s, text-decoration .20s;
}
.contact-info-list a:hover,
.contact-info-list a:focus {
  color: #224A71;
}
footer {
  background: #224A71;
  color: #fff;
  border-top-right-radius: 22px;
  border-top-left-radius: 22px;
  box-shadow: 0 -2px 16px rgba(34,74,113,0.09);
  padding-top: 18px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1em;
}
.footer-nav a {
  color: #fff;
  padding: 8px 0;
  font-weight: bold;
  opacity: .85;
  transition: color .18s,opacity .19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F7B32B;
  opacity:1;
}
.footer-company {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding-bottom: 9px;
}
.footer-company img {
  width: 38px;
  height: 38px;
}
.footer-company span {
  font-size: 0.98em;
  opacity: .8;
}
/* CTA section */
.cta-section {
  background: #FFF6DD;
  border-radius: 24px;
  box-shadow: 0 5px 18px rgba(240,189,60,0.07);
  padding: 45px 20px;
  margin-bottom: 49px;
}
.cta-section .cta-button {
  margin-top: 20px;
}
.confirmation-section {
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 6px 24px rgba(196,148,55,0.13);
  margin-bottom: 60px;
  padding: 44px 30px 35px 30px;
}
/* LEGAL section */
.legal-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px rgba(34,74,113,0.09);
  margin-bottom: 54px;
  padding: 38px 24px 30px 24px;
}
.legal-section ul li {
  margin-bottom: 9px;
}
/* Utility spacing */
.section, .blog-list-section, .cta-section, .legal-section,
.testimonials-section, .features-section, .card-container,
.confirmation-section {
  margin-bottom: 60px;
}
.card,
.feature-item,
.service-item,
.testimonial-card,
.blog-preview,
.faq-item {
  margin-bottom: 20px;
}
/* FORM-LIKE PLACEHOLDER STYLES */
.contact-form-section ul li {
  background: #FDE6B8;
  display: inline-block;
  margin-bottom: 6px;
  padding: 6px 14px;
  border-radius: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #224A71;
  font-weight: 500;
  font-size: 1.00rem;
}
.contact-form-section p {
  margin-top: 12px;
}
/* ANIMATION AND MICRO-INTERACTIONS */
.cta-button, .feature-item, .service-item, .testimonial-card, .blog-preview, .faq-item {
  transition: box-shadow .22s, transform .18s;
}
.cta-button:active {
  transform: scale(0.97) translateY(2px);
}
.service-item:active,
.feature-item:active, .testimonial-card:active, .blog-preview:active {
  transform: scale(0.98);
}
/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1060px) {
  .container { max-width: 98vw; }
  .feature-grid, .service-list, .blog-list {
    gap: 16px;
  }
  .feature-item, .service-item, .blog-preview {
    min-width: 160px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.14rem; }
  .section, .legal-section, .cta-section,
   .confirmation-section, .testimonials-section, .contact-section {
    padding: 29px 5vw;
    border-radius: 17px;
  }
  .feature-grid, .service-list, .blog-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .service-item, .feature-item, .blog-preview { max-width:100%; min-width:0; }
  .footer-nav { flex-direction: column; gap: 6px; }
  .main-nav { display:none; }
  .mobile-menu-toggle { display: inline-block; }
  .container { padding: 0 4vw; }
  .text-image-section {
    flex-direction: column;
    align-items:flex-start;
    gap: 16px;
  }
}
@media (max-width: 430px) {
  .container { padding: 0 3vw; }
  .hero-section { padding-top: 32px; }
  .card, .feature-item, .service-item, .testimonial-card, .faq-item {
    padding: 16px 8vw 15px 7vw;
    border-radius: 12px;
  }
}
/* COOKIE BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #224A71;
  color: #fff;
  width: 100vw;
  z-index: 10001;
  padding: 24px 22px;
  box-shadow: 0 -4px 22px rgba(34,74,113,0.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1em;
  animation: cookie-slide-up .7s cubic-bezier(.6,1.3,.52,.94);
}
@keyframes cookie-slide-up {
  from { opacity: 0; transform: translateY(120%); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner button {
  margin-left: 10px;
  border: none;
  background: #C29437;
  color: #fff;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1em;
  font-weight: bold;
  border-radius: 19px;
  padding: 7px 22px;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(34,74,113,0.13);
  transition: background .18s, color .17s, transform .17s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #A46C00;
  color: #fff;
  transform: scale(1.06);
}
.cookie-banner .cookie-settings {
  background: #F7F9FB;
  color: #224A71;
  border: none;
  font-weight:bold;
  margin-left: 8px;
  box-shadow: 0 1px 4px rgba(196,148,55,.12);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #FDE6B8;
  color: #A46C00;
}
/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  z-index: 12000;
  background: rgba(34,74,113,0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in .33s cubic-bezier(.6,1.2,.5,.97);
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  max-width: 420px;
  width: 92vw;
  padding: 35px 27px 35px 32px;
  box-shadow: 0 6px 38px rgba(196,148,55,0.17);
  animation: modal-pop-in .38s cubic-bezier(.61,2, .54, 1.2);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  position: relative;
}
@keyframes modal-pop-in {
  from { opacity: 0; transform: scale(0.7) translateY(200px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  color: #224A71;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: bold;
  margin-bottom: 6px;
}
.cookie-modal .cookie-categories {
  border-top: 1.5px solid #FDE6B8;
  margin-top: 11px;
  padding-top: 13px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-cat {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  font-size: 1em;
}
.cookie-cat label {
  font-weight: bold;
  color: #224A71;
  font-family: 'Montserrat',Arial,sans-serif;
}
.cookie-cat input[type="checkbox"] {
  accent-color: #C29437;
  width: 20px;
  height: 20px;
  border-radius: 6px;
}
.cookie-cat .mandatory {
  color: #A46C00;
  font-size: .90em;
  font-weight: bold;
  margin-left: 7px;
}
.cookie-modal-bottom {
  margin-top: 14px;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1em;
  font-weight: bold;
  background: #C29437;
  color: #fff;
  border: none;
  border-radius: 17px;
  padding: 8px 19px;
  transition: background .18s, color .18s, transform .18s;
  box-shadow: 0 1px 4px rgba(196,148,55,.13);
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #A46C00;
  color: #fff;
  transform: scale(1.05);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 5px;
  right: 8px;
  font-size: 2rem;
  color: #C29437;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #A46C00;
}
/* PLAYFUL DECORATIVE SHAPES (optional) */
.section:before, .section:after, .hero-section:before {
  content: '';
  display: none;
}

/* PRINT STYLES (basic) */
@media print {
  header, nav, footer, .cookie-banner, .cookie-modal, .mobile-menu { display:none !important; }
  body, .container { background: #fff !important; color: #111 !important; }
}
