/* =========================
   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, 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #233857;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
ul, ol {
  list-style: none;
}
a {
  color: #217157;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover, a:focus {
  color: #38A07C;
  outline: none;
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3, h4, h5, h6 {
  color: #233857;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.015em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, li {
  color: #263a5a;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.7;
}
strong {
  font-weight: bold;
  color: #233857;
}
.subheadline {
  color: #217157;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* =========================
   CONTAINER CLASSES
   ========================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* Layout Patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(35, 56, 87, 0.07);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(56,160,124, 0.085);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(35,56,87,0.12);
  transform: translateY(-3px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
  background: #fffefb;
  border-radius: 17px;
  box-shadow: 0 3px 16px 0 rgba(56,160,124,0.08);
  margin-bottom: 20px;
  flex: 1 1 320px;
  min-width: 270px;
  transition: box-shadow 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(35,56,87, 0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* =========================
   NAVIGATION
   ========================= */
header {
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(56,160,124,0.03);
  border-radius: 0 0 22px 22px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.main-nav img {
  height: 40px;
  margin-right: 20px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav li {
  display: flex;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #233857;
  padding: 8px 12px;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #D8E3EC;
  color: #217157;
}
.button.primary {
  background: #217157;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 11px 28px;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(56,160,124,0.10);
  transition: background 0.22s, box-shadow 0.21s, transform 0.16s;
  margin-left: 22px;
  cursor: pointer;
}
.button.primary:hover, .button.primary:focus {
  background: #38A07C;
  color: #fff;
  box-shadow: 0 6px 18px rgba(56,160,124,0.16);
  transform: translateY(-2px) scale(1.02);
}
.button.accent {
  background: #fff5eb;
  color: #233857;
  border: 2px solid #38A07C;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 28px;
  border-radius: 17px;
  transition: background 0.2s, color 0.2s, border 0.14s;
  margin-top: 18px;
  box-shadow: 0 2px 8px rgba(56,160,124,0.07);
  cursor: pointer;
}
.button.accent:hover, .button.accent:focus {
  background: #38A07C;
  color: #fff;
  border-color: #217157;
}
nav.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 22px 0;
  font-size: 1rem;
}
.footer-nav a {
  color: #233857;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  padding: 6px 14px;
  transition: background 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #D8E3EC;
}
.legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 0.98rem;
}
.legal-links a {
  color: #217157;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.16s;
}
.legal-links a:hover, .legal-links a:focus {
  background: #e8f3ed;
}
.footer-branding img {
  height: 36px;
}
.footer-contact {
  margin-top: 6px;
  color: #233857;
  font-size: 0.97rem;
  line-height: 1.5;
}

/* =========================
   HERO & FEATURE SECTIONS
   ========================= */
.hero {
  display: flex;
  align-items: center;
  background: #faf5ef;
  border-radius: 18px;
  box-shadow: 0 2px 28px 0 rgba(255,167,74,0.07);
  margin-bottom: 60px;
  padding: 48px 0 32px 0;
  min-height: 240px;
}
.hero h1 {
  color: #233857;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  margin-bottom: 14px;
  font-weight: 800;
}
.hero p {
  color: #217157;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.features {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.features h2 {
  color: #233857;
  margin-bottom: 16px;
}
.feature-grid, .features-grid, .values-list, .benefits-list, .vollmacht-types-list, .beratung-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid li, .features-grid li, .values-list li, .benefits-list li, .vollmacht-types-list li, .beratung-services-list li {
  background: #faf7f3;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(56,160,124,0.08);
  padding: 22px 18px;
  flex: 1 1 300px;
  min-width: 200px;
  font-size: 1.07rem;
  color: #233857;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  position: relative;
  transition: box-shadow 0.15s;
}
.feature-grid li img,
.features-grid li img {
  width: 36px;
  height: 36px;
  margin-right: 12px;
  flex-shrink: 0;
}
.feature-grid li:hover, .features-grid li:hover {
  box-shadow: 0 6px 24px rgba(56,160,124,0.14);
}
.values-list {
  gap: 20px;
  flex-wrap: wrap;
}
.values-list li {
  font-size: 1.09rem;
  font-family: 'Open Sans', sans-serif;
}

.user-benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.user-benefits ul li {
  background: #e8f3ed;
  color: #217157;
  border-radius: 10px;
  padding: 7px 14px;
  font-size: 1rem;
}

