/* ----------------------------------------
   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,
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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #19336B;
  background: #FCFCFE;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

a {
  color: #1C8C59;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #12603B;
  outline: none;
}

:root {
  --primary: #19336B;
  --secondary: #1C8C59;
  --accent: #F4F5F9;
  --pastel-blue: #DDE8FA;
  --pastel-green: #D9F6EA;
  --pastel-yellow: #FFF8D9;
  --pastel-pink: #FAE1E8;
  --pastel-lilac: #F3EAFE;
  --neutral: #FCFCFE;
  --danger: #E96B6B;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --shadow-card: 0 4px 24px 0 rgba(31,58,146,0.06);
  --shadow-hover: 0 8px 32px 0 rgba(31,58,146,0.09);
}

/* ----------------------------------------
   TYPOGRAPHY
---------------------------------------- */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
}
p, ul, li, blockquote {
  font-size: 1rem;
  color: #2B3555;
}
strong, b {
  font-weight: 600;
}

ul {
  margin-left: 20px;
  margin-bottom: 20px;
}
li {
  padding-left: 0;
  margin-bottom: 8px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: transparent;
}

/* ----------------------------------------
   HEADER & NAVIGATION
---------------------------------------- */
header {
  background: var(--neutral);
  box-shadow: 0 0 20px 0 rgba(31,58,146,0.04);
  position: relative;
  z-index: 21;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 74px;
  min-height: 74px;
  transition: height 0.2s;
}
.logo {
  max-height: 44px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 32px;
  border: none;
  padding: 12px 28px;
  box-shadow: var(--shadow-card);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  cursor: pointer;
  outline: none;
  text-align: center;
  margin-left: 18px;
  min-width: 180px;
}
.cta-button.primary {
  background: var(--primary);
  color: #FFF;
  box-shadow: 0 4px 16px 0 rgba(31,58,146,0.09);
}
.cta-button.secondary {
  background: var(--pastel-blue);
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 2px 8px 0 rgba(31,58,146,0.08);
}
.cta-button:hover,
.cta-button:focus {
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-hover);
  background: var(--secondary);
  color: #fff;
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: var(--primary);
  color: #FFF;
}

/* Hamburger for Mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--primary);
  margin-left: 8px;
  cursor: pointer;
  z-index: 31;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FCFCFE;
  box-shadow: 0 6px 36px rgba(25,51,107,0.09);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.6,.2,.3,1);
  z-index: 30;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 24px 0 0;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 40;
  opacity: 0.82;
  transition: opacity 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  opacity: 1;
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  gap: 26px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 14px 0;
  width: 100vw;
  text-align: center;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-green);
  color: var(--secondary);
}

/* Hide desktop nav on mobile */
@media (max-width: 1024px) {
  .main-nav, .cta-button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Ensure mobile menu covers header */
@media (max-width: 768px) {
  header .container { height: 56px; min-height: 56px; }
  .mobile-menu {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-width: 0;
    min-height: 0;
  }
}

/* ----------------------------------------
   HERO SECTION
---------------------------------------- */
.hero {
  min-height: 56vh;
  background: linear-gradient(120deg, var(--pastel-blue) 85%, var(--pastel-lilac) 100%);
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  padding-top: 46px;
  padding-bottom: 46px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero .content-wrapper {
  gap: 16px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.hero h2 {
  font-size: 1.65rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.18rem;
  max-width: 560px;
  color: #324275;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 32px;
    padding-bottom: 32px;
    min-height: unset;
  }
  .hero .container { padding-left: 8vw; padding-right: 8vw; }
}

/* ----------------------------------------
   FEATURES & CARDS
---------------------------------------- */
.features {
  background: var(--pastel-green);
}
.features .content-wrapper {
  gap: 30px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-card {
  flex: 1 1 240px;
  max-width: 290px;
  background: #FFF;
  border-radius: 22px;
  padding: 26px 20px 22px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  min-width: 210px;
  transition: box-shadow 0.19s, transform 0.16s;
}
.feature-card img {
  height: 44px; width: 44px;
  margin-bottom: 4px;
  background: var(--pastel-blue);
  border-radius: 50%;
  padding: 7px;
  box-shadow: 0 2px 10px 0 rgba(31,58,146,0.06);
}
.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px) scale(1.031);
}
.feature-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 3px;
}
.feature-card p {
  font-size: 0.98rem;
}

