/* ===================
   CSS RESET & BASE
   =================== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #FFFDF9;
  color: #252525;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #162539;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #5AA7CC;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #162539;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.15;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}
strong {
  color: #162539;
  font-weight: 700;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .section {
    padding: 60px 0;
  }
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2.1rem;
  }
}

/* ===================
   HEADER & NAVIGATION
   =================== */
header {
  background: #162539;
  color: #fff;
  padding: 0;
  box-shadow: 0 2px 18px rgba(22,37,57,0.04);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}
header nav {
  display: none;
  align-items: center;
  gap: 20px;
}
header nav a {
  padding: 7px 15px;
  border-radius: 24px;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover,
header nav a:focus {
  background: #5AA7CC;
  color: #162539;
}
header .button-primary {
  margin-left: 10px;
}
.mobile-menu-toggle {
  display: flex;
  background: transparent;
  border: none;
  color: #FFD966;
  font-size: 2rem;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 50%;
  transition: background 0.16s;
  z-index: 51;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FFD96622;
}
/* Desktop nav visible */
@media (min-width: 1024px) {
  header nav {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* ===================
   MOBILE MENU
   =================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw; height: 100vh;
  background: #FFFDF9;
  color: #162539;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.83,.24,.36,1.17);
  box-shadow: -4px 0 40px rgba(22,37,57,0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 16px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #162539;
  font-size: 2.3rem;
  padding: 6px 12px;
  margin-bottom: 25px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #FFD96633;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #162539;
  background: #FFD96644;
  border-radius: 16px;
  padding: 12px 10px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #5AA7CC;
  color: #fff;
}

/* ===================
   HERO SECTIONS
   =================== */
.hero-section {
  background: #FFD966;
  padding: 40px 0 40px 0;
  border-radius: 0 0 30px 30px;
}
.hero-section .container,
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-section h1 {
  color: #162539;
}
.hero-section .subheadline {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #294158;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .hero-section {
    padding: 65px 0 55px 0;
  }
  .hero-section .content-wrapper {
    gap: 14px;
  }
}

/* ===================
   BUTTONS
   =================== */
.button-primary, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 26px;
  font-weight: 600;
  padding: 12px 28px;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: 0 2px 10px rgba(90,167,204,0.09);
  background: #FFD966;
  color: #162539;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s, transform 0.12s;
  text-decoration: none;
  gap: 7px;
  letter-spacing: 0.01em;
}
.button-primary:hover, .button-primary:focus {
  background: #5AA7CC;
  color: #fff;
  box-shadow: 0 2px 18px rgba(90,167,204,0.20);
  transform: translateY(-2px) scale(1.02);
}
.button-secondary {
  background: #5AA7CC;
  color: #fff;
}
.button-secondary:hover, .button-secondary:focus {
  background: #FFD966;
  color: #162539;
  box-shadow: 0 2.5px 18px rgba(255,217,102,0.18);
  transform: translateY(-2px) scale(1.02);
}

/* ===================
   FEATURES GRID & CARDS
   =================== */
.features-section {
  background: #FFF9ED;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.features-section .content-wrapper {
  gap: 10px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
}
.feature-grid li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(22, 37, 57, 0.08);
  padding: 28px 22px 20px 22px;
  flex: 1 1 250px;
  min-width: 210px;
  max-width: 275px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.13s;
  position: relative;
}
.feature-grid li:hover {
  box-shadow: 0 6px 24px rgba(90, 167, 204, 0.13);
  transform: translateY(-4px) scale(1.024);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 5px;
}
@media (max-width: 1000px) {
  .feature-grid {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-grid li {
    max-width: 450px;
    margin: 0 auto 20px auto;
  }
}

/* Features and steps (ol/ul) */
.features-section ul, .features-section ol {
  padding-left: 0;
}
.features-section li {
  margin-bottom: 0;
}

/* ===================
   SERVICES LIST STYLING
   =================== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
  justify-content: flex-start;
}
.service-list li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(22,37,57,0.10);
  flex: 1 1 265px;
  min-width: 230px;
  max-width: 305px;
  padding: 26px 22px 20px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.14s,transform 0.11s;
}
.service-list li:hover {
  box-shadow: 0 7px 26px rgba(255,217,102,0.18);
  transform: translateY(-3px) scale(1.018);
}
.service-list li img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}
.service-price {
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #5AA7CC;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .service-list {
    justify-content: center;
  }
  .service-list li {
    max-width: 440px;
  }
}
@media (max-width: 768px) {
  .service-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .service-list li {
    margin: 0 auto 20px auto;
    max-width: 470px;
  }
}

/* ===================
  CTA SECTIONS
  =================== */
.cta-section {
  background: #5AA7CC11;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 38px 0 38px 0;
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-section a {
  margin-top: 18px;
}

/* ===================
  TESTIMONIAL CARDS
  =================== */
.testimonials-section {
  background: #fff4e0;
  border-radius: 20px;
  padding: 40px 0;
  margin-bottom: 60px;
}
.testimonials-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 15px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(22,37,57,0.09);
  padding: 20px 26px;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 20px;
  position: relative;
  color: #252525;
  font-size: 1.05rem;
  transition: box-shadow 0.14s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 18px rgba(90,167,204,0.15);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  color: #5AA7CC;
}
.testimonial-card div {
  font-size: 1.23rem;
  color: #FFD966;
  letter-spacing: 0.06em;
}
/* Dark text for contrast on light backgrounds (incl. review text) */
.testimonial-card p, .testimonial-card span, .testimonial-card div {
  color: #162539 !important;
}

/* ===================
   ABOUT SECTION
   =================== */
.about-section {
  background: #FFF;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 38px 0 38px 0;
}
.about-section .content-wrapper {
  gap: 14px;
}
.about-section ul {
  padding-left: 18px;
  margin-bottom: 8px;
}
.about-section li {
  position: relative;
  margin-left: 0;
  margin-bottom: 8px;
  padding-left: 10px;
}
.about-section li:before {
  content: '•';
  color: #FFD966;
  font-size: 1.2em;
  line-height: 0;
  margin-right: 6px;
  position: absolute;
  left: 0;
}

/* ===================
  FLEXBOX LAYOUT UTILS
  =================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(90,167,204,0.11);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 18px;
  min-width: 220px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===================
  OTHER SECTION STYLES
  =================== */
.text-section {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 50px;
  padding: 40px 0;
}
.text-section .content-wrapper {
  gap: 14px;
}

.faq-section {
  background: #F3F6FA;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.faq-section .content-wrapper {
  gap: 12px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 10px rgba(22,37,57,0.07);
  padding: 18px 20px 14px 20px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: box-shadow 0.13s, transform 0.11s;
}
.faq-item:hover {
  box-shadow: 0 5px 16px rgba(255,217,102,0.16);
  transform: translateY(-1px) scale(1.011);
}
.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 7px;
  color: #162539;
}
.faq-item > div {
  color: #294158;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* Step-by-step timeline for prozess.html */
.step-by-step-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 12px;
}
.step-by-step-timeline li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(90,167,204,0.08);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 18px;
  margin-bottom: 11px;
  font-size: 1rem;
}
.step-by-step-timeline img {
  width: 34px;
  height: 34px;
}
@media (min-width: 768px) {
  .step-by-step-timeline {
    gap: 18px;
  }
}

