:root {
  --bg: #ece9e2;
  --green: #0a2c1c;
  --ink: #252631;
  --beige: #cc8f57;
  --light: #f2efe8;
  --muted: #cbc6bb;
  --gold: #a58846;
  --text-soft: #5f584b;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #252525;
  line-height: 1.55;
}

h1, h2, h3, p { margin: 0; }

a { text-decoration: none; }

.page-shell {
  width: min(100%, 95vw);
  margin: 22px auto;
  background: #ffffff;
  border: 0;
  box-shadow: 0 20px 40px rgba(25, 22, 15, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: 3fr 1fr;
  min-height: 440px;
}

.hero-left {
  background: var(--green);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 40px 30px;
}

.hero-center {
  background: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  flex-direction: column;
}

.hero-left::before,
.hero-left::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-color: rgba(231, 222, 202, 0.35);
  pointer-events: none;
}

.hero-left::before {
  top: 28px;
  left: 28px;
  border-top: 1px solid rgba(231, 222, 202, 0.35);
  border-left: 1px solid rgba(231, 222, 202, 0.35);
}

.hero-left::after {
  right: 28px;
  bottom: 28px;
  border-right: 1px solid rgba(231, 222, 202, 0.35);
  border-bottom: 1px solid rgba(231, 222, 202, 0.35);
}

.brand-wrap {
  text-align: center;
  color: #e7deca;
  max-width: 520px;
}

.site-logo {
  display: block;
  margin: 0 auto 12px;
  width: 120px;
  height: auto;
}

.brand-mark {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.2vw, 2.6rem);
  letter-spacing: 0.03em;
  line-height: 1.28;
}

.brand-sub {
  margin-top: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 0.72rem;
  color: #d6c79f;
  line-height: 1.5;
}

/* Removed .hero-right (image column) — layout now uses two columns (brand + center actions) */

.ribbon-links {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.ribbon-links a {
  text-align: center;
  text-transform: uppercase;
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #004433;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding: 14px 16px;
  line-height: 1.2;
  transition: background-color 140ms ease;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.ribbon-links a:hover {
  background: #e7deca;
  border-color: #e7deca;
}

.lawyers {
  background: var(--green);
  padding: 34px 30px 40px;
}

.lawyers h2 {
  font-family: "Playfair Display", serif;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 22px;
  text-align: center;
}

.lawyer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}

.lawyer-photo {
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f5f5f5;
  filter: none;
  margin-bottom: 8px;
}

.p1 { background-image: url("https://nextlegalservices.vercel.app/assets/legacy/team/adv-beena-pillai.webp"); }
.p2 { background-image: url("https://nextlegalservices.vercel.app/assets/legacy/team/promy-k-gangadharan.webp"); }

.lawyer-card h3 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 4px;
}

.lawyer-card p {
  color: #e7deca;
  font-size: 0.78rem;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(231, 222, 202, 0.3);
}

.content {
  padding: 42px 34px;
}

.content h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.7vw, 2.2rem);
  color: #241f15;
}

.content p {
  margin-bottom: 12px;
  max-width: 78ch;
  color: var(--text-soft);
}

.content ul {
  margin: 0;
  padding-left: 22px;
  line-height: 1.6;
}

.content li {
  margin-bottom: 4px;
}

