/* ========================== */
/* STUDIOFACILE RIMINI VINTAGE RETRO STYLE CSS */
/* ========================== */
/* CSS Reset / Normalize */
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,
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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FCF8F2;
  color: #263238;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  background-image: repeating-linear-gradient(135deg,#f5e6c6 0 15px,#f8ecd8 15px 30px); /* Pastel sand pattern */
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; background: none; border: none; outline: none; cursor: pointer; }

/* FONT FACE - Retro/Vintage selection */
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:700|Open+Sans:400,700&display=swap');

:root {
  --primary: #265D8D;
  --secondary: #3CB070;
  --accent: #fff;
  --retro-yellow: #F6C85F;
  --retro-orange: #F0965A;
  --retro-dark: #4E342E;
  --retro-bg: #FCF8F2;
  --retro-muted: #E7D7B8;
  --highlight: #FFF4D4;
  --shadow: rgba(47, 56, 73, 0.09);
  --border-radius: 14px;
  --border-width: 2px;
}

body {
  background-color: var(--retro-bg);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0; /* used for .content-wrapper inside */
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

/****************************/
/* TYPOGRAPHY */
/****************************/
h1, h2, h3, h4 {
  font-family: 'Roboto Slab', serif;
  letter-spacing: 0.5px;
  line-height: 1.15;
  color: var(--primary);
}
h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-shadow: 2px 2px 0 var(--retro-yellow), 0 2px 6px rgba(78, 52, 46, 0.06);
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--retro-orange);
  text-shadow: 1px 1px 0 var(--retro-muted);
}
h3 {
  font-size: 1.34rem;
  font-weight: 700;
  color: var(--primary);
}
h4 {
  font-size: 1.1rem;
  font-weight: 700;
}
p, ul, ol, li, .footer-credits, .author, .mini-team-bio {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.7;
  font-size: 1rem;
}
p {
  margin-bottom: 15px;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}

/****************************/
/* HEADER & MAIN NAVIGATION */
/****************************/
header {
  background: var(--highlight);
  border-bottom: var(--border-width) solid var(--retro-yellow);
  box-shadow: 0 2px 8px var(--shadow);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  position: relative;
  min-height: 72px;
}

header img {
  height: 54px;
  margin-right: 14px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-left: 22px;
}
.main-nav a {
  position: relative;
  padding: 6px 0;
  font-family: 'Roboto Slab', serif;
  font-size: 1.05rem;
  color: var(--primary);
  transition: color 0.22s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: var(--secondary);
  border-radius: 3px;
  transition: width 0.3s;
  margin-top: 3px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--retro-orange);
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

.cta.primary {
  font-family: 'Roboto Slab', serif;
  background: var(--primary);
  color: var(--accent);
  padding: 11px 28px;
  margin-left: 36px;
  border-radius: var(--border-radius);
  font-weight: bold;
  font-size: 1.08rem;
  border: 2px solid var(--retro-yellow);
  box-shadow: 0 3px 10px 0 var(--shadow);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  position: relative;
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--retro-orange);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 6px 24px 0 var(--shadow);
}
.cta.secondary {
  background: var(--retro-muted);
  color: var(--retro-dark);
  border-radius: var(--border-radius);
  padding: 11px 25px;
  font-family: 'Roboto Slab', serif;
  font-weight: bold;
  border: 2px solid var(--retro-yellow);
  box-shadow: 0 3px 10px 0 var(--shadow);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-top: 18px;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--retro-orange);
  color: #fff;
  box-shadow: 0 6px 18px 0 var(--shadow);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  margin-left: 32px;
  color: var(--primary);
  background: none;
  border: none;
  z-index: 2001;
  border-radius: 10px;
  padding: 0 7px;
  transition: background 0.23s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--retro-yellow);
}

/****************************/
/* MOBILE NAVIGATION (SLIDE)*/
/****************************/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--retro-bg);
  box-shadow: 0 0 60px 0 rgba(38,93,141,.32);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 38px 32px 28px 24px;
  transition: transform 0.31s cubic-bezier(0.8,0.1,0.2,1), opacity 0.17s;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: var(--primary);
  font-size: 2rem;
  position: absolute;
  top: 24px; right: 32px;
  padding: 6px 14px;
  border-radius: 9px;
  z-index: 3200;
  border: 2px solid var(--retro-yellow);
  transition: background 0.17s, color 0.12s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--retro-yellow);
  color: var(--retro-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 48px;
}
.mobile-nav a {
  font-family: 'Roboto Slab', serif;
  font-size: 1.16rem;
  color: var(--primary);
  padding: 11px 0;
  border-bottom: 1.5px dotted var(--retro-yellow);
  transition: background 0.2s, color 0.2s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-yellow);
  color: var(--retro-dark);
}

