/* -----------------------------------------------------
   CSS RESET & BASE – Modern Normalize for consistency  
------------------------------------------------------*/
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;
  background: #F6F3EB;
  color: #235236;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}

/* Font faces (fallbacks provided) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Playfair+Display:wght@700&display=swap');

:root {
  --color-primary: #35734A;
  --color-secondary: #E6B77A;
  --color-accent: #F6F3EB;
  --color-pink: #F7E6F0;
  --color-mint: #D3F4E1;
  --color-yellow: #FCF7E2;
  --color-light-green: #E3F3E8;
  --color-sky: #E5F2F9;
  --color-grey: #F2F2F2;
  --color-link: #35734A;
  --color-link-hover: #E6B77A;
  --shadow-card: 0 2px 18px 0 rgba(53, 115, 74, 0.07);
  --shadow-soft: 0 1.5px 8px 0 rgba(53, 115, 74, 0.06);
  --radius-lg: 24px;
  --radius-md: 15px;
  --radius: 8px;
}

body {
  background: linear-gradient(135deg, #F7E6F0 0%, #E5F2F9 100%);
  background-repeat: no-repeat;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* -----------------------------------------------------
   TYPOGRAPHY HIERARCHY
------------------------------------------------------*/
h1, .hero h1, .about-story h1, .thank-you-confirmation h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
@media (max-width: 600px) {
  h1, .hero h1, .about-story h1 {
    font-size: 2rem;
  }
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}
p, li, dd {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #235236;
  line-height: 1.6;
}
strong {
  font-weight: 600;
}

blockquote, .client-feedback-teaser {
  background: var(--color-mint);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  margin: 12px 0 0 0;
  color: #222;
  font-size: 1.06rem;
  font-style: italic;
  box-shadow: var(--shadow-soft);
}

/* -----------------------------------------------------
   HEADER, NAVIGATION & MOBILE MENU
------------------------------------------------------*/
header {
  background: rgba(255,255,255,0.75);
  box-shadow: 0 1.5px 8px 0 rgba(53, 115, 74, 0.04);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 0;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
}
nav li {
  list-style: none;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--radius);
  padding: 6px 14px;
  transition: background 0.18s, color 0.18s;
}
nav a:hover,
nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}
nav a.cta,
.mobile-nav a.cta {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  font-weight: 600;
  padding: 9px 22px !important;
  box-shadow: 0 2px 12px 0 rgba(53, 115, 74, 0.12);
  margin-left: 12px;
  transition: background 0.18s, color 0.15s;
  font-size: 1rem;
}
nav a.cta:hover, nav a.cta:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
nav img {
  height: 38px;
  width: auto;
  margin-right: 16px;
  vertical-align: middle;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  margin-left: 12px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: var(--radius);
  padding: 8px 16px;
  cursor: pointer;
  align-self: center;
  z-index: 120;
  box-shadow: 0 2px 8px 0 rgba(53, 115, 74, 0.08);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(246, 243, 235, 0.96);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.65,.05,.36,1);
  box-shadow: 2px 0 24px 0 rgba(53, 115, 74,0.08);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  margin: 18px 24px 8px 0;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
  align-items: flex-start;
  padding: 0 36px;
}
.mobile-nav a {
  font-size: 1.12rem;
  color: var(--color-primary);
  padding: 8px 0 8px 0;
  border-radius: var(--radius);
  width: 100%;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}

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

