
:root {
  --accent: #1f6feb;
  --bg: #f7f9fc;
  --muted: #667085;
  --card: #ffffff;
  /* Footer variables */
  --white: #ffffff;
  --gray-400: #9ca3af;
  --primary: #2563eb;
}
*{box-sizing:border-box}
body{font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; margin:0; background:var(--bg); color:#0f172a; line-height:1.5}
.container{max-width:1100px; margin:0 auto; padding:24px}
.site-header{background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/images/header.jpg') no-repeat center center; background-size: cover; border-bottom:1px solid #e6eaf0; position:sticky; top:0; z-index:40; color: white;}
.site-header .container {
  padding: 15px 24px;
}

.site-header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.site-header .logo-text {
  color: white !important;
  -webkit-text-fill-color: white !important;
}

.site-header .nav a {
  color: white !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.site-header .nav a:hover {
  color: #e2e8f0 !important;
}

.site-header .btn.ghost {
  color: white !important;
  border-color: white !important;
}

.site-header .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.logo-container {
  display: flex;
  flex-direction: column;
{{ ... }}
  gap: 4px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 15px;
}

.tagline {
  font-size: 1rem;
  color: #000000;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align: left;
  margin-left: 110px;
  margin-top: -29px;
  line-height: 0.5;
  white-space: nowrap;
}

.logo-img {
  height: 95px; /* Reduced from 40px */
  width: auto;
  transition: transform 0.5s ease;
}

.logo:hover .logo-img {
  transform: scale(1.05); /* Subtle hover effect */
}

.logo-text {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.25rem; /* Reduced from 1.5rem */
  background: linear-gradient(90deg, var(--accent), #4f46e5);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  margin-left: -1px; /* Prevents text from wrapping */
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav a:not(.btn):hover {
  color: var(--accent);
  background: rgba(31, 111, 235, 0.05);
}

.auth-buttons {
  display: flex;
  gap: 12px;
  margin-left: 20px;
  align-items: center;
}

.nav .btn {
  position: relative;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transform: translateZ(0);
}

.nav .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav .btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 8.5px 20px;
  overflow: hidden;
  z-index: 1;
}

.nav .btn.ghost::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(31, 111, 235, 0.1);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
  transition: all 0.6s ease;
  z-index: -1;
}

.nav .btn.ghost:hover {
  background: rgba(31, 111, 235, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 111, 235, 0.15);
  color: var(--accent);
}

.nav .btn.ghost:active {
  transform: translateY(0);
  transition: all 0.1s ease;
}

.nav .btn.ghost:hover::after {
  opacity: 1;
  transform: scale(25, 25);
}

.nav .btn:not(.ghost) {
  background: linear-gradient(135deg, var(--accent), #4a90e2);
  color: white;
  border: none;
  position: relative;
  z-index: 1;
}

.nav .btn:not(.ghost)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #4a90e2, var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav .btn:not(.ghost):hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 16px rgba(31, 111, 235, 0.25);
}

.nav .btn:not(.ghost):hover::before {
  opacity: 1;
}

.nav .btn:active {
  transform: translateY(0) scale(0.99);
  transition: all 0.1s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Add a subtle pulse animation to the signup button */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31, 111, 235, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(31, 111, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 111, 235, 0); }
}

.nav .btn:not(.ghost) {
  animation: pulse 2s infinite;
}

.nav .btn:not(.ghost):hover {
  animation: none;
}
/* Hero Section with Video Background */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.hero-copy h1 {
  font-size: 3.5rem;
  margin: 0 0 1.5rem;
  line-height: 1.2;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-copy p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Button animations */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.hero-ctas .btn {
  margin: 0;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform, box-shadow;
  box-shadow: 0 4px 12px rgba(31, 111, 235, 0.3);
}

.hero-ctas .btn:first-child {
  background: var(--accent);
  border: 2px solid var(--accent);
  animation: pulse 3s infinite;
}

.hero-ctas .btn.ghost {
  background: transparent;
  border: 2px solid white;
  color: white;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Hover effects */
.hero-ctas .btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(31, 111, 235, 0.4);
  z-index: 1;
}

.hero-ctas .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Ripple effect */
.hero-ctas .btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.hero-ctas .btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(100, 100);
    opacity: 0;
  }
}

/* Button press effect */
.hero-ctas .btn:active {
  transform: translateY(1px) scale(0.98);
  transition: transform 0.1s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }
  
  .hero-copy h1 {
    font-size: 2.5rem;
  }
  
  .hero-copy p {
    font-size: 1.1rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 2rem;
  }
  
  .hero-copy p {
    font-size: 1rem;
  }
}
.btn{display:inline-block}
.btn{display:inline-block; padding:12px 24px; background:var(--accent); color:#fff; border-radius:8px; text-decoration:none; font-weight:500; border:none; cursor:pointer; transition:all 0.3s ease; box-shadow:0 2px 4px rgba(0,0,0,0.1); font-size:16px; line-height:1.5}
.btn:hover{transform:translateY(-2px); box-shadow:0 4px 8px rgba(0,0,0,0.15)}
.btn:active{transform:translateY(0); box-shadow:0 2px 4px rgba(0,0,0,0.1)}
.btn.ghost{background:transparent; border:2px solid var(--accent); color:var(--accent); padding:10px 20px; border-radius:8px; text-decoration:none; transition:all 0.3s ease}
.btn.ghost:hover{background:rgba(31, 111, 235, 0.1); transform:translateY(-2px); box-shadow:0 4px 8px rgba(0,0,0,0.1)}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* How it Works Section */
.step-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.step-section h2, .services h2, .testimonials h2, .contact h2 {
  font-size: 2.5rem;
  margin-bottom: 50px !important;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.step-section h2:after, .services h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--accent);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  padding: 20px 0;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  background: var(--card);
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 111, 235, 0.1);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  will-change: transform, opacity, box-shadow;
  backface-visibility: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}