/****************************/
/* HERO / BANNER SECTION    */
/****************************/
.hero {
  background: var(--retro-bg);
  border-bottom: 4px dotted var(--retro-yellow);
  margin-bottom: 60px;
  padding: 60px 0 46px 0;
  box-shadow: 0 16px 32px 0 var(--shadow);
}
.hero .container {
  align-items: flex-start;
  gap: 0;
}
.hero h1 {
  color: var(--primary);
  text-shadow: 2.5px 2.5px 0 var(--retro-yellow);
}
.hero p {
  color: var(--retro-dark);
  font-size: 1.18rem;
  margin-bottom: 25px;
  font-weight: 600;
}

/****************************/
/* SECTION SPACING PATTERNS */
/****************************/
.section, .about-story, .team, .values, .services-list, .resources-guides, .blog-spotlight, .active-workshops, .benefits, .services-foreign, .foreign-testimonials, .contact-section, .where-when, .cta-final, .thank-you, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--border-radius);
  background: var(--accent);
  box-shadow: 0 5px 20px 0 var(--shadow);
}

/****************************/
/* FLEX LAYOUTS - MANDATED */
/****************************/
.features ul, .service-highlights, .study-tips-cards, .featured-articles, .participant-testimonials, .testimonial-slider, .benefit-icons ul, .guide-list ul, .resource-link-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.services-list ul, .active-workshops ul, .team-member-list, .faq-accordion ul, .contact-info ul, .where-when ul, .next-steps-info ul, .values ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
}
.card-container, .services-overview .service-highlights, .study-tips-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--border-radius);
  background: var(--accent);
  box-shadow: 0 4px 18px 0 var(--shadow);
}
.content-grid, .service-highlights, .card-container, .resource-link-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section, .about-preview .text-section, .team-member-list {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card, .participant-testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: #fff9ea;
  border-radius: var(--border-radius);
  box-shadow: 0 3px 16px 0 var(--shadow);
  border: 2.5px dashed var(--retro-yellow);
  min-width: 270px;
  max-width: 385px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
/* For lab benefit icons */
.benefit-icons ul li {
  display: flex; align-items: center; gap: 13px;
  font-size: 1.07rem;
  background: var(--highlight);
  border-radius: 7px;
  padding: 12px 16px;
}

/****************************/
/* CARDS & BOX ELEMENTS     */
/****************************/
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--highlight);
  border-radius: var(--border-radius);
  box-shadow: 0 3px 16px 0 var(--shadow);
  border: 2px solid var(--retro-yellow);
  padding: 30px 30px 22px 30px;
  width: 320px;
  margin-bottom: 20px;
  transition: transform 0.20s, box-shadow 0.20s;
}
.service-card img {
  width: 54px; height: 54px; margin-bottom: 18px;
}
.service-card h3 {
  margin-bottom: 10px;
}
.service-card p {
  color: var(--retro-dark);
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.service-card .price {
  margin-top: 11px;
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
}
.service-card:hover, .service-card:focus {
  transform: translateY(-9px) scale(1.025);
  box-shadow: 0 12px 32px 0 var(--shadow);
  border-color: var(--primary);
}

/****************************/
/* FEATURES (Index Home)    */
/****************************/
.features ul {
  gap: 32px;
  justify-content: flex-start;
}
.features ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--retro-bg);
  border-radius: var(--border-radius);
  padding: 24px 20px 18px 20px;
  box-shadow: 0 3px 14px 0 var(--shadow);
  border: 2px solid var(--retro-yellow);
  max-width: 330px;
  width: 100%;
}
.features ul li img {
  width: 40px; height: 40px; margin-bottom: 7px;
}
.features ul li strong {
  font-size: 1.1rem;
  color: var(--primary);
  font-family: 'Roboto Slab', serif;
  margin-bottom: 8px;
}
.features ul li div {
  color: var(--retro-dark);
  font-size: 0.99rem;
}

/********************/
/* ABOUT/TEXT LISTS */
/********************/
.about-preview .text-section, .about-story .text-section, .team-member-list, .contact-section .text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-preview ul li, .about-story ul li, .team-member-list ul li, .values ul li {
  padding-left: 12px;
  position: relative;
}
.about-preview ul li:before, .about-story ul li:before, .values ul li:before{
  content: '⦿';
  color: var(--retro-orange);
  font-size: 0.95em;
  position: absolute;
  left: 0; top: 1px;
}