/* -----------------------------------------------------
   GENERIC SECTION LAYOUTS (SOFT PASTEL ATMOSPHERE)
------------------------------------------------------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
}

.hero, .workshop-hero, .contact-hero, .thank-you-confirmation {
  background: var(--color-mint);
  border-radius: var(--radius-lg);
  margin: 28px 0 46px 0;
  box-shadow: var(--shadow-soft);
  padding: 54px 0;
}
.features, .services-list, .about-preview, .tips-preview,
.tips-intro, .featured-articles, .plant-guides, .problems-solutions,
.courses-list, .enrollment-cta, .process, .faq, .map,
.project-highlights, .about-story, .about-values, .about-team,
.contact-info, .contact-form {
  background: var(--color-sky);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 38px 0;
  margin-bottom: 36px;
}

.contact-cta, .enrollment-cta {
  background: var(--color-pink);
  padding: 34px 0;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  margin-bottom: 36px;
}

@media (max-width: 600px) {
  .section, .hero, .workshop-hero, .features, .services-list, .about-preview, .tips-preview, .contact-cta,
  .enrollment-cta, .about-story, .about-values, .about-team, .tips-intro, .featured-articles, .plant-guides, .problems-solutions, .project-highlights, .contact-info, .contact-form, .map {
    padding: 28px 12px;
    margin-bottom: 30px;
    border-radius: var(--radius);
  }
}

/* -----------------------------------------------------
   FLEXBOX LAYOUTS (No CSS Grid)
------------------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 220px;
  flex: 1 1 320px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 36px 0 rgba(53,115,74,0.16);
  transform: translateY(-6px) scale(1.016);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  background: var(--color-yellow);
  box-shadow: var(--shadow-card);
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #222;
}
.testimonials .testimonial-card p {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--color-primary);
  font-style: normal;
  margin-left: 12px;
  opacity: 0.83;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- Features section (/) --- */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 20px;
}
.features ul li {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  flex: 1 1 240px;
  min-width: 220px;
  padding: 20px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.features ul li:hover, .features ul li:focus-within {
  box-shadow: 0 4px 24px 0 rgba(53,115,74,0.14);
  transform: translateY(-4px) scale(1.01);
}
.features ul img {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-mint);
  padding: 8px;
}
.price {
  color: #BF9673;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: var(--color-yellow);
  padding: 3px 12px;
  border-radius: 18px;
  margin-top: 6px;
}

/* --- Preview sections, tips, guides (index, cura-consigli) --- */
.tips-preview ul,
.tips-intro ul,
.featured-articles ul,
.plant-guides ul,
.services-list ul,
.about-values ul,
.about-team ul,
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

/* --- Service Highlights (services.html) --- */
.service-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 18px;
}
.service-highlights li {
  background: var(--color-pink);
  color: var(--color-primary);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* --- FAQ, DL/DT/DD lists --- */
.faq dl, .problems-solutions dl, .project-highlights dl {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
dt {
  font-family: 'Playfair Display', serif;
  font-size: 1.09rem;
  color: var(--color-primary);
  margin-bottom: 5px;
  font-weight: bold;
}
dd {
  margin-left: 0;
  font-size: 0.99rem;
  background: var(--color-grey);
  padding: 8px 14px;
  border-radius: var(--radius);
  margin-bottom: 8px;
  color: #235236;
}
.faq a, .faq a:visited {
  color: var(--color-link);
  text-decoration: underline;
}
.faq a:hover {
  color: var(--color-link-hover);
}

/* --- Project Highlights (galleria.html) --- */
.project-highlights .text-section {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 24px 20px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-highlights h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

/* --- Contact Page --- */
.contact-info ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #235236;
}
.contact-info ul img {
  width: 22px; height: 22px;
}
.contact-info a {
  color: var(--color-link);
  text-decoration: underline;
}
.contact-form ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.contact-form a.cta {
  align-self: flex-start;
}
.map .text-section {
  background: var(--color-mint);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

/* -----------------------------------------------------
   BUTTONS & CTAs
------------------------------------------------------*/
.cta, .cta:visited {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border: none;
  border-radius: var(--radius-lg);
  padding: 12px 30px;
  margin-top: 10px;
  box-shadow: 0 2px 14px 0 rgba(53,115,74,0.09);
  font-size: 1.08rem;
  cursor: pointer;
  letter-spacing: 0.01em;
  outline: none;
  transition: background 0.18s, color 0.14s, box-shadow 0.13s, transform 0.2s;
}
.cta:hover, .cta:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 4px 18px 0 rgba(230,183,122,0.23);
  transform: translateY(-1.5px) scale(1.03);
}
.button, button, input[type="submit"], .cookie-btn {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: var(--radius);
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 12px 0 rgba(53, 115, 74, 0.09);
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.12s, transform 0.14s;
}
.button:hover, .cookie-btn:hover,
.button:focus, .cookie-btn:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 4px 15px 0 rgba(230,183,122,0.16);
  transform: translateY(-1px) scale(1.03);
}

/* -----------------------------------------------------
   FOOTER
------------------------------------------------------*/
footer {
  background: linear-gradient(135deg, #D3F4E1 0%, #FCF7E2 100%);
  font-size: 0.97rem;
  color: #35734A;
  border-top: 1.5px solid #E6B77A14;
  margin-top: 40px;
}
footer .container {
  padding: 34px 20px 16px 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 600;
}
.footer-brand img {
  width: 38px;
  height: auto;
}
.footer-quick-links, .footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 145px;
}
.footer-quick-links a, .footer-legal-links a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 1em;
  border-radius: var(--radius);
  padding: 4px 7px;
  transition: background 0.17s, color 0.14s;
}
.footer-quick-links a:hover, .footer-legal-links a:hover {
  background: var(--color-secondary);
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
  transition: box-shadow 0.17s, background 0.14s;
}
.footer-social a:hover img {
  background: var(--color-secondary);
  box-shadow: 0 2px 8px 0 rgba(230,183,122,0.22);
}
@media (max-width: 920px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .footer-brand,
  .footer-social {
    margin-bottom: 10px;
  }
}

