/* =============================
   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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #FAFAFA;
  color: #223A5E;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #223A5E;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #FFCA3A;
  outline-offset: 2px;
}

/* Montserrat for headings; Open Sans for body */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #223A5E;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
h1 { font-size: 2.5rem; line-height: 1.13; }
h2 { font-size: 2rem;   line-height: 1.17; }
h3 { font-size: 1.5rem; line-height: 1.2; }
h4 { font-size: 1.125rem; }

p, ul, ol, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-bottom: 14px;
  color: #223A5E;
  font-size: 1rem;
}
strong { font-weight: 700; }

ul, ol {
  padding-left: 22px;
}
ul li, ol li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }
}

/* =============================
   FLEX CONTAINER PATTERNS
============================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Layouts */
.feature-grid,
.team-list,
.service-list,
.card-container,
.card-grid,
.features,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .feature-grid,
  .team-list,
  .service-list,
  .card-container,
  .card-grid,
  .features,
  .content-grid {
    gap: 16px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width:768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.card {
  margin-bottom: 20px;
  position: relative;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFFBEA;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(34,58,94,0.07);
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px 0 rgba(255,202,58,0.23);
}
.testimonial-details {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #E19A38;
  font-weight: 700;
}

@media (max-width: 768px) {
  .card,
  .testimonial-card {
    margin-bottom: 20px;
  }
}

/* =============================
   HEADER & NAVIGATION
============================= */
header {
  background: #223A5E;
  color: #FAFAFA;
  width: 100%;
  box-shadow: 0 2px 8px rgba(34,58,94,0.08);
  z-index: 100;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
.logo img {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #FAFAFA;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 5px;
  transition: background .18s, color .18s;
  position: relative;
}
.main-nav a:not(.btn-primary):hover,
.main-nav a:not(.btn-primary):focus {
  background: #FFCA3A;
  color: #223A5E;
}
.main-nav .btn-primary {
  margin-left: 10px;
}

/* Burger menu btn */
.mobile-menu-toggle {
  display: none;
  background: #FFCA3A;
  border: none;
  color: #223A5E;
  font-size: 2rem;
  border-radius: 7px;
  padding: 4px 12px;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 9px 0 rgba(34,58,94,0.11);
}
.mobile-menu-toggle:focus {
  outline: 2px dashed #FFCA3A;
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =============================
   MOBILE MENU DRAWER
============================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #223A5E;
  color: #fff;
  z-index: 2050;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform .45s cubic-bezier(.7,.07,.33,1.03);
  overflow-y: auto;
  padding-top: 34px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 26px 8px 0;
  background: transparent;
  border: none;
  color: #FFCA3A;
  font-size: 2.1rem;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:focus {
  outline: 2px dashed #FFCA3A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 0 28px;
}
.mobile-nav a {
  display: block;
  color: #FAFAFA;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.38rem;
  font-weight: 600;
  padding: 14px 0 14px 8px;
  border-radius: 6px;
  transition: background .18s, color .18s;
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FFCA3A;
  color: #223A5E;
}

/* =============================
   HERO SECTIONS
============================= */
.hero {
  background: linear-gradient(91deg, #FFCA3A 0%, #FAFAFA 80%);
  padding: 64px 0 44px 0;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #223A5E;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.hero p {
  font-size: 1.25rem;
  color: #534218;
  margin-bottom: 15px;
}
.hero .btn-primary {
  font-size: 1.1rem;
}
@media (max-width: 900px) {
  .hero {
    padding: 38px 0 28px 0;
  }
  .hero h1 { font-size: 2rem; }
}

/* =============================
   PRIMARY BUTTON
============================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFCA3A;
  color: #223A5E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  padding: 13px 34px;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 0 3px 12px 0 rgba(34,58,94,0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.23s, transform 0.13s;
  text-shadow: 0 1px 1px #fff6c1;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #FFE583;
  color: #223A5E;
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
  box-shadow: 0 8px 28px 0 rgba(255,202,58,0.39);
  text-shadow: none;
}
.btn-primary:active {
  background: #E19A38;
  color: #fff;
}

/* =============================
   FEATURES, SERVICES & CARDS
============================= */
.feature,
.service-item,
.team-member,
.blog-teaser {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(34,58,94,0.07);
  padding: 28px 22px 26px 22px;
  transition: box-shadow 0.16s, transform 0.16s;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature img,
.service-item img {
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  filter: drop-shadow(0 1px 4px rgba(255,202,58,0.15));
}
.feature-price,
.service-price {
  background: #FFCA3A;
  color: #223A5E;
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  padding: 7px 18px;
  border-radius: 8px;
  margin-top: 10px;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 8px 0 rgba(255,202,58,0.19);
}
.feature:hover,
.service-item:hover,
.team-member:hover,
.blog-teaser:hover {
  box-shadow: 0 10px 34px 0 rgba(255,202,58,0.15);
  transform: translateY(-5px) scale(1.03) rotate(-1.5deg);
  cursor: pointer;
}
.feature h3,
.service-title,
.team-member h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #223A5E;
  font-size: 1.22rem;
  margin-bottom: 5px;
  font-weight: 700;
}
.feature p,
.service-desc,
.team-member p {
  color: #454545;
  margin-bottom: 10px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* Benefits, Icons & Process Steps */
.benefits ul,
.method-icons ul,
.custom-benefits,
.custom-package {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style-type: none;
  margin-bottom: 10px;
}
.benefits li,
.method-icons li,
.custom-benefits li,
.custom-package li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFE583;
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #223A5E;
  font-weight: 600;
  font-size: 1rem;
}
.benefits img,
.method-icons img {
  width: 28px;
  height: 28px;
  display: inline-block;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style-type: decimal;
  font-size: 1.03rem;
  margin: 16px 0 25px 15px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.expected-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style-type: disc;
  margin: 10px 0 0 17px;
  color: #223A5E;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.success-metrics h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom:7px;
}
.success-metrics ul {
  margin-bottom: 0;
}

/* Blog Area */
.blog-list .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-teaser {
  flex: 1 1 260px;
  min-width: 220px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(255,202,58,0.13);
  padding: 24px 22px 24px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.blog-teaser h3 {
  color: #FFCA3A;
  font-size: 1.12rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.blog-teaser a {
  color: #223A5E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 9px;
  display: inline-block;
}
.blog-teaser a:hover {
  color: #FFCA3A;
  text-decoration: underline;
}
.blog-categories {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.category {
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #FFCA3A;
  color: #223A5E;
  border-radius: 7px;
  padding: 4px 12px;
  font-weight: 600;
  transition: background 0.16s;
}
.category:hover {
  background: #FFE583;
}

/* =============================
   SPECIAL SECTIONS
============================= */
.section, .about, .cta, .cta-newsletter, .return-home, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta-newsletter, .cta, .return-home {
  background: #FFFBEA;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 12px 0 rgba(255,202,58,0.09);
}
.cta h2, .cta-newsletter h2 {
  color: #FFCA3A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* Contact Section */
.contact-details {
  margin-bottom: 24px;
  font-size: 1rem;
  color: #223A5E;
}
.map-embed {
  width: 100%;
  max-width: 340px;
  margin-top: 12px;
}

@media (max-width: 800px) {
  .blog-list .content-wrapper, .feature-grid, .service-list {
    flex-direction: column;
  }
  .blog-teaser, .feature, .service-item {
    min-width: 0;
    flex: 1 1 100%;
  }
}

/* =============================
   TEAM SECTION
============================= */
.team-list {
  gap: 26px;
}
.team-member {
  min-width: 220px;
  flex: 1 1 270px;
  box-shadow: 0 3px 15px 0 rgba(255,202,58,0.13);
  border-radius: 16px;
  background: #fff;
  padding: 28px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.team-member h3 {
  color: #FFCA3A;
  font-size: 1.13rem;
  margin-bottom: 6px;
}

/* =============================
   FOOTER
============================= */
footer {
  background: #223A5E;
  color: #fff;
  padding: 40px 0 0 0;
  width: 100%;
  margin-top: 0;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 18px;
}
.footer-brand img {
  width: 52px;
  height: 52px;
}

.footer-links, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a, .footer-legal a {
  color: #FFCA3A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 5px;
  transition: background 0.12s, color 0.13s;
}
.footer-links a:hover, .footer-legal a:hover {
  background: #fff;
  color: #223A5E;
}
.footer-contact {
  color: #FFFBEA;
  font-size: 0.97rem;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 10px;
}
.footer-social a {
  display: flex;
  align-items: center;
  color: #FFCA3A;
  font-size: 1.6rem;
  padding: 3px;
  border-radius: 50%;
  transition: background 0.2s;
  background: transparent;
}
.footer-social a:hover {
  background: #FFE583;
}
.footer-bottom {
  font-size: 0.99rem;
  color: #fff;
  text-align: center;
  padding: 14px 0 8px 0;
  background: #223A5E;
  opacity: 0.83;
}

@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-contact {
    margin-bottom: 10px;
  }
}

/* =============================
   LEGAL PAGES
============================= */
.legal h1, .legal h2, .legal ul, .legal p {
  color: #223A5E;
}
.legal h1 {
  color: #FFCA3A;
  font-size: 2rem;
}
.legal h2 {
  font-size: 1.12rem;
  font-weight: 800;
  margin: 16px 0 11px .5em;
  color: #E19A38;
}
.legal a {
  color: #FFCA3A;
  text-decoration: underline;
}
.legal a:hover {
  color: #223A5E;
}

/* =============================
   ANIMATIONS & MICROINTERACTIONS
============================= */
@keyframes popin {
  0% {transform: scale(0.91) translateY(12px); opacity: 0;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}
.feature, .testimonial-card, .service-item, .team-member, .blog-teaser {
  animation: popin .74s cubic-bezier(.28,1.11,.4,1) backwards;
}
.feature:nth-child(2), .testimonial-card:nth-child(2), .service-item:nth-child(2), .team-member:nth-child(2), .blog-teaser:nth-child(2) {
  animation-delay: .08s;
}
.feature:nth-child(3), .testimonial-card:nth-child(3), .service-item:nth-child(3), .team-member:nth-child(3), .blog-teaser:nth-child(3) {
  animation-delay: .16s;
}

@keyframes slidein-banner {
  from { transform: translateY(140%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
@keyframes banner-out {
  from { transform: translateY(0); opacity:1; }
  to { transform: translateY(140%); opacity:0; }
}

/* =============================
   COOKIE CONSENT BANNER + MODAL
============================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #223A5E;
  color: #FFFBEA;
  z-index: 2500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 26px 20px 20px 20px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -6px 24px 2px rgba(34,58,94,0.16);
  animation: slidein-banner 0.52s cubic-bezier(.68, -.18, .22, 1.09);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-banner.hidden {
  display: none;
  animation: banner-out 0.33s linear;
}
.cookie-banner p {
  color: #FFFBEA;
  margin: 0 0 10px 0;
  text-align: center;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.cookie-btn {
  background: #FFCA3A;
  color: #223A5E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 9px 22px;
  cursor: pointer;
  transition: background 0.18s, color 0.16s;
}
.cookie-btn.reject {
  background: #E19A38;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #FFCA3A;
  border: 2px solid #FFCA3A;
}
.cookie-btn:focus {
  outline: 2px dashed #fff6c1;
  outline-offset: 2px;
}
.cookie-btn:hover,
.cookie-btn:active {
  filter: brightness(1.07);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 3000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(22,35,60,0.70);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal.hidden { display: none; }
.cookie-modal-dialog {
  background: #FFFBEA;
  color: #223A5E;
  border-radius: 18px;
  padding: 32px 18px 28px 18px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 8px 32px 0 rgba(34,58,94,0.23);
  animation: popin .42s;
}
.cookie-modal-dialog h2 {
  font-size: 1.2rem;
  color: #FFCA3A;
  margin-bottom: 14px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 24px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
}
.cookie-category input[type=checkbox] {
  accent-color: #FFCA3A;
  transform: scale(1.25);
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px; right: 24px;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: #FFCA3A;
  cursor: pointer;
}

@media (max-width: 520px) {
  .cookie-modal-dialog {
    min-width: 0;
    width: 95vw;
    padding: 22px 4vw 14px 4vw;
  }
}

/* =============================
   RESPONSIVE LAYOUT (MOBILE-FIRST)
============================= */
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .section, .about, .cta, .cta-newsletter, .return-home, .legal {
    padding: 28px 4vw;
  }
  .footer-bottom {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 28px 0 14px 0;
  }
  .hero h1 {
    font-size: 1.35rem;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 11px 10vw;
  }
  .content-wrapper,
  .section, .about, .cta, .cta-newsletter, .return-home, .legal {
    gap: 18px;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .feature, .service-item, .team-member, .blog-teaser {
    padding: 18px 8px 14px 10px;
  }
}

/* =============================
   PLAYFUL DYNAMIC EXTRAS
============================= */
/* Fun playful heading font effects */
h1, h2, h3 {
  position: relative;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 42px;
  height: 6px;
  background: #FFCA3A;
  border-radius: 4px 24px 24px 4px;
  margin-top: 10px;
  margin-bottom: -14px;
  opacity: 0.36;
  animation: playful-bar .97s cubic-bezier(.5, 1.2, .7, 1.05);
}
@keyframes playful-bar {
  0% { width: 0; opacity: 0; }
  80% { opacity: .2; width: 46px; }
  100% { opacity: .35; width: 42px; }
}

.btn-primary::after {
  content: '';
  display: inline-block;
  background: #E19A38;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  margin-left: 16px;
  vertical-align: middle;
  animation: playful-dot .85s infinite alternate;
}
@keyframes playful-dot {
  0% { transform: scale(1); }
  100% { transform: scale(1.28); }
}

/* Elevate accent with drop shadow on feature icons on hover */
.feature:hover img,
.service-item:hover img {
  filter: drop-shadow(0 4px 14px rgba(255,202,58,0.36));
}

/* Subtle highlight for current nav: not JS, but default for sample */
.main-nav a.active, .footer-links a.active {
  background: #FFCA3A;
  color: #223A5E;
}

/* =============================
   FOCUS & ACCESSIBILITY OUTLINES
============================= */
a:focus, button:focus {
  outline: 2px dashed #FFCA3A;
  outline-offset: 2px;
}

/* For dark bg (header/footer) links */
header a:focus, header .btn-primary:focus, .footer-links a:focus, .footer-legal a:focus {
  outline: 2px dashed #fff6c1;
  outline-offset: 2px;
}

/* =============================
   COLOR HELPERS
============================= */
.bg-primary { background: #223A5E; color: #FFFBEA; }
.bg-accent { background: #FAFAFA; }
.bg-yellow { background: #FFCA3A; color: #223A5E; }

.text-accent { color: #FFCA3A; }
.text-primary { color: #223A5E; }

/* =============================
   Z-INDEX (prevent overlay issues)
============================= */
header { z-index: 100; }
.mobile-menu { z-index: 2050; }
.cookie-banner { z-index: 2500; }
.cookie-modal { z-index: 3000; }

/* =============================
   PRINT (hide nav, footer, etc.)
============================= */
@media print {
  header, footer, .cookie-banner, .cookie-modal { display: none !important; }
}