.trust-signs {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.trust-signs img {
  width: 38px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(56,160,124,0.08);
}
.trust-signs span {
  color: #217157;
  font-weight: 600;
}

.price-highlight, .service-price, .price-block, .price-overview {
  color: #217157;
  background: #e8f3ed;
  border-radius: 10px;
  padding: 10px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  display: inline-block;
  margin-top: 8px;
  font-size: 1.08rem;
}

/* =========================
   SERVICES & CARDS
   ========================= */
.services, .services-detail, .vollmachten-services {
  margin-bottom: 60px;
}
.service-overview-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  flex: 1 1 270px;
  min-width: 230px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(35,56,87,0.05);
  padding: 26px 24px 38px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.service-card:hover {
  box-shadow: 0 8px 28px rgba(56,160,124,0.13);
  transform: translateY(-2px) scale(1.01);
}
.service-card .service-price {
  margin-top: 18px;
  align-self: flex-start;
}

.detailed-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.detailed-services-list li {
  background: #faf7f3;
  border-radius: 13px;
  box-shadow: 0 1px 8px rgba(56,160,124,0.09);
  padding: 20px 16px;
  flex: 1 1 260px;
  min-width: 200px;
  margin-bottom: 16px;
  color: #233857;
}

.service-details {
  margin: 14px 0 0 0;
}

.types-of-consultation h3 {
  margin-bottom: 8px;
  font-size: 1.13rem;
}

/* =========================
   FAQ ACCORDION
   ========================= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fffefb;
  padding: 20px 18px;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(56,160,124,0.09);
  position: relative;
  transition: box-shadow 0.15s;
}
.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 7px;
  color: #217157;
  font-weight: 700;
}
.faq-item p {
  font-size: 1rem;
}
.faq-item:hover {
  box-shadow: 0 3px 15px rgba(56,160,124,0.10);
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonial-slider {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.testimonial-card p {
  color: #233857;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-author {
  color: #217157;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
}

/* =========================
   CONTACT & ADDRESS
   ========================= */
.contact-details {
  line-height: 1.9;
  font-size: 1.01rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.info-panel {
  background: #e6edfa;
  padding: 18px 15px;
  border-radius: 12px;
  margin-right: 20px;
  margin-bottom: 20px;
  color: #233857;
  min-width: 220px;
  box-shadow: 0 1px 8px rgba(35,56,87,0.04);
}
.contact-section, .contact-short {
  background: #faf7f3;
  border-radius: 15px;
  padding: 38px 18px;
  margin-bottom: 44px;
}
.address-details, .parking-hints, .public-transport-info {
  margin-bottom: 18px;
  background: #f7faf9;
  border-radius: 10px;
  padding: 12px 14px;
  color: #217157;
  font-size: 1.05rem;
  box-shadow: 0 1px 6px rgba(56,160,124,0.07);
}

/* =========================
   THANK-YOU / FEEDBACK
   ========================= */
.thank-you {
  background: #faf7f3;
  min-height: 300px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
  padding: 60px 0;
}
.thank-you-message {
  font-size: 1.13rem;
  margin-bottom: 18px;
  color: #233857;
  line-height: 1.7;
}
.thank-you .button.primary {
  margin-top: 16px;
}

/* =========================
   LEGAL PAGES
   ========================= */
.legal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 9px rgba(35,56,87,0.06);
  padding: 38px 18px;
  margin-bottom: 48px;
}
.text-section {
  margin-bottom: 16px;
}
.text-section ul {
  margin: 14px 0 14px 22px;
  list-style: disc inside;
}
.text-section li {
  margin-bottom: 5px;
  padding-left: 5px;
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (max-width: 1040px) {
  .container {
    padding: 0 12px;
  }
  .service-overview-cards, .feature-grid, .service-card, .testimonial-slider, .content-grid {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .footer-nav, .legal-links {
    flex-wrap: wrap;
    gap: 12px;
  }
  .main-nav ul {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
  }
  .main-nav {
    flex-direction: row;
  }
  .main-nav img {
    height: 38px;
  }
  .main-nav a.button.primary {
    margin-left: 0;
    margin-right: 4px;
    font-size: .98rem;
    padding: 10px 17px;
  }
  .hero {
    padding: 36px 0 26px 0;
    min-height: unset;
  }
  .service-overview-cards,.feature-grid,.detailed-services-list,.features-grid {
    flex-direction: column;
    gap: 12px;
  }
  .card-container, .testimonial-slider, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .card, .service-card, .testimonial-card {
    min-width: 0;
    padding: 18px 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .faq-accordion {
    gap: 8px;
  }
  .legal, .thank-you, .contact-section, .features, .section {
    padding: 22px 7px;
  }
  .footer-branding img {
    height: 28px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  h3 {
    font-size: 1rem;
  }
  .main-nav a.button.primary {
    padding: 8px 10px;
    font-size: .94rem;
  }
  .container {
    padding: 0 4px;
  }
  .footer-nav, .legal-links {
    gap: 4px;
  }
}

/* =========================
   MOBILE BURGER MENU
   ========================= */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #233857;
  border: none;
  font-size: 2rem;
  padding: 8px 14px;
  border-radius: 11px;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(35,56,87,0.08);
  position: absolute;
  top: 23px;
  right: 16px;
  transition: background 0.2s;
  z-index: 201;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #D8E3EC;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  background: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(0.65,0,0.35,1);
  box-shadow: 0 0 42px rgba(35,56,87,0.20);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #233857;
  border: none;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 18px 28px 0 0;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 11px;
  transition: background 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #D8E3EC;
}
.mobile-menu nav {
  margin: 34px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 0 28px;
}
.mobile-nav a {
  font-size: 1.27rem;
  color: #233857;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 17px;
  text-decoration: none;
  width: 100%;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e8f3ed;
  color: #217157;
}

/* Overlay for mobile menu background dim */
body.mobile-menu-open {
  overflow: hidden;
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  max-width: 95vw;
  width: 440px;
  background: #fffefb;
  color: #233857;
  border-radius: 19px;
  box-shadow: 0 3px 28px rgba(35,56,87,0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  z-index: 9999;
  padding: 22px 24px 14px 24px;
  font-size: 1rem;
  opacity: 1;
  transition: opacity 0.25s, bottom 0.25s;
  will-change: opacity, bottom;
}
.cookie-banner.hide {
  opacity: 0;
  bottom: 0;
  pointer-events: none;
}
.cookie-banner p {
  margin: 0 0 5px 0;
}
.cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
.cookie-actions button {
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 18px;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(56,160,124,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
}
.cookie-actions .accept {
  background: #38A07C;
  color: #fff;
}
.cookie-actions .accept:hover, .cookie-actions .accept:focus {
  background: #217157;
}
.cookie-actions .reject {
  background: #f5dad6;
  color: #d74e0d;
}
.cookie-actions .reject:hover, .cookie-actions .reject:focus {
  background: #efd3cc;
  color: #c23200;
}
.cookie-actions .settings {
  background: #e8f3ed;
  color: #233857;
  border: 1.5px solid #38A07C;
}
.cookie-actions .settings:hover, .cookie-actions .settings:focus {
  background: #38A07C;
  color: #fff;
  border-color: #217157;
}

/* =========================
   COOKIE PREFERENCES MODAL
   ========================= */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,56,87,0.32);
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 4px 42px rgba(35,56,87,0.22);
  width: 94vw;
  max-width: 430px;
  padding: 32px 28px 22px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalSlide 0.34s cubic-bezier(0.65,0,0.35,1);
}
@keyframes modalSlide {
  from { transform: translateY(60px) scale(0.98); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  color: #233857;
  font-size: 1.25rem;
  margin-bottom: 0.7em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-category {
  background: #faf5ef;
  border-radius: 13px;
  padding: 12px 13px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: space-between;
  color: #233857;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #38A07C;
  margin-right: 8px;
}
.cookie-category input[disabled] {
  accent-color: #cccccc;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.cookie-modal-actions button {
  border: none;
  border-radius: 11px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 20px;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(56,160,124,0.09);
  transition: background 0.16s, color 0.16s;
}
.cookie-modal-actions .save {
  background: #38A07C;
  color: #fff;
}
.cookie-modal-actions .save:hover, .cookie-modal-actions .save:focus {
  background: #217157;
}
.cookie-modal-actions .cancel {
  background: #f5dad6;
  color: #d74e0d;
}
.cookie-modal-actions .cancel:hover, .cookie-modal-actions .cancel:focus {
  background: #efd3cc;
  color: #c23200;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #233857;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1;
  padding: 3px 8px;
  border-radius: 8px;
  transition: background 0.14s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #D8E3EC;
}

@media (max-width: 520px) {
  .cookie-modal {
    padding: 15px 5px 7px 5px;
    max-width: 97vw;
  }
  .cookie-banner {
    padding: 11px 8px 9px 8px;
    width: 97vw;
    min-width: 0;
    font-size: .98rem;
  }
}

/* =========================
   ANIMATIONS/MICRO-INTERACTIONS
   ========================= */
.button, .footer-nav a, .legal-links a, .main-nav a, .mobile-nav a, .service-card, .feature-grid li, .card, .faq-item, .testimonial-card {
  transition: box-shadow 0.18s, background 0.19s, color 0.18s, transform 0.17s;
}

.button:active {
  transform: scale(0.98);
}

a, a:focus, a:active {
  outline: none;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border-radius: 7px;
  border: 1px solid #D8E3EC;
  outline: none;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #38A07C;
}

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

/* =========================
   SCROLLBAR STYLING
   ========================= */
::-webkit-scrollbar {
  width: 12px;
  background: #f5f7fa;
}
::-webkit-scrollbar-thumb {
  background: #D8E3EC;
  border-radius: 9px;
}

/* =========================
   PRINT STYLES
   ========================= */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop {
    display: none !important;
  }
  * {
    background: none !important;
    color: #000 !important;
    box-shadow: none !important;
  }
}