.step:hover::before {
  transform: scaleX(1);
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

.step:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 15px 40px rgba(31, 111, 235, 0.15);
}

.step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(31, 111, 235, 0.3);
  transition: all 0.4s ease;
}

.step:hover strong {
  transform: scale(1.1) rotate(10deg);
}

.step h3 {
  color: #1e293b;
  font-size: 1.3rem;
  margin: 15px 0 12px;
  transition: color 0.3s ease;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.step:hover h3,
.step:hover p {
  color: #0f172a;
}

.step strong {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 8px rgba(31, 111, 235, 0.2);
}

.step h3 {
  margin: 16px 0 12px;
  color: #1e293b;
  font-size: 18px;
}

.step p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

/* Add connecting lines between steps */
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 20px;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    max-width: 100%;
    width: 100%;
  }
  
  .step:not(:last-child)::after {
    content: '↓';
    right: 50%;
    top: 100%;
    left: auto;
    transform: translateX(50%);
  }
}
/* Practice Areas Section */
.services {
  padding: 80px 0;
  background: rgba(247, 249, 252, 0.6);
  position: relative;
  overflow: hidden;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 50px !important;
  position: relative;
  display: inline-block;
}

.services h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--accent);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  padding: 20px 0;
}
.card {
  background: var(--card);
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: left;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.card-content {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.card h3 {
  color: white;
  font-size: 1.5rem;
  margin: 0 0 10px;
}

.card p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
}

/* Card styles with background images */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}
/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: rgba(247, 249, 252, 0.6);
  position: relative;
  overflow: hidden;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 60px !important;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.testimonials h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--accent);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-card {
  background: var(--card);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border: 1px solid rgba(31, 111, 235, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 40px rgba(31, 111, 235, 0.2);
  background: linear-gradient(135deg, rgba(31, 111, 235, 0.9), rgba(124, 58, 237, 0.9));
  color: white !important;
  border-color: transparent;
}

.testimonial-card:hover blockquote,
.testimonial-card:hover .testimonial-info h4,
.testimonial-card:hover .testimonial-info p {
  color: white !important;
}

.testimonial-card:hover .testimonial-avatar {
  background: white !important;
  color: var(--accent) !important;
}

.testimonial-card:hover .testimonial-rating {
  color: #ffd700 !important;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(31, 111, 235, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
  transition: color 0.3s ease;
}

.testimonial-card:hover::before {
  color: rgba(255, 255, 255, 0.2) !important;
}

testimonials blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: none;
  font-style: italic;
  color: #4b5563;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.testimonial-info h4 {
  margin: 0 0 4px;
  color: #1e293b;
  font-size: 1.1rem;
}