/* ----------------------------------------
   SERVICE CARDS / SERVICES OVERVIEW
---------------------------------------- */
.services-overview {
  background: linear-gradient(112deg, var(--pastel-lilac) 50%, var(--neutral));
}
.services-overview .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: #FFF;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 24px 18px 18px 18px;
  min-width: 220px;
  max-width: 285px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.15s;
  gap: 11px;
  position: relative;
}
.service-card h3 {
  color: var(--secondary);
  font-size: 1.1rem;
}
.service-card .price {
  color: var(--primary);
  background: var(--pastel-yellow);
  font-family: var(--font-display);
  font-size: 0.99rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 2px 10px;
  margin-top: 7px;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-7px) scale(1.025);
  border: 1.5px solid var(--secondary);
}
.service-card p {
  line-height: 1.5;
}

/* SERVICES LIST PAGE */
.services-section {
  background: var(--pastel-blue);
  padding: 40px 0 55px 0;
}
.services-section .content-wrapper { gap: 34px; }
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  border-radius: 19px;
  box-shadow: var(--shadow-card);
  padding: 26px 20px;
  min-width: 220px;
  flex: 1 1 340px;
  margin-bottom: 20px;
}
.service-item h2 {
  font-size: 1.18rem;
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 2px;
}
.service-item .price {
  color: var(--secondary);
  background: var(--pastel-green);
  border-radius: 8px;
  padding: 2px 10px;
  margin-top: 6px;
  font-size: 0.99rem;
  font-family: var(--font-display);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 500;
  margin-top: 12px;
  transition: color 0.13s, text-decoration 0.14s;
}
.link-arrow::after {
  content: '→';
  margin-left: 5px;
  font-size: 1.1em;
  transition: margin-left 0.17s;
  opacity: 0.8;
}
.link-arrow:hover, .link-arrow:focus {
  color: var(--primary);
  text-decoration: underline;
}
.link-arrow:hover::after {
  margin-left: 13px;
}

/* ----------------------------------------
   TESTIMONIALS
---------------------------------------- */
.testimonials {
  background: var(--pastel-pink);
  padding: 46px 0;
}
.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
}
.testimonial-card {
  background: #FFF;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 220px;
  flex: 1 1 290px;
  margin-bottom: 20px;
  padding: 28px 24px 24px 26px;
  transition: box-shadow 0.17s, transform 0.12s;
  border-left: 7px solid var(--secondary);
}
.testimonial-card p {
  color: #1D2544;
  font-size: 1.05rem;
  line-height: 1.7;
}
.testimonial-card .testimonial-author {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  margin-top: 8px;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px) scale(1.022);
}

/* ----------------------------------------
   CTA SECTIONS
---------------------------------------- */
.cta-section {
  background: var(--pastel-yellow);
  padding: 40px 0 55px 0;
}
.cta-section .content-wrapper {
  align-items: center;
  gap: 15px;
  text-align: center;
}
.cta-section h2 {
  color: var(--secondary);
}

/* ----------------------------------------
   FOOTER STYLES
---------------------------------------- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 38px 0 16px 0;
  font-size: 0.99rem;
  margin-top: 32px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px 20px;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.footer-branding img {
  width: 38px; height: 38px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  align-items: center;
}
.footer-nav a {
  color: #F3EAFE;
  opacity: 0.92;
  transition: opacity 0.15s, color 0.17s;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  color: var(--pastel-yellow);
}
footer address {
  font-style: normal;
  opacity: 0.70;
  color: #E8EAF7;
  font-size: 0.98rem;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a img {
  width: 30px; height: 30px;
  opacity: 0.83;
  filter: grayscale(20%);
  transition: filter 0.15s, opacity 0.17s;
}
.footer-social a:hover img, .footer-social a:focus img {
  opacity: 1;
  filter: none;
}

/* ----------------------------------------
   ABOUT/TEAM/FAQ/CONTACT/LEGAL PAGES
---------------------------------------- */
.about-section, .why-choose-us, 
.privacy-section, .gdpr-section,
.terms-section, .cookie-section,
.contact-section, .faqs-section, .thank-you-section, .team-section {
  background: var(--pastel-lilac);
  margin-bottom: 60px;
  padding: 40px 0;
}
.text-section {
  background: #FFF;
  border-radius: 15px;
  box-shadow: var(--shadow-card);
  padding: 26px 20px;
  margin-bottom: 22px;
}
.team-intro, .team-values, .contact-prompt {
  background: var(--pastel-yellow);
  border-radius: 13px;
  padding: 20px 16px;
  margin-bottom: 18px;
}
.attorney-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.attorney-profile {
  background: #FFF;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 22px 18px;
  flex: 1 1 265px;
  max-width: 320px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.attorney-profile:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.012);
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-item {
  background: #FFF;
  border-radius: 11px;
  box-shadow: var(--shadow-card);
  padding: 20px 16px;
  flex: 1 1 330px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow 0.15s, transform 0.1s;
}
.faq-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .attorney-profiles, .feature-grid, .service-cards, .service-list, .faq-list, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
}
.contact-prompt {
  margin-top: 25px;
  text-align: center;
  font-size: 1.07rem;
}
.contact-prompt a {
  color: var(--secondary);
  font-weight: 500;
  margin-left: 6px;
  transition: text-decoration 0.14s;
}
.contact-prompt a:hover { text-decoration: underline; }

