/* Expeditionis Style – "playful_dynamic" Modern UI – CSS FLEX ONLY */
/* --- CSS RESET & NORMALIZE --- */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: #F7F6F3;
}
body {
  font-size: 16px;
  color: #254C7B;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  background: #F7F6F3;
}
img, picture, svg { max-width: 100%; display: block; }
ul, ol {
  margin: 0 0 20px 0;
  padding: 0 0 0 20px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: #254C7B;
  letter-spacing: 0.02em;
  margin-top: 0;
  margin-bottom: 16px;
}
h1 { font-size: 2.6rem; margin-bottom: 18px; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
p {
  margin: 0 0 18px 0;
}
strong { font-weight: 700; color: #254C7B; }

a {
  color: #254C7B;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.57,.44,.43,.98);
}
a:hover, a:focus {
  color: #5B9C65;
}

/* --- LAYOUT BASICS --- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #ffffff;
  box-shadow: 0 4px 16px 0 rgba(37,76,123,0.05), 0 1.5px 0 #5B9C65;
  position: sticky;
  top: 0;
  z-index: 40;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  padding: 14px 0;
}
nav > a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 22px;
  transition: background 0.18s, color 0.15s;
}
nav > a:hover:not(.cta-primary), nav > a:focus:not(.cta-primary) {
  background: #5B9C6522;
  color: #5B9C65;
}
nav > a img {
  height: 36px;
  width: auto;
  vertical-align: middle;
  margin-right: 6px;
}
.cta-primary {
  background: #254C7B;
  color: #fff !important;
  border-radius: 30px;
  padding: 10px 28px;
  font-weight: bold;
  margin-left: 10px;
  box-shadow: 0 2px 8px 0 rgba(37,76,123,0.10);
  transition: background 0.19s, color 0.15s, transform 0.11s;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.cta-primary:hover, .cta-primary:focus {
  background: #5B9C65;
  color: #fff;
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
}
.cta-secondary {
  background: #fff;
  color: #5B9C65 !important;
  border: 2px solid #5B9C65;
  border-radius: 30px;
  padding: 10px 28px;
  font-weight: bold;
  box-shadow: 0 2px 8px 0 rgba(37,76,123,0.07);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 16px;
  transition: background 0.22s, color 0.15s, border 0.2s, transform 0.1s;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #5B9C65;
  color: #fff !important;
  border: 2px solid #254C7B;
  transform: translateY(-2px) scale(1.04) rotate(1deg);
}

/* --- BURGER MENU MOBILE --- */
.mobile-menu-toggle {
  display: none;
  background: #254C7B;
  color: #fff;
  font-size: 1.65rem;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(37,76,123,0.08);
  margin-left: auto;
  margin-right: 8px;
  transition: background 0.19s, color 0.13s;
  z-index: 1021;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #5B9C65;
  color: #fff;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #F7F6F3;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1050;
  transform: translateX(-105%);
  transition: transform 0.34s cubic-bezier(.61,-0.07,.18,1.15);
  box-shadow: 4px 0 36px 0 rgba(37,76,123,0.09);
  padding: 28px 24px 24px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #fff;
  border: none;
  color: #254C7B;
  font-size: 2.2rem;
  border-radius: 40px;
  margin-bottom: 10px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(37,76,123,0.09);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.19s, color 0.20s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #5B9C65;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  padding: 14px 0;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #254C7B;
  font-weight: 600;
  border-radius: 24px;
  background: none;
  transition: background 0.13s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #5B9C65;
  color: #fff;
}

@media (max-width: 900px) {
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO & CTA SECTIONS --- */
.hero {
  background: #fff579;
  background: #FFDF7F;
  background: #F7F6F3;
  background: linear-gradient(100deg, #FFED98 0%, #F7F6F3 32%, #5B9C6522 100%);
  box-shadow: 0 2px 24px 0 rgba(91,156,101,0.06);
  border-bottom: 3.5px dotted #254C7B22;
  margin-bottom: 60px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
  text-align: center;
  padding-top:28px;
}
.hero h1 {
  font-size: 2.4rem;
  color: #254C7B;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
  text-shadow: 1px 2px 0 #fff7cc55;
  letter-spacing: 0.03em;
}
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #5B9C65;
  margin-bottom: 14px;
  font-style: italic;
  letter-spacing: 0.04em;
}
.cta {
  background: #fff8f0;
  border-radius: 32px;
  box-shadow: 0 2px 17px #E3D7C41c;
  margin-bottom: 60px;
  text-align: center;
}
.cta h2 {
  color: #254C7B;
  margin-top: 0;
  letter-spacing: 0.05em;
  font-size: 2rem;
}
.cta p {
  color: #5B9C65;
  font-size: 1.08rem;
}

/* --- FEATURE, SERVICE, CARD & LIST STYLES --- */
.feature-grid, .service-list, .guide-list, .service-grid, .category-grid, .rental-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
  justify-content: flex-start;
}
.feature-grid li, .service-list li, .guide-list li, .service-grid li, .category-grid li, .rental-item-list li {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px 0 rgba(37,76,123,0.10), 0 1.5px 0 #5B9C6522;
  padding: 26px 20px;
  min-width: 230px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  border-left: 6px solid #5B9C65;
  transition: box-shadow 0.22s, transform 0.12s, border-left 0.16s;
  font-size: 1rem;
}
.feature-grid li:hover, .service-list li:hover, .guide-list li:hover, .category-grid li:hover, .rental-item-list li:hover {
  box-shadow: 0 8px 32px 0 rgba(37,76,123,0.15), 0 2.5px 0 #5B9C65;
  transform: translateY(-5px) scale(1.04) rotate(-1deg);
  border-left: 10px solid #254C7B;
}
.feature-grid li img, .service-list li img, .service-grid li img, .category-grid li img, .rental-item-list li img {
  height: 48px;
  width: 48px;
  margin-bottom: 12px;
}
.feature-grid li h3, .service-list li h3, .service-grid li h3, .category-grid li h3, .rental-item-list li h3 {
  margin: 0 0 8px 0;
  color: #254C7B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
}
.price {
  display: inline-block;
  margin-top: 10px;
  background: #254C7B;
  color: #fff;
  border-radius: 18px;
  padding: 6px 16px;
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 0;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 14px 0 rgba(37,76,123,0.08), 0 1.5px 0 #5B9C6522;
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonials .container {
  display: flex;
  flex-direction: column;
}
.testimonials h2 {
  margin-bottom: 32px;
  color: #254C7B;
  font-size:2rem;
}
.testimonial-card {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fffeda;
  border-radius: 21px;
  box-shadow: 0 2px 10px 0 rgba(37,76,123,0.11);
  padding: 20px 28px;
  margin-bottom: 20px;
  max-width: 520px;
  color: #254C7B;
  font-size: 1.07rem;
  font-family: 'Open Sans', Arial, sans-serif;
  border-left: 5px solid #5B9C65;
  transition: box-shadow 0.19s, border-left 0.14s, transform 0.1s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(37,76,123,0.17);
  border-left: 8px solid #254C7B;
  transform: translateY(-5px) scale(1.03) rotate(-1deg);
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #5B9C65;
  font-size: 0.99rem;
  margin-top: 0px;
}

/* -- VALUE/LIST SECTIONS -- */
.brand-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.08rem;
  color: #254C7B;
  background:#fff;
  border-radius: 18px;
  padding: 18px 24px 12px 24px;
  box-shadow: 0 2px 6px 0 rgba(91,156,101,0.07);
  list-style: disc inside;
  margin-bottom: 20px;
}
.brand-values li {
  margin-left: 0;
  padding-left: 2px;
}

/* -- CONTACT INFO & MAP -- */
.contact-methods ul, .contact-info ul {
  margin: 0; padding: 0; list-style: none;
}
.contact-methods ul li, .contact-info p {
  color: #5B9C65;
  font-size: 1.07rem;
  margin-bottom: 9px;
}
.map {
  margin-top: 16px;
  font-style: italic;
  color: #254C7B;
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
}

/* -- FOOTER -- */
footer {
  padding-top: 36px;
  background: #254C7B;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 0 12px 0;
  max-width: 1080px;
  margin: 0 auto;
  border-bottom: 1.5px dotted #fff9;
}
.footer-main > a img {
  height: 46px;
  width: auto;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 2px;
}
.footer-links a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  opacity: 0.96;
  transition: color 0.19s, opacity 0.19s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #FFED98;
  opacity: 1;
}
.footer-contact {
  font-size: 0.97rem;
  opacity: 0.93;
  letter-spacing: 0.01em;
  min-width: 180px;
}
.footer-contact strong {
  color: #FFED98;
}
.footer-bottom {
  text-align: center;
  font-size: 0.96rem;
  color: #fff;
  padding: 16px 0 8px 0;
  opacity: 0.75;
}

/* -- MISC -- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.next-steps ul {
  margin: 0; padding: 0 0 0 20px;
  list-style: disc inside;
  color: #5B9C65;
  font-size:1rem;
}
.guide-note {
  color: #254C7B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  background: #fffede;
  padding: 10px 18px;
  border-radius: 12px;
}

/* --- FLEXBOX UTILITY AND CONTENT PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 22px 0 rgba(37,76,123,0.10);
  padding: 24px;
  min-width: 220px;
  transition: box-shadow 0.18s, transform 0.1s;
}
.card:hover {
  box-shadow: 0 6px 36px 0 rgba(37,76,123,0.18);
  transform: translateY(-3px) scale(1.02);
}
.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;
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.cta-primary,
.cta-secondary,
.card,
.feature-grid li,
.service-list li,
.category-grid li,
.rental-item-list li,
.testimonial-card {
  transition: 
    box-shadow 0.19s cubic-bezier(.61,-0.07,.18,1.15),
    transform 0.14s cubic-bezier(.61,-0.07,.18,1.15),
    background 0.21s cubic-bezier(.61,-0.07,.18,1.15),
    border-left 0.18s cubic-bezier(.61,-0.07,.18,1.15);
}
a, .cta-primary, .cta-secondary, button {
  transition: color 0.15s, background 0.17s, border 0.2s, transform 0.14s;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  width: 100%;
  background: #FFE460;
  color: #254C7B;
  box-shadow: 0 -3px 22px 0 #254C7B18;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 12px 18px 12px;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-top: 2.5px solid #5B9C65;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.36s cubic-bezier(.61,-0.07,.18,1.15), opacity 0.22s;
}
.cookie-banner.hide {
  pointer-events: none;
  opacity: 0;
  transform: translateY(120%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: bold;
  border: none;
  border-radius: 22px;
  padding: 8px 22px;
  cursor: pointer;
  margin-right: 4px;
  box-shadow: 0 2px 6px #254C7B22;
  transition: background 0.15s, color 0.13s, transform 0.12s;
}
.cookie-accept {
  background: #5B9C65;
  color: #fff;
}
.cookie-accept:hover,.cookie-accept:focus {
  background: #254C7B;
}
.cookie-reject {
  background: #fff;
  color: #254C7B;
  border: 2px solid #254C7B;
}
.cookie-reject:hover,.cookie-reject:focus {
  background: #254C7B;
  color: #fff;
}
.cookie-settings {
  background: #ffe460;
  color: #254C7B;
  border: 2px solid #5B9C65;
}
.cookie-settings:hover,.cookie-settings:focus {
  background: #5B9C65;
  color: #fff;
}

/* Cookie modal overlay */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(37,76,123,0.45);
  align-items: center;
  justify-content: center;
  animation: fadein .3s;
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  color: #254C7B;
  border-radius: 18px;
  padding: 28px 24px 24px 24px;
  box-shadow: 0 6px 44px 0 #254C7B22;
  min-width: 290px;
  max-width: 96vw;
  font-family: 'Open Sans', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal-content h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 18px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
}
.cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: #5B9C65;
  margin-right: 6px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-category.essential label {
  color: #254C7B;
}
.cookie-category .note {
  font-size: 0.95rem;
  color: #5B9C65;
  padding-left: 4px;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  border-radius: 18px;
  padding: 7px 20px;
  border: none;
  background: #5B9C65;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal-actions .modal-secondary {
  background: #fff;
  color: #254C7B;
  border: 2px solid #5B9C65;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #254C7B;
  color: #fff;
}
.cookie-modal-actions .modal-secondary:hover, .cookie-modal-actions .modal-secondary:focus {
  background: #5B9C65;
  color: #fff;
}
@keyframes fadein {
  0% { opacity: 0; }
  50% { opacity: 0.2; }
  100% { opacity: 1; }
}