/********************/
/* TESTIMONIALS     */
/********************/
.testimonials, .testimonial-slider, .foreign-testimonials, .participant-testimonials {
  padding-top: 28px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 18px;
  align-items: stretch;
  justify-content: flex-start;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #553a28;
  margin-bottom: 1px;
  font-weight: 600;
}
.testimonial-card strong {
  color: var(--primary);
  font-size: 0.98rem;
  font-family: 'Roboto Slab', serif;
}

/********************/
/* BLOG/ARTICLES    */
/********************/
.featured-articles {
  gap: 28px;
}
.featured-articles article {
  background: var(--retro-bg);
  border: 2px dotted var(--retro-yellow);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px 0 var(--shadow);
  padding: 27px 22px 18px 22px;
  max-width: 350px;
}
.featured-articles article h3 {
  color: var(--retro-orange);
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.featured-articles .author {
  display: flex; align-items: center; gap: 9px;
  color: var(--retro-dark);
  font-size: 0.95rem;
  margin-top: 12px;
  font-style: italic;
}

/****************************/
/* CTA FINAL SECTION        */
/****************************/
.cta-final {
  background: var(--retro-orange);
  color: #fff;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 7px 28px 0 var(--shadow);
  margin-bottom: 60px;
}
.cta-final h2 {
  color: #fff;
  text-shadow: 1.5px 1.5px 0 var(--primary);
}
.cta-final .cta.primary {
  background: var(--secondary);
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}
.cta-final .cta.primary:hover, .cta-final .cta.primary:focus {
  background: var(--primary);
  color: #fff;
  border-color: #fff;
}

/****************************/
/* CONTACT/INFO SECTION     */
/****************************/
.contact-info ul, .where-when ul {
  background: var(--retro-muted);
  border-radius: var(--border-radius);
  padding: 19px 18px 15px 18px;
  font-size: 1.05rem;
  box-shadow: 0 1px 4px var(--shadow);
}
.where-when ul {
  background: var(--highlight);
}
.contact-info a, .where-when a {
  color: var(--primary);
  text-decoration: underline dotted var(--retro-orange) 2px;
  transition: color 0.18s;
}
.contact-info a:hover, .where-when a:hover {
  color: var(--retro-orange);
}

/****************************/
/* FOOTER                   */
/****************************/
footer {
  background: var(--primary);
  color: #fff;
  padding: 36px 0 14px 0;
  margin-top: 90px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  opacity: 0.88;
  transition: color 0.17s, opacity 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--retro-yellow);
  opacity: 1;
}
.footer-credits {
  font-size: 0.90rem;
  color: #ffe9b7;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 0;
}

/****************************/
/* THANK YOU PAGE           */
/****************************/
.thank-you-message {
  font-size: 1.13rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}
.next-steps-info ul li {
  padding-left: 11px;
  line-height: 1.7;
  position: relative;
}
.next-steps-info ul li:before {
  content: '➩';
  color: var(--secondary);
  font-size: 0.97em;
  position: absolute;
  left: -8px; top: 1px;
}

/****************************/
/* LEGAL/PRIVACY/GDPR STYLE */
/****************************/
.legal .text-section {
  padding: 10px 0 0 0;
  line-height: 1.65;
  color: var(--retro-dark);
}
.legal ul li {
  padding-left: 12px;
  position: relative;
}
.legal ul li:before {
  content: '•';
  color: var(--retro-orange);
  font-size: 0.93em;
  position: absolute;
  left: 0; top: 1px;
}

