.legal-documents-section {
    position: relative;
  }
  
  .legal-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .legal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
  }
  
  .legal-card:hover::before {
    opacity: 1;
  }
  
  .legal-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .legal-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
  }
  
  .legal-header h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
  }
  
  .legal-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .legal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
  }
  
  .legal-btn:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: white;
    text-decoration: none;
  }
  
  .legal-btn i {
    transition: transform 0.3s ease;
  }
  
  .legal-btn:hover i {
    transform: translateY(2px);
  }
  
  @media (max-width: 768px) {
    .legal-card {
      padding: 24px;
      margin-bottom: 20px;
    }
    
    .legal-icon {
      width: 48px;
      height: 48px;
      font-size: 1rem;
    }
    
    .legal-header h3 {
      font-size: 1.25rem;
    }
  }