.quick-faq {
  margin-top: 12px;
  font-size: 1.0rem;
  text-align: right;
}
.quick-faq a {
  color: #5AA7CC;
  text-decoration: underline;
}

/* ===================
   CONTACT SECTION STYLES
   =================== */
.contact-section {
  background: #FFF9ED;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 38px 0 38px 0;
}
.contact-section .content-wrapper {
  gap: 22px;
}
.contact-section ul {
  margin-bottom: 14px;
}
.contact-section li {
  margin-bottom: 8px;
  font-size: 1.03rem;
}
.map-placeholder {
  border-radius: 14px;
  background: #EEF1F4;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  font-size: 1rem;
  box-shadow: 0 1.5px 10px rgba(22,37,57,0.04);
  margin-top: 8px;
}

/* ===================
   FOOTER
   =================== */
footer {
  background: #162539;
  color: #fff;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  margin-top: 60px;
}
footer .container {
  padding: 34px 16px 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 10px;
}
.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-top nav a {
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 6px 11px;
  border-radius: 13px;
  transition: background 0.14s, color 0.14s;
}
.footer-top nav a:hover,
.footer-top nav a:focus {
  background: #5AA7CC;
  color: #FFD966;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.99rem;
  margin-bottom: 8px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.footer-links a {
  color: #FFD966;
  font-size: 1.01rem;
  transition: color 0.13s;
}
.footer-links a:hover,
.footer-links a:focus {
  color: #fff;
}
.copyright {
  border-top: 1.5px solid #fff2;
  padding-top: 7px;
  color: #bbb;
  text-align: center;
  font-size: 0.97rem;
  margin-top: 5px;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .footer-top {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* ===================
   COOKIE CONSENT BANNER
   =================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #FFF8E2;
  color: #162539;
  box-shadow: 0 -2px 24px rgba(90,167,204,0.21);
  padding: 24px 14px 18px 14px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: cookieFadeIn 0.6s;
  font-size: 1rem;
}
@keyframes cookieFadeIn {
  0% { opacity: 0; transform: translateY(64px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  margin-bottom: 2px;
  text-align: center;
  font-size: 1.07rem;
  color: #294158;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.cookie-banner button,
.cookie-banner .cookie-settings-link {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  border-radius: 16px;
  padding: 7px 19px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.13s;
  box-shadow: 0 1.5px 6px rgba(90,167,204,0.12);
  margin: 0 2px;
}
.cookie-banner .cookie-accept {
  background: #FFD966;
  color: #162539;
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: #5AA7CC;
  color: #fff;
}
.cookie-banner .cookie-reject {
  background: #F3F6FA;
  color: #162539;
}
.cookie-banner .cookie-reject:hover,
.cookie-banner .cookie-reject:focus {
  background: #FFD966;
  color: #162539;
}
.cookie-banner .cookie-settings-link {
  background: #fff;
  color: #162539;
  text-decoration: underline;
  border: 1px solid #5AA7CC44;
}
.cookie-banner .cookie-settings-link:hover,
.cookie-banner .cookie-settings-link:focus {
  background: #5AA7CC;
  color: #fff;
  border: 1px solid #5AA7CC;
  text-decoration: none;
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(22,37,57,0.55);
  z-index: 2200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeInModal 0.27s;
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #FFF9ED;
  padding: 30px 18px 22px 18px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -6px 38px rgba(90,167,204,0.25);
  color: #162539;
  width: 100vw;
  max-width: 420px;
  animation: slideCookieModal 0.33s cubic-bezier(.55,.14,.47,.9);
}
@keyframes slideCookieModal {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.26rem;
  margin-bottom: 6px;
}
.cookie-modal ul {
  margin: 18px 0 15px 0;
  padding: 0 0 0 9px;
}
.cookie-modal li {
  margin-bottom: 11px;
  font-size: 1.03rem;
  list-style: disc inside;
}
.cookie-switch {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-modal label {
  font-size: 1.05rem;
  color: #162539;
}
.cookie-modal input[type="checkbox"] {
  appearance: none;
  width: 32px;
  height: 18px;
  border-radius: 9px;
  background: #F3F6FA;
  transition: background 0.18s;
  position: relative;
  outline: none;
  vertical-align: bottom;
}
.cookie-modal input[type="checkbox"]:checked {
  background: #5AA7CC;
}
.cookie-modal input[type="checkbox"]:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2.5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.5px 2px #bbb8;
  transition: left 0.2s;
}
.cookie-modal input[type="checkbox"]:checked:before {
  left: 16px;
}
.cookie-modal-actions {
  display: flex;
  gap: 17px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-accept {
  background: #FFD966;
  color: #162539;
}
.cookie-modal .cookie-accept:hover,
.cookie-modal .cookie-accept:focus {
  background: #5AA7CC;
  color: #fff;
}
.cookie-modal .cookie-cancel {
  background: #F3F6FA;
  color: #162539;
}
.cookie-modal .cookie-cancel:hover { background: #FFD966; }
.cookie-modal .cookie-save {
  background: #5AA7CC;
  color: #fff;
}
.cookie-modal .cookie-save:hover { background: #FFD966; color: #162539; }

/* Always enabled (disabled switch) */
.cookie-modal input[type="checkbox"][disabled] {
  filter: grayscale(0.5) opacity(0.85);
  cursor: not-allowed;
}

/* ===================
   RESPONSIVE DESIGN
   =================== */
@media (max-width: 600px) {
  .container {
    padding: 0 6px;
  }
  .feature-grid,
  .service-list {
    gap: 16px;
  }
  .footer-links {
    gap: 6px 10px;
  }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.17rem; }
  h3 { font-size: 1.01rem; }
  .button-primary,
  .button-secondary {
    font-size: 1.05rem;
    padding: 11px 8vw;
  }
  .hero-section, .features-section, .cta-section, .about-section,
  .testimonials-section, .contact-section, .faq-section, .text-section {
    padding-left: 0;
    padding-right: 0;
  }
  .service-list li, .feature-grid li, .testimonial-card {
    padding: 15px 9px 12px 13px;
  }
  .cookie-modal { padding: 22px 7px 14px 7px; }
}

/* Hide scrollbars for modal if overlay is open */
body.modal-open {
  overflow: hidden;
}

/* ===================
   MICRO-INTERACTIONS
   =================== */
.button-primary, .button-secondary,
.mobile-menu-toggle, .mobile-menu-close,
.cookie-banner button, .cookie-settings-link,
.cookie-modal-actions button {
  transition: background 0.14s, color 0.13s, box-shadow 0.13s, transform 0.09s;
}

/* Checkbox for cookie modal micro-animation */
.cookie-modal input[type="checkbox"] {
  cursor: pointer;
}

/* Accordion FAQ micro-interaction (expand/collapse icon support if JS added) */
.faq-item[aria-expanded="true"] {
  box-shadow: 0 5px 18px rgba(90,167,204,0.14);
  font-weight: 600;
}

/* ===================
   ACCESSIBILITY & FOCUS VISIBLE
   =================== */
a:focus, button:focus, .button-primary:focus, .button-secondary:focus {
  outline: 2px solid #FFD966;
  outline-offset: 2px;
  z-index: 4;
}

::-webkit-input-placeholder { color: #b1b7be; }
::-moz-placeholder { color: #b1b7be; }
:-ms-input-placeholder { color: #b1b7be; }
::placeholder { color: #b1b7be; }

/* ===================
   PRINT FRIENDLY
   =================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-overlay { display: none !important; }
  body { background: #fff; color: #000; }
}