.map-embed {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 20px;
  margin-bottom: 12px;
}

/* ----------------------------------------
   COOKIE CONSENT BANNER
---------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 800;
  background: #fff;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -3px 32px 0 rgba(25,51,107,0.08);
  border-top: 2px solid var(--pastel-blue);
  padding: 22px 19px 18px 19px;
  width: 100%;
  transition: transform 0.22s;
  min-height: 70px;
}
.cookie-banner p {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 12px;
  color: var(--primary);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 13px;
  margin-top: 3px;
}
.cookie-button {
  font-size: 1rem;
  font-family: var(--font-display);
  border-radius: 25px;
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  background: var(--pastel-blue);
  color: var(--primary);
  transition: background 0.15s, color 0.15s, box-shadow 0.13s, transform 0.1s;
  box-shadow: var(--shadow-card);
  margin-bottom: 2px;
}
.cookie-button.accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-button:hover,
.cookie-button:focus {
  background: var(--primary);
  color: #fff;
  transform: scale(1.03);
}
.cookie-button.settings {
  background: var(--pastel-lilac);
  color: var(--secondary);
}
.cookie-button.reject {
  background: var(--pastel-pink);
  color: var(--danger);
}

@media (max-width: 680px) {
  .cookie-banner { padding: 20px 5vw; font-size: 0.96rem; }
  .cookie-banner .cookie-btns { flex-direction: column; gap: 10px; }
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(31, 51, 96, 0.28);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 420px;
  width: 96vw;
  box-shadow: 0 8px 48px 0 rgba(31,58,146,0.18);
  padding: 34px 24px 27px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: showModal 0.25s cubic-bezier(.4,1,.3,1);
  z-index: 990;
}
@keyframes showModal {
  from { transform: translateY(60px) scale(.95); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 6px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--pastel-blue);
  border-radius: 9px;
  padding: 12px 13px;
}
.cookie-category label {
  flex: 1;
  font-size: 1rem;
  color: var(--primary);
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--secondary);
  transform: scale(1.18);
  margin-left: 2px;
}
.cookie-category input[type='checkbox']:disabled {
  accent-color: var(--secondary);
  opacity: 0.45;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .cookie-button {
  min-width: 100px;
  padding: 8px 13px;
}

/* -----------------------------------------
   RESPONSIVE & FLEXBOX ADAPTIONS
----------------------------------------- */
@media (max-width: 992px) {
  .container { padding-left: 7vw; padding-right: 7vw; }
  .feature-grid, .service-cards, .service-list {
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .container { max-width: 99vw; }
}
@media (max-width: 768px) {
  .container {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .content-wrapper, .section {
    padding: 24px 6px;
    margin-bottom: 34px;
  }
  .attorney-profile, .feature-card, .service-card, .service-item, .faq-item, .testimonial-card {
    min-width: 0;
    max-width: 100vw;
  }
  .footer-nav { flex-wrap: wrap; gap: 12px; }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 420px) {
  h1, .h1 { font-size: 1.45rem; }
  h2, .h2 { font-size: 1.18rem; }
}
/* Improve spacing between elements (override) */
.card-container, .card-grid, .feature-grid, .service-cards, .service-list,
.testimonial-slider, .faq-list, .attorney-profiles {
  gap: 24px;
}
.card, .service-card, .feature-card, .service-item, .faq-item, .testimonial-card,
.attorney-profile {
  margin-bottom: 20px;
}

/* For text-image sections */
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Accessibility: Focus states for all interactive elements */
a:focus, button:focus, .cta-button:focus, .cookie-button:focus, input:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 1.5px;
  box-shadow: 0 0 0 2px var(--pastel-green);
}

/* Subtle hover animation for all cards */
.card:hover, .service-card:hover, .feature-card:hover, .service-item:hover, .faq-item:hover, .testimonial-card:hover, .attorney-profile:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.01);
}

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