.light { background: #ffffff; }
.light-alt { background: #ffffff; }
.dark { background: var(--green); color: #ffffff; }
.white-bg { background: #ffffff; }
.dark h2 { color: #ffffff; }
.dark p, .dark li { color: #e7deca; }

.why-section {
  padding: 48px 34px;
  background: #ffffff;
}

.why-section h2 {
  color: var(--ink);
}

.why-section .section-sub {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 28px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.why-card {
  border: 2px solid var(--green);
  border-radius: 12px;
  padding: 18px 16px;
  background: #ffffff;
  transition: all 140ms ease;
}

.why-card:hover {
  border-color: #002d22;
  box-shadow: 0 4px 12px rgba(0, 68, 51, 0.15);
}

.why-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--green);
  color: var(--green);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.why-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  color: #252631;
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.82rem;
  color: #5f584b;
  line-height: 1.5;
  margin: 0;
}

.testimonials-block {
  background: var(--green);
  color: #ffffff;
  padding: 42px 30px 48px;
}

.testimonials-block h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center;
  margin-bottom: 8px;
  color: #ffffff;
}

.testimonials-sub {
  text-align: center;
  font-size: 0.95rem;
  color: #e7deca;
  margin-bottom: 28px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.testimonial-card p {
  color: #e7deca;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.testimonial-card h3 {
  color: #ffffff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0;
}

.contact-section {
  background: #ffffff;
}

.contact-section .band-image {
  background-size: cover;
  background-position: center;
}

.contact-info {
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  margin-bottom: 24px;
  color: var(--ink);
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-column p {
  color: #5f584b;
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.contact-column p strong {
  color: var(--ink);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  transition: all 140ms ease;
}

.social-links a i {
  font-size: 0.95rem;
  line-height: 1;
}

.social-links a:hover {
  background: var(--green);
  color: #ffffff;
}

.site-footer {
  background: var(--green);
  color: #e7deca;
  padding: 16px 34px;
  font-size: 0.92rem;
  text-align: center;
}

.whatsapp-floating {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 200ms ease;
  z-index: 999;
  text-decoration: none;
}

.whatsapp-floating:hover {
  background: #20ba5d;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  transform: scale(1.1);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.cta-btn {
  background: var(--green);
  color: #ffffff;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 140ms ease;
}

.contact-icon {
  margin-right: 7px;
  display: inline-block;
}

.cta-btn:hover {
  background: #002d22;
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 290px;
}

.split-band.white-bg {
  background: var(--green);
}

.split-band.white-bg .band-text h2 {
  color: #ffffff;
}

.split-band.white-bg .band-text p {
  color: #e7deca;
}

.split-band.white-bg .band-text ul {
  color: #e7deca;
}

.split-band.white-bg .band-text li {
  color: #e7deca;
}

.band-text {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.band-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  margin-bottom: 12px;
  color: #292519;
}

.kicker {
  margin-bottom: 8px;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6a6456;
}

.brand-wrap {
  text-align: center;
  color: #e7deca;
  width: 100%;
  max-width: none;
  padding: 0 24px;
}

.brand-mark {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 3rem);
  letter-spacing: 0.02em;
  line-height: 1.25;
  width: 100%;
  box-sizing: border-box;
}

.brand-sub {
  margin-top: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 0.78rem;
  color: #d6c79f;
  line-height: 1.6;
  width: 100%;
}
}

.img-a { background-image: url("https://images.unsplash.com/photo-1460472178825-e5240623afd5?auto=format&fit=crop&w=1200&q=90"); }
.img-b { background-image: url("https://images.unsplash.com/photo-1444653389962-8149286c578a?auto=format&fit=crop&w=1200&q=90"); }
.img-c { background-image: url("https://images.unsplash.com/photo-1556155092-490a1ba16284?auto=format&fit=crop&w=1200&q=90"); }
.img-d { background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1200&q=90"); }
.img-hero { background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=90"); }
.img-transactions { background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=90"); }
.img-building { background-image: url("https://images.unsplash.com/photo-1479839672679-a46483c0e7c8?auto=format&fit=crop&w=1200&q=90"); }

.cream { background: #ffffff; }

.lawyer-section .band-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #292519;
  margin-bottom: 16px;
  line-height: 1.1;
}

.lawyer-section .band-text p {
  font-size: 1.05rem;
  color: #6a6237;
  margin-bottom: 12px;
}

.olive-block {
  background: var(--green);
  color: #ffffff;
  padding: 34px 30px 40px;
}

.olive-block.white-bg {
  background: #ffffff;
  color: #252631;
}

.olive-block.white-bg h2 {
  color: #252631;
}

.olive-block.white-bg p,
.olive-block.white-bg li,
.olive-block.white-bg strong {
  color: #252631;
}

.olive-block h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  margin-bottom: 18px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.practice-card { background: transparent; }

.practice-image {
  aspect-ratio: 1.6 / 1;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
  border-radius: 10px;
  filter: none;
}

.pi-1 { background-image: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=900&q=90"); }
.pi-2 { background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=900&q=90"); }
.pi-3 { background-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=900&q=90"); }

.practice-card h3 {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.practice-card p {
  color: #e7deca;
  font-size: 0.86rem;
}

.olive-block.white-bg .practice-card h3 {
  color: #252631;
}

.olive-block.white-bg .practice-card p {
  color: #5f584b;
}

.icon-info p { max-width: 56ch; }

.icon-list {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  color: #5f584b;
}

.split-band.white-bg .icon-list li {
  color: #e7deca;
}

.icon-bullet {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.testimonials .section-sub {
  margin-top: -8px;
  margin-bottom: 22px;
  color: #e7deca;
  font-size: 0.95rem;
  max-width: 68ch;
}

.quote-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.quote-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: #e7deca;
  font-size: 0.88rem;
  line-height: 1.5;
}

.quote-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e7deca;
}

.programs-section {
  background: #ffffff;
  color: #252631;
}

.programs-section .section-sub {
  color: #5f584b;
}

.programs-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 28px;
}

.programs-column h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: #252631;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--green);
  padding-bottom: 12px;
}

.audience-list,
.highlights-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.audience-list li,
.highlights-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  color: #5f584b;
  font-size: 0.92rem;
  line-height: 1.5;
}

.program-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.programs-cta {
  border-top: 1px solid #d0d0d0;
  padding-top: 22px;
}

.programs-cta p {
  margin: 0 0 10px 0;
  color: #252631;
  font-size: 0.95rem;
  line-height: 1.6;
}

.programs-cta p:first-child {
  font-weight: 600;
  color: var(--ink);
}

.join-now-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 28px;
  background: #25d366;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: 6px;
  transition: all 200ms ease;
  border: 2px solid #25d366;
}

.join-now-btn:hover {
  background: #20ba5d;
  border-color: #20ba5d;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quote-card {
  position: relative;
  border: 1px solid rgba(230, 220, 198, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border-radius: 18px;
  padding: 22px 20px 18px;
  min-height: 220px;
  overflow: hidden;
}

.quote-card p {
  color: #e7deca;
  font-size: 0.84rem;
  margin-bottom: 14px;
}

.quote-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0;
  text-transform: none;
  color: #ffffff;
  margin-bottom: 14px;
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(231, 222, 202, 0.95), rgba(255, 255, 255, 0.1));
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.quote-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.quote-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: #e7deca;
  font-size: 0.88rem;
  line-height: 1.5;
}

.quote-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e7deca;
}

.contact-block h2 { margin-bottom: 16px; }

.contact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

.contact-columns p {
  margin: 0;
  font-size: 0.88rem;
}

.deliverables-section {
  background: var(--green);
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

.deliverables-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: #e7deca;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.deliverable-card {
  border-radius: 16px;
  padding: 28px 20px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-white {
  background: #ffffff;
  color: #004433;
  border: none;
}

.card-green {
  background: transparent;
  border: 2px solid #e7deca;
  color: #e7deca;
}

.card-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1;
}

.deliverable-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.card-white p {
  color: #004433;
}

.card-green p {
  color: #e7deca;
}

.card-wide {
  grid-column: span 2;
}

@media (max-width: 860px) {
  .deliverables-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 28px;
  }

  .deliverables-header h2 {
    font-size: 1.8rem;
  }

  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .card-wide {
    grid-column: span 1;
  }

  .hero,
  .split-band,
  .testimonials-grid,
  .practice-grid,
  .testimonial-grid,
  .why-grid,
  .programs-content { grid-template-columns: 1fr; }

  .hero {
    min-height: unset;
  }

  .page-shell {
    width: 100%;
    margin: 0;
  }

  .hero-left,
  .hero-right,
  .hero-center {
    min-height: 280px;
  }

  .hero-left {
    padding: 30px 20px;
  }

  .brand-wrap {
    max-width: 320px;
  }

  .hero-right {
    padding: 18px 0;
  }

  .hero-center {
    padding: 30px 20px;
  }

  .ribbon-links {
    width: min(340px, 90%);
  }

  .lawyers {
    padding: 30px 20px 32px;
  }

  .lawyer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .lawyer-photo {
    height: 170px;
  }

  .content {
    padding: 34px 22px;
  }

  .band-text,
  .olive-block {
    padding: 28px 20px;
  }

  .split-band {
    min-height: unset;
  }

  .band-image {
    min-height: 240px;
  }

  .cta-row {
    gap: 8px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .contact-details,
  .contact-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-info {
    padding: 28px 20px;
  }

  .why-section {
    padding: 34px 20px;
  }

  .why-card {
    padding: 16px 14px;
  }

  .programs-section {
    padding: 28px 20px;
  }

  .programs-column h3 {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .programs-cta {
    padding-top: 18px;
  }

  .site-footer {
    text-align: center;
    padding: 14px 18px;
    font-size: 0.8rem;
  }
}

@media (max-width: 520px) {
  .hero-left::before,
  .hero-left::after {
    width: 60px;
    height: 60px;
  }

  .hero-left::before {
    top: 14px;
    left: 14px;
  }

  .hero-left::after {
    right: 14px;
    bottom: 14px;
  }

  .hero-left {
    padding: 28px 18px;
    min-height: 240px;
    place-items: start; /* align content to the top-left */
  }

  .hero-center {
    min-height: 220px;
    align-items: start;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-right {
    min-height: 240px;
  }

  /* Left-align brand text on small screens for equal/consistent layout */
  .brand-wrap {
    max-width: 100%;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    text-align: left;
  }

  .brand-mark {
    font-size: 1.3rem;
    letter-spacing: 0.02em;
    line-height: 1.25;
    padding: 0;
    text-align: left;
  }

  .brand-sub {
    margin-top: 0.6rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    line-height: 1.4;
    padding: 0;
    text-align: left;
  }
  /* Center buttons on mobile while keeping brand text left-aligned */
  .ribbon-links {
    max-width: 320px;
    width: 100%;
    gap: 10px;
    align-items: center;
    margin: 12px 0;
    margin-left: auto;
    margin-right: auto;
  }

  .ribbon-links a {
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 320px;
    display: block;
    box-sizing: border-box;
  }

  .lawyer-grid {
    grid-template-columns: 1fr;
  }

  .lawyer-photo {
    height: 180px;
  }

  .ribbon-links a,
  .cta-btn {
    font-size: 0.8rem;
    padding: 11px 12px;
  }

  .hero-center {
    padding: 24px 16px;
    min-height: 260px;
  }

  .ribbon-links {
    max-width: 250px;
    gap: 10px;
  }

  .content {
    padding: 28px 16px;
  }

  .testimonials-block {
    padding: 30px 16px 34px;
  }

  .testimonial-card {
    min-height: unset;
    padding: 18px;
  }

  .contact-info h2 {
    margin-bottom: 14px;
  }

  .contact-column p {
    font-size: 0.9rem;
  }

  .social-links {
    gap: 10px;
  }

  .band-text,
  .olive-block,
  .lawyers {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Remove decorative band images on small screens to avoid large empty gaps */
  .band-image {
    display: none !important;
    min-height: 0 !important;
    height: 0 !important;
  }

  .practice-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .quote-card {
    padding: 18px 16px;
    min-height: unset;
  }

  .quote-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .quote-card li {
    font-size: 0.84rem;
    padding-left: 16px;
    margin-bottom: 8px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-card {
    padding: 14px 12px;
  }

  .why-card h3 {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .why-card p {
    font-size: 0.78rem;
  }

  .why-kicker {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
    margin-bottom: 10px;
  }

  .deliverables-section {
    padding: 28px 16px;
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .deliverables-header h2 {
    font-size: 1.4rem;
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .deliverable-card {
    padding: 20px 16px;
    min-height: 140px;
  }

  .card-number {
    font-size: 1.6rem;
  }

  .deliverable-card p {
    font-size: 0.88rem;
  }

  .programs-content {
    gap: 24px;
    margin-bottom: 20px;
  }

  .programs-column h3 {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .audience-list li,
  .highlights-list li {
    font-size: 0.88rem;
    gap: 12px;
    margin-bottom: 12px;
  }

  .program-icon {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
  }

  .programs-cta {
    padding-top: 14px;
    border-top: 1px solid #d9d3c5;
  }

  .programs-cta p {
    font-size: 0.88rem;
    margin-bottom: 8px;
  }

  .join-now-btn {
    font-size: 0.85rem;
    padding: 10px 22px;
    margin-top: 12px;
  }

  .whatsapp-floating {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }

  .site-footer {
    font-size: 0.75rem;
    padding: 12px 14px;
  }

  .site-footer p {
    margin-bottom: 6px;
  }
}