/* --- RESPONSIVE (MOBILE-FIRST) --- */
@media (max-width: 1200px) {
  .container { max-width: 94vw; }
  .footer-main { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .service-grid, .category-grid, .rental-item-list {
    gap: 18px;
  }
  .feature-grid li, .service-list li, .service-grid li, .category-grid li, .rental-item-list li {
    flex: 1 1 220px;
    min-width: 0;
    margin-right: 0;
  }
  .footer-main { flex-direction: column; gap: 14px; }
  .footer-links { flex-direction: row; gap: 16px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.43rem; }
  .hero .container { padding-top:20px; }
  section, .section {
    padding: 26px 0;
    margin-bottom: 44px;
  }
  .content-grid { gap: 10px; }
  .brand-values, .map { padding: 10px 11px; }
  .card-container { gap: 14px; }
  .footer-main { padding:16px 0 9px 0; }
}
@media (max-width: 700px) {
  .hero{
    background: linear-gradient(113deg,#FFED98 0%,#F7F6F3 70%,#5B9C6522 100%);
  }
  nav { flex-direction: column !important; gap: 8px !important; }
  .container {padding-left:8px;padding-right:8px;}
  .feature-grid,.service-list,.service-grid,.category-grid,.rental-item-list{
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li, .service-list li, .service-grid li, .category-grid li, .rental-item-list li {
    min-width: unset;
    width: 100%;
    max-width: unset;
    padding: 21px 14px;
    border-radius: 14px;
  }
  .footer-links { flex-direction: column !important; gap: 7px !important; }
  .footer-contact { min-width: unset; }
}
@media (max-width: 600px) {
  .testimonial-card { padding: 12px 10px; gap: 8px; font-size: 0.99rem; }
  .cta,
  .testimonials { padding: 18px 0; border-radius: 14px; }
  .cookie-modal-content { min-width: 80vw; padding: 19px 7px; }
}
@media (max-width: 485px) {
  h1 { font-size:1.25rem;}
  .footer-main > a img { height: 38px; }
}
/* Flex direction for text-image-section and wrappers on mobile */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 17px; align-items: flex-start; }
  .content-wrapper { gap: 16px; }
}

/* --- FUN & PLAYFUL TOUCHES --- */
h1, h2 { text-shadow: 0 2px 7px #FFED9822, 0 1px 0 #fff2; }
.feature-grid li:before, .service-list li:before, .category-grid li:before, .rental-item-list li:before {
  content: '';
  display: block;
  position: absolute;
  top: -13px; right: 15px;
  width: 22px; height: 22px;
  background: #FFED98;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.55;
}
.feature-grid li:hover:before, .service-list li:hover:before, .category-grid li:hover:before, .rental-item-list li:hover:before {
  background: #5B9C65;
  opacity:0.36;
}
.card:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -9px; left: 18px;
  width: 22px; height: 22px;
  background: #5B9C65;
  border-radius: 50%;
  opacity: 0.09;
  z-index: 0;
}

/* --- Form Elements (if present later) --- */
input[type="text"], input[type="email"], textarea, select {
  font-size: 1rem;
  border: 2px solid #5B9C65;
  border-radius: 10px;
  padding: 7px 12px;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 14px;
  background: #fff;
  color: #254C7B;
  transition: border 0.2s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #254C7B;
}
button {
  font-family: 'Montserrat', Arial, sans-serif;
}
::-webkit-input-placeholder { color: #aaa; opacity: 1; }
::-moz-placeholder { color: #aaa; opacity: 1; }
:-ms-input-placeholder { color: #aaa; opacity: 1; }
::placeholder { color: #aaa; opacity: 1; }

/* --- Accessibility: Focus Outlines --- */
a:focus, .cta-primary:focus, .cta-secondary:focus, button:focus {
  outline: 2.5px solid #FFED98;
  outline-offset: 2.5px;
}

/* --- Hide Webkit Autofill (for future forms) --- */
input:-webkit-autofill, input:-webkit-autofill:focus, input:-webkit-autofill:hover {
  background-color: #fffede !important;
  color: #254C7B !important;
}

/* --- PRINT MIN STYLES for Nice Printing --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff !important; }
  .container, section, .section { box-shadow: none !important; background: #fff !important; }
}