/****************************/
/* COOKIE CONSENT BANNER    */
/****************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 5000;
  background: var(--retro-bg);
  box-shadow: 0 -2px 14px var(--shadow);
  border-top: 3.5px dashed var(--retro-yellow);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  padding: 22px 18px 20px 18px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: cookieAppear 0.23s 0.16s both;
}
@keyframes cookieAppear {
  from { opacity: 0; transform: translateY(40px);} to { opacity: 1; transform: none;}
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  border-radius: 7px;
  font-size: 1rem;
  padding: 7px 19px;
  font-family: 'Roboto Slab', serif;
  border: 2px solid var(--retro-yellow);
  margin-right: 0px;
  margin-bottom: 0;
  background: var(--retro-yellow);
  color: var(--primary);
  font-weight: bold;
  margin-top: 0;
  transition: background 0.15s, color 0.15s, border 0.15s;
}
.cookie-banner button:focus, .cookie-banner button:hover {
  background: var(--retro-orange);
  color: #fff;
}
.cookie-banner button.cookie-settings-btn {
  background: var(--highlight);
  color: var(--retro-dark);
  border: 2px dashed var(--secondary);
}
.cookie-banner button.cookie-settings-btn:hover, .cookie-banner button.cookie-settings-btn:focus{
  background: var(--secondary);
  color: #fff;
}

/****************************/
/* COOKIE PREFERENCES MODAL */
/****************************/
.cookie-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(46,45,37,0.38);
  z-index: 5050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--accent);
  border: 3px solid var(--retro-yellow);
  border-radius: var(--border-radius);
  min-width: 340px;
  max-width: 95vw;
  box-shadow: 0 8px 48px 0 var(--shadow);
  padding: 38px 28px 24px 28px;
  z-index: 5100;
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: modalReveal .35s cubic-bezier(.2,.7,.4,1);
}
@keyframes modalReveal {
  from { transform: translateY(80px) scale(.97); opacity: .7 }
  to { transform: none; opacity: 1;}
}
.cookie-modal h2 {
  color: var(--retro-orange);
  margin-bottom: 8px;
  font-size: 1.28rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--retro-dark);
  font-weight: 600;
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--retro-yellow);
  width: 1.3em; height: 1.3em;
  margin-top: 0.2em;
}
.cookie-modal .cookie-category.essential label {
  color: var(--secondary);
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 13px;
}
.cookie-modal .modal-buttons button {
  padding: 8px 20px;
  border-radius: 8px;
}
.cookie-modal .close-modal {
  background: none;
  color: var(--retro-dark);
  border: 2px solid var(--retro-yellow);
  padding: 0 8px;
  font-size: 1.3rem;
  border-radius: 8px;
  transition: background 0.15s, color 0.12s;
}
.cookie-modal .close-modal:focus, .cookie-modal .close-modal:hover{
  background: var(--retro-yellow);
  color: #fff;
}

/****************************************/
/* RETRO & VINTAGE NOSTALGIA EXTRAS     */
/****************************************/
/* Striped line divider for some sections */
.section-divider {
  width: 90px;
  height: 4px;
  background:
    repeating-linear-gradient(90deg, var(--retro-yellow) 0 11px, var(--retro-orange) 11px 22px);
  border-radius: 3px;
  margin: 0 auto 32px auto;
  display: block;
}

/************************************/
/* MEDIA QUERIES & RESPONSIVE FLEX  */
/************************************/
@media (max-width: 1080px) {
  .container { max-width: 98vw; }
  .service-card { width: 100%; min-width: 240px; }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 11px;
    font-size: 0.98rem;
  }
  .service-card {
    padding: 17px 12px 18px 12px;
  }
  .features ul { gap: 18px; }
}
@media (max-width: 860px) {
  .main-nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 750px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .hero { padding: 44px 0 30px 0; }
  .section, .about-story, .team, .values, .services-list, .resources-guides, .blog-spotlight, .active-workshops, .benefits, .services-foreign, .foreign-testimonials, .contact-section, .where-when, .cta-final, .thank-you, .legal {
    padding: 25px 5px;
  }
  .service-card { padding: 19px 9px 14px 9px; }
}
@media (max-width: 670px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.33rem; }
  .features ul, .service-highlights, .study-tips-cards, .featured-articles, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .footer-nav {
    gap: 14px;
    font-size: 0.92rem;
  }
  .service-card { max-width: 100%; }
}
@media (max-width: 520px) {
  .container {
    padding-left: 3px;
    padding-right: 3px;
  }
  header .container { min-height: 60px; }
  header img { height: 36px;}
  .mobile-menu {
    padding: 18px 6px 8px 7px;
  }
  .hero { padding: 24px 0 12px 0; }
  .card-container, .service-highlights, .study-tips-cards, .testimonial-slider, .featured-articles {
    gap: 8px;
  }
  .footer-credits { font-size: 0.87rem; }
}

/************************************/
/* FLEX DIRECTIONS & RESPONSIVE     */
/************************************/
.text-image-section, .about-preview .text-section, .team-member-list {
  flex-direction: row;
}
@media (max-width: 768px) {
  .text-image-section, .about-preview .text-section, .team-member-list {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .hero .container {
    flex-direction: column;
    gap: 0;
  }
}

/****************************/
/* MICRO-INTERACTIONS       */
/****************************/
a, button, .service-card, .cta {
  transition: background 0.15s, color 0.16s, border 0.17s, box-shadow 0.20s, transform 0.20s;
}
.service-card:active, .cta:active {
  transform: scale(0.97);
}

/****************************/
/* UTILITY CLASSES          */
/****************************/
.hide { display: none !important; }

/****************************/
/* PRINT OPTIMIZATION       */
/****************************/
@media print {
  .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  header, footer { background: #fff !important; color: #000 !important; }
  body { background: #fff; }
  .service-card, .testimonial-card, .section, .content-wrapper, .card { box-shadow: none !important; border: 0 !important; }
}