/* -----------------------------------------------------
   COOKIE CONSENT BANNER
------------------------------------------------------*/
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbe8;
  color: #1e2f21;
  border-top: 2px solid #E6B77A77;
  box-shadow: 0 -1.5px 12px 0 rgba(53,115,74,0.13);
  width: 100vw;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 14px 12px 14px;
  gap: 14px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  animation: slide-in-up 0.44s cubic-bezier(.51,.06,.36,1);
}
@keyframes slide-in-up {
  from { transform: translateY(150%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cookie-btn {
  min-width: 120px;
  font-size: 1rem;
}
.cookie-btn.settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-primary);
  color: #fff;
}
/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: #fff;
  color: #222;
  z-index: 2200;
  padding: 32px 28px 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 42px 0 rgba(53,115,74,0.18);
  width: 95vw;
  max-width: 430px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-in 0.3s cubic-bezier(.73,.05,.36,1);
}
@keyframes modal-in {
  from { transform: translate(-50%,-45%) scale(0.94); opacity: 0; }
  to   { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.15rem;
  color: var(--color-primary);
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 18px; height: 18px;
  margin-right: 6px;
}
.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--color-primary);
  cursor: pointer;
  z-index: 2240;
  transition: color 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-secondary);
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 16px 10px 14px 10px;
    max-width: 99vw;
  }
}

/* -----------------------------------------------------
   UTILITY CLASSES & ACCESSIBILITY
------------------------------------------------------*/
.flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-8  { gap: 8px;  }
.gap-12 { gap: 12px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* Hide visually but accessible */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* -----------------------------------------------------
   FORMS (Contact pages, newsletter, etc.)
------------------------------------------------------*/
input, textarea, select {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 14px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: #fff;
  color: #2C4534;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.13s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-secondary);
  outline: none;
  box-shadow: 0 1.5px 8px 0 rgba(230,183,122,0.15);
}
label {
  display: block;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 4px;
}

/* -----------------------------------------------------
   RESPONSIVE QUERIES - MOBILE FIRST FLEX LAYOUTS
------------------------------------------------------*/
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
    padding: 0 8px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 18px;
  }
  .features ul, .card-container, .service-highlights ul {
    flex-direction: column;
    gap: 16px;
  }
  .footer-brand { margin-bottom: 8px; }
  .projects-highlights .text-section {
    padding: 12px 8px;
  }
}
@media (max-width:500px) {
  nav img, .footer-brand img {
    height: 26px;
    width: auto;
  }
  .cookie-consent {
    padding: 12px 4px 10px 4px;
    font-size: 0.98rem;
  }
}

/* -----------------------------------------------------
   MICRO-INTERACTIONS & TRANSITIONS
------------------------------------------------------*/
.card, .features ul li, .testimonial-card, .project-highlights .text-section {
  transition: box-shadow 0.17s, transform 0.15s;
}
.cta, .button, .cookie-btn {
  transition: background 0.14s, color 0.14s, box-shadow 0.12s, transform 0.14s;
}
nav a, .footer-quick-links a, .footer-legal-links a, .mobile-nav a {
  transition: background 0.18s, color 0.14s;
}
.footer-social a img {
  transition: box-shadow 0.17s, background 0.14s;
}

/* -----------------------------------------------------
   PRINT & MISCELLANEOUS
------------------------------------------------------*/
@media print {
  header, footer, nav, .cookie-consent, .mobile-menu {
    display: none !important;
  }
  main, .container, .content-wrapper {
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* END OF SOFT PASTEL FLEX LAYOUT CSS */