.testimonial-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-rating {
  color: #f59e0b;
  margin-top: 5px;
  font-size: 0.9rem;
}

.testimonial-rating .star {
  margin-right: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonials-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .testimonial-card::before {
    font-size: 4rem;
    top: 15px;
    left: 15px;
  }
}
.contact form{display:grid; gap:10px; max-width:520px}
.contact input, .contact textarea{padding:10px; border-radius:8px; border:1px solid #e6eaf0}
.site-footer{background:#fff; border-top:1px solid #e6eaf0; padding:18px 0; margin-top:40px}
.small{color:var(--muted); font-size:13px}
@media (max-width: 800px) { 
  .hero-inner { flex-direction: column-reverse; } 
  .nav { display: none; } 
  .steps, .cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .step, .card {
    max-width: 100%;
  }
}

/* Current Lawsuits Section */
.lawsuits {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.lawsuits .container {
  max-width: 1200px;
  padding: 0 20px;
}

.lawsuits h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2d3748;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lawsuits h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 15px auto 30px;
}

.lawsuits p.subtitle {
  text-align: center;
  color: #718096;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

.lawsuit-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lawsuit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.lawsuit-image {
  height: 180px;
  overflow: hidden;
}

.lawsuit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 0.5s ease;
}

.lawsuit-image .focus-lower {
  object-position: center bottom;
}

.lawsuit-image .focus-top {
  object-position: center top;
}

.lawsuit-card:hover .lawsuit-image img {
  transform: scale(1.05);
}

.lawsuit-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lawsuit-content h3 {
  margin: 0 0 10px;
  color: #1e293b;
  font-size: 1.3rem;
}

.lawsuit-content p {
  color: #64748b;
  margin: 0 0 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.btn-small {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.btn-small:hover {
  background: #1a5fd0;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .lawsuits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .lawsuits {
    padding: 40px 0;
  }
  
  .lawsuits-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .lawsuit-card {
    max-width: 100%;
  }
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.about-hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.about-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-section h2 {
  color: #2d3748;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #4299e1;
  border-radius: 2px;
}

.about-grid {
  display: grid;
.about-card {
  background: white;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about-card:hover img {
  transform: scale(1.1);
  position: relative;
  z-index: 2;
}

.about-card h3 {
  color: #2d3748;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-card h3 i {
  color: #4299e1;
  font-size: 1.75rem;
}

.about-card p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 4px solid #4299e1;
}

.team-member h4 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem;
  color: #2d3748;
}

.team-member p {
  color: #718096;
  margin-bottom: 1.5rem;
}

.values-list {
  max-width: 800px;
  margin: 0 auto;
}

.value-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.value-icon {
  background: #ebf8ff;
  color: #3182ce;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-content h4 {
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.value-content p {
  color: #4a5568;
  line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  border-radius: 8px;
  margin: 5rem auto;
  max-width: 1200px;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-section p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cta-buttons .btn.primary {
  background: white;
  color: #3182ce;
  border: 2px solid white;
}

.cta-buttons .btn.primary:hover {
  background: transparent;
  color: white;
}

.cta-buttons .btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-buttons .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
  .about-hero h1 {
    font-size: 2.75rem;
  }
  
  .about-section h2, .cta-section h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 4rem 1.5rem;
  }
  
  .about-hero h1 {
    font-size: 2.25rem;
  }
  
  .about-section {
    padding: 4rem 1.5rem;
  }
  
  .about-section h2, .cta-section h2 {
    font-size: 2rem;
  }
  
  .about-grid, .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta-section {
    padding: 3rem 1.5rem;
    margin: 3rem 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .about-hero p, .cta-section p {
    font-size: 1.1rem;
  }
  
  .about-section h2, .cta-section h2 {
    font-size: 1.75rem;
  }
  
  .about-card {
    padding: 1.5rem;
  }
  
  .value-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
